From 444aa9feaa22a8adada165febd908479c1da95cd Mon Sep 17 00:00:00 2001 From: kernel-loophole Date: Sat, 10 Aug 2024 17:10:13 +0500 Subject: [PATCH] init commit --- BFS.py | 184 + LICENSE | 222 +- README.md | 31 +- VIS/dist/vis.css | 1294 + VIS/dist/vis.js | 43288 +++++++++++++++++++++++ VIS/dist/vis.map | 1 + VIS/dist/vis.min.css | 1 + VIS/dist/vis.min.js | 44 + __pycache__/BFS.cpython-310.pyc | Bin 0 -> 4882 bytes __pycache__/app.cpython-310.pyc | Bin 0 -> 862 bytes __pycache__/graph_show.cpython-310.pyc | Bin 0 -> 4904 bytes __pycache__/graph_show.cpython-312.pyc | Bin 0 -> 6391 bytes __pycache__/json_form.cpython-310.pyc | Bin 0 -> 722 bytes __pycache__/json_form.cpython-312.pyc | Bin 0 -> 1146 bytes __pycache__/news_graph.cpython-310.pyc | Bin 0 -> 9263 bytes __pycache__/news_graph.cpython-312.pyc | Bin 0 -> 15356 bytes __pycache__/textrank.cpython-310.pyc | Bin 0 -> 4059 bytes __pycache__/textrank.cpython-312.pyc | Bin 0 -> 7458 bytes app.py | 31 + app/__pycache__/app.cpython-310.pyc | Bin 0 -> 943 bytes config_app.yaml | 73 + data.pkl | Bin 0 -> 4676 bytes data.txt | 95 + diff.json | 3242 ++ difference.py | 46 + docker-compose.debug.yml | 14 + docker-compose.yml | 10 + draw.py | 77 + events.json | 1 + events.txt | 0 final.json | 52 + find_ner.py | 23 + flow.png | Bin 0 -> 60158 bytes grap.png | Bin 0 -> 51367 bytes grap02.png | Bin 0 -> 325384 bytes graph.html | 57 + graph_color_put.html | 61 + graph_coloring.json | 282 + graph_data.json | 35890 +++++++++++++++++++ graph_data_from_kg.json | 39114 ++++++++++++++++++++ graph_show.html | 88 + graph_show.py | 200 + graph_visualization.html | 14 + image_03.jpg | Bin 0 -> 95558 bytes image_05.jpg | Bin 0 -> 125081 bytes json_form.py | 24 + main.py | 86 + main_kg.py | 172 + matlab.py | 23 + merge_json.py | 21 + ner_plot.py | 108 + news_graph.py | 395 + news_list.pkl | Bin 0 -> 3818782 bytes open_pickle.py | 12 + plot_mat.py | 72 + query_data.json | 521 + query_graph.json | 41453 ++++++++++++++++++++++ result_dic.json | 1 + test.html | 42 + test_draw.py | 106 + test_json.json | 1 + test_two.html | 53 + textrank.py | 159 + updated_file_two.json | 106 + updated_file_two_final.json | 3349 ++ weight.py | 21 + 66 files changed, 170958 insertions(+), 202 deletions(-) create mode 100644 BFS.py create mode 100644 VIS/dist/vis.css create mode 100644 VIS/dist/vis.js create mode 100644 VIS/dist/vis.map create mode 100644 VIS/dist/vis.min.css create mode 100644 VIS/dist/vis.min.js create mode 100644 __pycache__/BFS.cpython-310.pyc create mode 100644 __pycache__/app.cpython-310.pyc create mode 100644 __pycache__/graph_show.cpython-310.pyc create mode 100644 __pycache__/graph_show.cpython-312.pyc create mode 100644 __pycache__/json_form.cpython-310.pyc create mode 100644 __pycache__/json_form.cpython-312.pyc create mode 100644 __pycache__/news_graph.cpython-310.pyc create mode 100644 __pycache__/news_graph.cpython-312.pyc create mode 100644 __pycache__/textrank.cpython-310.pyc create mode 100644 __pycache__/textrank.cpython-312.pyc create mode 100644 app.py create mode 100644 app/__pycache__/app.cpython-310.pyc create mode 100644 config_app.yaml create mode 100644 data.pkl create mode 100644 data.txt create mode 100644 diff.json create mode 100644 difference.py create mode 100644 docker-compose.debug.yml create mode 100644 docker-compose.yml create mode 100644 draw.py create mode 100644 events.json create mode 100644 events.txt create mode 100644 final.json create mode 100644 find_ner.py create mode 100644 flow.png create mode 100644 grap.png create mode 100644 grap02.png create mode 100644 graph.html create mode 100644 graph_color_put.html create mode 100644 graph_coloring.json create mode 100644 graph_data.json create mode 100644 graph_data_from_kg.json create mode 100644 graph_show.html create mode 100644 graph_show.py create mode 100644 graph_visualization.html create mode 100644 image_03.jpg create mode 100644 image_05.jpg create mode 100644 json_form.py create mode 100644 main.py create mode 100644 main_kg.py create mode 100644 matlab.py create mode 100644 merge_json.py create mode 100644 ner_plot.py create mode 100644 news_graph.py create mode 100644 news_list.pkl create mode 100644 open_pickle.py create mode 100644 plot_mat.py create mode 100644 query_data.json create mode 100644 query_graph.json create mode 100644 result_dic.json create mode 100644 test.html create mode 100644 test_draw.py create mode 100644 test_json.json create mode 100644 test_two.html create mode 100644 textrank.py create mode 100644 updated_file_two.json create mode 100644 updated_file_two_final.json create mode 100644 weight.py diff --git a/BFS.py b/BFS.py new file mode 100644 index 0000000..e99d1dd --- /dev/null +++ b/BFS.py @@ -0,0 +1,184 @@ +import json +from queue import Queue +import threading +from graph_show import GraphShow +from news_graph import NewsMining + +class GraphProcessor: + def __init__(self, json_file): + self.graph = self.build_graph_from_json(json_file) + + def build_graph_from_json(self, json_file): + with open(json_file, 'r') as file: + data = json.load(file) + graph = {} + for node in data['edges']: + node_id = node.get('id') + graph[node_id] = [] + for edge in data['nodes']: + from_node = edge.get('from') + to_node = edge.get('to') + if from_node is not None and to_node is not None: + if from_node not in graph: + graph[from_node] = [] + graph[from_node].append(to_node) + return graph + + def bfs_related_nodes(self, keyword): + visited = set() + result = [] + re = read_json_file("query_graph.json") + + for start_node in self.graph: + if str(keyword) in str(start_node) and start_node not in visited: + queue = Queue() + queue.put((start_node, 0)) # Tuple (node, distance) + visited.add(start_node) + re = read_json_file("query_graph.json") + + while not queue.empty(): + current_node, distance = queue.get() + result.append(current_node) + + for edge in re['edges']: + if current_node == edge['id']: + edge['distance'] = distance + + for neighbor in self.graph.get(current_node, []): + if neighbor not in visited: + queue.put((neighbor, distance + 1)) + visited.add(neighbor) + + for edge in re['edges']: + if edge['id'] == neighbor: + edge['distance'] = distance + 1 + + with open('query_graph.json', 'w') as json_file: + json.dump(re, json_file, indent=2) + result_one = {} + re = read_json_file("query_graph.json") + + for edge in re['edges']: + if edge['distance'] > 0: + result_one[edge['label']] = edge['distance'] + + if len(result_one) < 1: + return None + final_distance = dict(sorted(result_one.items(), key=lambda item: item[1])) + + return final_distance + + def get_labels_by_ids(self, node_ids): + labels = [] + for node_id in node_ids: + for edge in self.graph: + if 'id' in edge and edge['id'] == node_id: + labels.append(edge['label']) + break + return labels + +def read_json_file(file_path): + try: + with open(file_path, 'r') as file: + json_data = json.load(file) + return json_data + except FileNotFoundError: + return f"File not found: {file_path}" + except json.JSONDecodeError: + return f"Invalid JSON format in file: {file_path}" + +def find_matching_id(json_data, keyw): + nodes_id = json_data['edges'] + for i in nodes_id: + if i['label'] == keyw: + return i['id'] + +def process_data(search_keyword): + processor = GraphProcessor('graph_data.json') + re = read_json_file("graph_data.json") + search_key = search_keyword + ids = processor.bfs_related_nodes(find_matching_id(re, search_key)) + test_json = read_json_file('graph_data.json') + nodes_data = test_json['edges'] + egdes_dat = test_json['nodes'] + test_nodes_data = [] + + for i in nodes_data: + try: + if i['label'] in ids: + print("found") + print(i['label']) + test_nodes_data.append(i) + except: + pass + data = {'nodes': egdes_dat, "edges": test_nodes_data} + with open("test_json.json", 'w') as file: + json.dump(data, file) + + # format_json_file('test_json.json') + with open('events.json', 'r') as file: + events = json.load(file) + with open('result_dic.json', 'r') as file: + result_dic = json.load(file) + with open('test_json.json', 'r') as file: + data = json.load(file) + labels = [] + tmp_event = [] + Ner_data = {"Person": 0, "Location": 0, "Organization": 0} + labels.append(search_key) + test_data = [] + + for i in data['edges']: + labels.append(i['label']) + + # for k, i in enumerate(events): + # if i[0] in labels: + # if i[1] == "Organization": + # Ner_data['Organization'] += 1 + # if i[1] == "Location": + # Ner_data['Location'] += 1 + # if i[1] == "Person": + # Ner_data['Person'] += 1 + # else: + # pass + + org_count = 0 + for k, i in enumerate(events): + if i[0] in labels: + if i[1] not in Ner_data.keys(): + continue + labels.remove(i[0]) + tmp_event.append(i) + tmp_dir_ner = [] + + if org_count < 3: + if i[1] == "Organization": + tmp_dir_ner.append(i[0]) + tmp_dir_ner.append('Person') + tmp_event.append(tmp_dir_ner) + org_count += 1 + if i[1] == "Location": + tmp_dir_ner.append(i[0]) + tmp_dir_ner.append('Person') + tmp_event.append(tmp_dir_ner) + org_count += 1 + if i[1] == "Person": + tmp_dir_ner.append(i[0]) + tmp_dir_ner.append('Location') + tmp_event.append(tmp_dir_ner) + org_count += 1 + + test_grp = GraphShow() + print(tmp_event) + tmp_dir = {} + test_grp.create_page(tmp_event, result_dic) + nodes, edge = test_grp.return_edge(tmp_event, result_dic) + return tmp_event, result_dic + +def main(search_keyword): + ev = NewsMining() + t1 = threading.Thread(target=process_data, args=(search_keyword,)) + t1.start() + +if __name__ == "__main__": + main("ECP") diff --git a/LICENSE b/LICENSE index 261eeb9..97b4f19 100644 --- a/LICENSE +++ b/LICENSE @@ -1,201 +1,21 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +MIT License + +Copyright (c) 2020 BrambleXu + +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. diff --git a/README.md b/README.md index 88a47a2..abdd5e1 100644 --- a/README.md +++ b/README.md @@ -1 +1,30 @@ -# Knowledge-graph \ No newline at end of file +# News Graph + +Key information extration from text and graph visilization. Inspired by [TextGrapher](https://github.com/liuhuanyong/TextGrapher). + +# Project Introduction + +How to represent a text in a simple way is a chanllenge topic. This peoject try to extraction key information from the text by NLP methods, which contain NER extraction, relation detection, keywords extraction, frequencies words extraction. And finally show the key information in a graph way. + + +1) ![flow](flow.png) + +# Example Demo + +1) ![image1](image_03.jpg) + +1) ![image1](image_05.jpg) + +2) +![image02](grap02.png) +# Node coloring +- Red:Location
+- Blue:Person
+- Green:organization
+- Grey:other +# usage +1. **Run `main.py`**: This script will generate the `graph_data.json` file. +2. **Run `main_kg.py`**: This script will generate the `graph_data_kg.json` file. +3. **Run `difference.py`**: This script will compute the difference between the generated files. +4. **Run `find_ner.py`**: This script will filter the data based on Named Entity Recognition (NER). +5. **Run `ner_plot.py`**: This script will generate the HTML file for graph visualization . \ No newline at end of file diff --git a/VIS/dist/vis.css b/VIS/dist/vis.css new file mode 100644 index 0000000..90511f7 --- /dev/null +++ b/VIS/dist/vis.css @@ -0,0 +1,1294 @@ +.vis .overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + + /* Must be displayed above for example selected Timeline items */ + z-index: 10; +} + +.vis-active { + box-shadow: 0 0 10px #86d5f8; +} + +/* override some bootstrap styles screwing up the timelines css */ + +.vis [class*="span"] { + min-height: 0; + width: auto; +} + +div.vis-configuration { + position:relative; + display:block; + float:left; + font-size:12px; +} + +div.vis-configuration-wrapper { + display:block; + width:700px; +} + + +div.vis-configuration.vis-config-option-container{ + display:block; + width:495px; + background-color: #ffffff; + border:2px solid #f7f8fa; + border-radius:4px; + margin-top:20px; + left:10px; + padding-left:5px; +} + +div.vis-configuration.vis-config-button{ + display:block; + width:495px; + height:25px; + vertical-align: middle; + line-height:25px; + background-color: #f7f8fa; + border:2px solid #ceced0; + border-radius:4px; + margin-top:20px; + left:10px; + padding-left:5px; + cursor: pointer; + margin-bottom:30px; +} + +div.vis-configuration.vis-config-button.hover{ + background-color: #4588e6; + border:2px solid #214373; + color:#ffffff; +} + +div.vis-configuration.vis-config-item{ + display:block; + float:left; + width:495px; + height:25px; + vertical-align: middle; + line-height:25px; +} + + +div.vis-configuration.vis-config-item.vis-config-s2{ + left:10px; + background-color: #f7f8fa; + padding-left:5px; + border-radius:3px; +} +div.vis-configuration.vis-config-item.vis-config-s3{ + left:20px; + background-color: #e4e9f0; + padding-left:5px; + border-radius:3px; +} +div.vis-configuration.vis-config-item.vis-config-s4{ + left:30px; + background-color: #cfd8e6; + padding-left:5px; + border-radius:3px; +} + +div.vis-configuration.vis-config-header{ + font-size:18px; + font-weight: bold; +} + +div.vis-configuration.vis-config-label{ + width:120px; + height:25px; + line-height: 25px; +} + +div.vis-configuration.vis-config-label.vis-config-s3{ + width:110px; +} +div.vis-configuration.vis-config-label.vis-config-s4{ + width:100px; +} + +div.vis-configuration.vis-config-colorBlock{ + top:1px; + width:30px; + height:19px; + border:1px solid #444444; + border-radius:2px; + padding:0px; + margin:0px; + cursor:pointer; +} + +input.vis-configuration.vis-config-checkbox { + left:-5px; +} + + +input.vis-configuration.vis-config-rangeinput{ + position:relative; + top:-5px; + width:60px; + height:13px; + padding:1px; + margin:0; + pointer-events:none; +} + +input.vis-configuration.vis-config-range{ + /*removes default webkit styles*/ + -webkit-appearance: none; + + /*fix for FF unable to apply focus style bug */ + border: 0px solid white; + background-color:rgba(0,0,0,0); + + /*required for proper track sizing in FF*/ + width: 300px; + height:20px; +} +input.vis-configuration.vis-config-range::-webkit-slider-runnable-track { + width: 300px; + height: 5px; + background: #dedede; /* Old browsers */ + background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */ + background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ + + border: 1px solid #999999; + box-shadow: #aaaaaa 0px 0px 3px 0px; + border-radius: 3px; +} +input.vis-configuration.vis-config-range::-webkit-slider-thumb { + -webkit-appearance: none; + border: 1px solid #14334b; + height: 17px; + width: 17px; + border-radius: 50%; + background: #3876c2; /* Old browsers */ + background: -moz-linear-gradient(top, #3876c2 0%, #385380 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3876c2), color-stop(100%,#385380)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #3876c2 0%,#385380 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #3876c2 0%,#385380 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #3876c2 0%,#385380 100%); /* IE10+ */ + background: linear-gradient(to bottom, #3876c2 0%,#385380 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380',GradientType=0 ); /* IE6-9 */ + box-shadow: #111927 0px 0px 1px 0px; + margin-top: -7px; +} +input.vis-configuration.vis-config-range:focus { + outline: none; +} +input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track { + background: #9d9d9d; /* Old browsers */ + background: -moz-linear-gradient(top, #9d9d9d 0%, #c8c8c8 99%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* IE10+ */ + background: linear-gradient(to bottom, #9d9d9d 0%,#c8c8c8 99%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ +} + +input.vis-configuration.vis-config-range::-moz-range-track { + width: 300px; + height: 10px; + background: #dedede; /* Old browsers */ + background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */ + background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ + + border: 1px solid #999999; + box-shadow: #aaaaaa 0px 0px 3px 0px; + border-radius: 3px; +} +input.vis-configuration.vis-config-range::-moz-range-thumb { + border: none; + height: 16px; + width: 16px; + + border-radius: 50%; + background: #385380; +} + +/*hide the outline behind the border*/ +input.vis-configuration.vis-config-range:-moz-focusring{ + outline: 1px solid white; + outline-offset: -1px; +} + +input.vis-configuration.vis-config-range::-ms-track { + width: 300px; + height: 5px; + + /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */ + background: transparent; + + /*leave room for the larger thumb to overflow with a transparent border */ + border-color: transparent; + border-width: 6px 0; + + /*remove default tick marks*/ + color: transparent; +} +input.vis-configuration.vis-config-range::-ms-fill-lower { + background: #777; + border-radius: 10px; +} +input.vis-configuration.vis-config-range::-ms-fill-upper { + background: #ddd; + border-radius: 10px; +} +input.vis-configuration.vis-config-range::-ms-thumb { + border: none; + height: 16px; + width: 16px; + border-radius: 50%; + background: #385380; +} +input.vis-configuration.vis-config-range:focus::-ms-fill-lower { + background: #888; +} +input.vis-configuration.vis-config-range:focus::-ms-fill-upper { + background: #ccc; +} + +.vis-configuration-popup { + position: absolute; + background: rgba(57, 76, 89, 0.85); + border: 2px solid #f2faff; + line-height:30px; + height:30px; + width:150px; + text-align:center; + color: #ffffff; + font-size:14px; + border-radius:4px; + -webkit-transition: opacity 0.3s ease-in-out; + -moz-transition: opacity 0.3s ease-in-out; + transition: opacity 0.3s ease-in-out; +} +.vis-configuration-popup:after, .vis-configuration-popup:before { + left: 100%; + top: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} + +.vis-configuration-popup:after { + border-color: rgba(136, 183, 213, 0); + border-left-color: rgba(57, 76, 89, 0.85); + border-width: 8px; + margin-top: -8px; +} +.vis-configuration-popup:before { + border-color: rgba(194, 225, 245, 0); + border-left-color: #f2faff; + border-width: 12px; + margin-top: -12px; +} + +.vis-timeline { + position: relative; + border: 1px solid #bfbfbf; + + overflow: hidden; + padding: 0; + margin: 0; + + box-sizing: border-box; +} + + +.vis-panel { + position: absolute; + + padding: 0; + margin: 0; + + box-sizing: border-box; +} + +.vis-panel.vis-center, +.vis-panel.vis-left, +.vis-panel.vis-right, +.vis-panel.vis-top, +.vis-panel.vis-bottom { + border: 1px #bfbfbf; +} + +.vis-panel.vis-center, +.vis-panel.vis-left, +.vis-panel.vis-right { + border-top-style: solid; + border-bottom-style: solid; + overflow: hidden; +} + +.vis-panel.vis-center, +.vis-panel.vis-top, +.vis-panel.vis-bottom { + border-left-style: solid; + border-right-style: solid; +} + +.vis-background { + overflow: hidden; +} + +.vis-panel > .vis-content { + position: relative; +} + +.vis-panel .vis-shadow { + position: absolute; + width: 100%; + height: 1px; + box-shadow: 0 0 10px rgba(0,0,0,0.8); + /* TODO: find a nice way to ensure vis-shadows are drawn on top of items + z-index: 1; + */ +} + +.vis-panel .vis-shadow.vis-top { + top: -1px; + left: 0; +} + +.vis-panel .vis-shadow.vis-bottom { + bottom: -1px; + left: 0; +} + +.vis-labelset { + position: relative; + + overflow: hidden; + + box-sizing: border-box; +} + +.vis-labelset .vis-label { + position: relative; + left: 0; + top: 0; + width: 100%; + color: #4d4d4d; + + box-sizing: border-box; +} + +.vis-labelset .vis-label { + border-bottom: 1px solid #bfbfbf; +} + +.vis-labelset .vis-label.draggable { + cursor: pointer; +} + +.vis-labelset .vis-label:last-child { + border-bottom: none; +} + +.vis-labelset .vis-label .vis-inner { + display: inline-block; + padding: 5px; +} + +.vis-labelset .vis-label .vis-inner.vis-hidden { + padding: 0; +} + + +.vis-itemset { + position: relative; + padding: 0; + margin: 0; + + box-sizing: border-box; +} + +.vis-itemset .vis-background, +.vis-itemset .vis-foreground { + position: absolute; + width: 100%; + height: 100%; + overflow: visible; +} + +.vis-axis { + position: absolute; + width: 100%; + height: 0; + left: 0; + z-index: 1; +} + +.vis-foreground .vis-group { + position: relative; + box-sizing: border-box; + border-bottom: 1px solid #bfbfbf; +} + +.vis-foreground .vis-group:last-child { + border-bottom: none; +} + +.vis-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 10; +} + +.vis-item { + position: absolute; + color: #1A1A1A; + border-color: #97B0F8; + border-width: 1px; + background-color: #D5DDF6; + display: inline-block; + /*overflow: hidden;*/ +} + +.vis-item.vis-selected { + border-color: #FFC200; + background-color: #FFF785; + + /* z-index must be higher than the z-index of custom time bar and current time bar */ + z-index: 2; +} + +.vis-editable.vis-selected { + cursor: move; +} + +.vis-item.vis-point.vis-selected { + background-color: #FFF785; +} + +.vis-item.vis-box { + text-align: center; + border-style: solid; + border-radius: 2px; +} + +.vis-item.vis-point { + background: none; +} + +.vis-item.vis-dot { + position: absolute; + padding: 0; + border-width: 4px; + border-style: solid; + border-radius: 4px; +} + +.vis-item.vis-range { + border-style: solid; + border-radius: 2px; + box-sizing: border-box; +} + +.vis-item.vis-background { + border: none; + background-color: rgba(213, 221, 246, 0.4); + box-sizing: border-box; + padding: 0; + margin: 0; +} + +.vis-item .vis-item-overflow { + position: relative; + width: 100%; + height: 100%; + padding: 0; + margin: 0; + overflow: hidden; +} + +.vis-item.vis-range .vis-item-content { + position: relative; + display: inline-block; +} + +.vis-item.vis-background .vis-item-content { + position: absolute; + display: inline-block; +} + +.vis-item.vis-line { + padding: 0; + position: absolute; + width: 0; + border-left-width: 1px; + border-left-style: solid; +} + +.vis-item .vis-item-content { + white-space: nowrap; + box-sizing: border-box; + padding: 5px; +} + +.vis-item .vis-delete { + background: url('img/timeline/delete.png') no-repeat center; + position: absolute; + width: 24px; + height: 24px; + top: -4px; + right: -24px; + cursor: pointer; +} + +.vis-item.vis-range .vis-drag-left { + position: absolute; + width: 24px; + max-width: 20%; + min-width: 2px; + height: 100%; + top: 0; + left: -4px; + + cursor: w-resize; +} + +.vis-item.vis-range .vis-drag-right { + position: absolute; + width: 24px; + max-width: 20%; + min-width: 2px; + height: 100%; + top: 0; + right: -4px; + + cursor: e-resize; +} + +.vis-time-axis { + position: relative; + overflow: hidden; +} + +.vis-time-axis.vis-foreground { + top: 0; + left: 0; + width: 100%; +} + +.vis-time-axis.vis-background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.vis-time-axis .vis-text { + position: absolute; + color: #4d4d4d; + padding: 3px; + overflow: hidden; + box-sizing: border-box; + + white-space: nowrap; +} + +.vis-time-axis .vis-text.vis-measure { + position: absolute; + padding-left: 0; + padding-right: 0; + margin-left: 0; + margin-right: 0; + visibility: hidden; +} + +.vis-time-axis .vis-grid.vis-vertical { + position: absolute; + border-left: 1px solid; +} + +.vis-time-axis .vis-grid.vis-minor { + border-color: #e5e5e5; +} + +.vis-time-axis .vis-grid.vis-major { + border-color: #bfbfbf; +} + +.vis-current-time { + background-color: #FF7F6E; + width: 2px; + z-index: 1; +} +.vis-custom-time { + background-color: #6E94FF; + width: 2px; + cursor: move; + z-index: 1; +} +.vis-timeline { + /* + -webkit-transition: height .4s ease-in-out; + transition: height .4s ease-in-out; + */ +} + +.vis-panel { + /* + -webkit-transition: height .4s ease-in-out, top .4s ease-in-out; + transition: height .4s ease-in-out, top .4s ease-in-out; + */ +} + +.vis-axis { + /* + -webkit-transition: top .4s ease-in-out; + transition: top .4s ease-in-out; + */ +} + +/* TODO: get animation working nicely + +.vis-item { + -webkit-transition: top .4s ease-in-out; + transition: top .4s ease-in-out; +} + +.vis-item.line { + -webkit-transition: height .4s ease-in-out, top .4s ease-in-out; + transition: height .4s ease-in-out, top .4s ease-in-out; +} +/**/ + +.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal { + position: absolute; + width: 100%; + height: 0; + border-bottom: 1px solid; +} + +.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor { + border-color: #e5e5e5; +} + +.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major { + border-color: #bfbfbf; +} + + +.vis-data-axis .vis-y-axis.vis-major { + width: 100%; + position: absolute; + color: #4d4d4d; + white-space: nowrap; +} + +.vis-data-axis .vis-y-axis.vis-major.vis-measure { + padding: 0; + margin: 0; + border: 0; + visibility: hidden; + width: auto; +} + + +.vis-data-axis .vis-y-axis.vis-minor { + position: absolute; + width: 100%; + color: #bebebe; + white-space: nowrap; +} + +.vis-data-axis .vis-y-axis.vis-minor.vis-measure { + padding: 0; + margin: 0; + border: 0; + visibility: hidden; + width: auto; +} + +.vis-data-axis .vis-y-axis.vis-title { + position: absolute; + color: #4d4d4d; + white-space: nowrap; + bottom: 20px; + text-align: center; +} + +.vis-data-axis .vis-y-axis.vis-title.vis-measure { + padding: 0; + margin: 0; + visibility: hidden; + width: auto; +} + +.vis-data-axis .vis-y-axis.vis-title.vis-left { + bottom: 0; + -webkit-transform-origin: left top; + -moz-transform-origin: left top; + -ms-transform-origin: left top; + -o-transform-origin: left top; + transform-origin: left bottom; + -webkit-transform: rotate(-90deg); + -moz-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + -o-transform: rotate(-90deg); + transform: rotate(-90deg); +} + +.vis-data-axis .vis-y-axis.vis-title.vis-right { + bottom: 0; + -webkit-transform-origin: right bottom; + -moz-transform-origin: right bottom; + -ms-transform-origin: right bottom; + -o-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); +} + +.vis-legend { + background-color: rgba(247, 252, 255, 0.65); + padding: 5px; + border: 1px solid #b3b3b3; + box-shadow: 2px 2px 10px rgba(154, 154, 154, 0.55); +} + +.vis-legend-text { + /*font-size: 10px;*/ + white-space: nowrap; + display: inline-block +} +.vis-graph-group0 { + fill:#4f81bd; + fill-opacity:0; + stroke-width:2px; + stroke: #4f81bd; +} + +.vis-graph-group1 { + fill:#f79646; + fill-opacity:0; + stroke-width:2px; + stroke: #f79646; +} + +.vis-graph-group2 { + fill: #8c51cf; + fill-opacity:0; + stroke-width:2px; + stroke: #8c51cf; +} + +.vis-graph-group3 { + fill: #75c841; + fill-opacity:0; + stroke-width:2px; + stroke: #75c841; +} + +.vis-graph-group4 { + fill: #ff0100; + fill-opacity:0; + stroke-width:2px; + stroke: #ff0100; +} + +.vis-graph-group5 { + fill: #37d8e6; + fill-opacity:0; + stroke-width:2px; + stroke: #37d8e6; +} + +.vis-graph-group6 { + fill: #042662; + fill-opacity:0; + stroke-width:2px; + stroke: #042662; +} + +.vis-graph-group7 { + fill:#00ff26; + fill-opacity:0; + stroke-width:2px; + stroke: #00ff26; +} + +.vis-graph-group8 { + fill:#ff00ff; + fill-opacity:0; + stroke-width:2px; + stroke: #ff00ff; +} + +.vis-graph-group9 { + fill: #8f3938; + fill-opacity:0; + stroke-width:2px; + stroke: #8f3938; +} + +.vis-timeline .vis-fill { + fill-opacity:0.1; + stroke: none; +} + + +.vis-timeline .vis-bar { + fill-opacity:0.5; + stroke-width:1px; +} + +.vis-timeline .vis-point { + stroke-width:2px; + fill-opacity:1.0; +} + + +.vis-timeline .vis-legend-background { + stroke-width:1px; + fill-opacity:0.9; + fill: #ffffff; + stroke: #c2c2c2; +} + + +.vis-timeline .vis-outline { + stroke-width:1px; + fill-opacity:1; + fill: #ffffff; + stroke: #e5e5e5; +} + +.vis-timeline .vis-icon-fill { + fill-opacity:0.3; + stroke: none; +} + +div.vis-network div.vis-manipulation { + border-width: 0; + border-bottom: 1px; + border-style:solid; + border-color: #d6d9d8; + background: #ffffff; /* Old browsers */ + background: -moz-linear-gradient(top, #ffffff 0%, #fcfcfc 48%, #fafafa 50%, #fcfcfc 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(48%,#fcfcfc), color-stop(50%,#fafafa), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* IE10+ */ + background: linear-gradient(to bottom, #ffffff 0%,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */ + + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 30px; +} + +div.vis-network div.vis-edit-mode { + position:absolute; + left: 0; + top: 15px; + height: 30px; +} + +/* FIXME: shouldn't the vis-close button be a child of the vis-manipulation div? */ + +div.vis-network div.vis-close { + position:absolute; + right: 0; + top: 0; + width: 30px; + height: 30px; + + background-position: 20px 3px; + background-repeat: no-repeat; + background-image: url("img/network/cross.png"); + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.vis-network div.vis-close:hover { + opacity: 0.6; +} + +div.vis-network div.vis-manipulation div.vis-button, +div.vis-network div.vis-edit-mode div.vis-button { + position:relative; + top:-7px; + font-family: verdana; + font-size: 12px; + -moz-border-radius: 15px; + border-radius: 15px; + display:inline-block; + background-position: 0px 0px; + background-repeat:no-repeat; + height:24px; + margin: 0px 0px 0px 10px; + vertical-align:middle; + cursor: pointer; + padding: 0px 8px 0px 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.vis-network div.vis-manipulation div.vis-button:hover { + box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.20); +} + +div.vis-network div.vis-manipulation div.vis-button:active { + box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.50); +} + +div.vis-network div.vis-manipulation div.vis-button.vis-back { + background-image: url("img/network/backIcon.png"); +} + +div.vis-network div.vis-manipulation div.vis-button.vis-none:hover { + box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0); + cursor: default; +} +div.vis-network div.vis-manipulation div.vis-button.vis-none:active { + box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.0); +} +div.vis-network div.vis-manipulation div.vis-button.vis-none { + padding: 0; +} +div.vis-network div.vis-manipulation div.notification { + margin: 2px; + font-weight: bold; +} + +div.vis-network div.vis-manipulation div.vis-button.vis-add { + background-image: url("img/network/addNodeIcon.png"); +} + +div.vis-network div.vis-manipulation div.vis-button.vis-edit, +div.vis-network div.vis-edit-mode div.vis-button.vis-edit { + background-image: url("img/network/editIcon.png"); +} + +div.vis-network div.vis-edit-mode div.vis-button.vis-edit.vis-edit-mode { + background-color: #fcfcfc; + border: 1px solid #cccccc; +} + +div.vis-network div.vis-manipulation div.vis-button.vis-connect { + background-image: url("img/network/connectIcon.png"); +} + +div.vis-network div.vis-manipulation div.vis-button.vis-delete { + background-image: url("img/network/deleteIcon.png"); +} +/* top right bottom left */ +div.vis-network div.vis-manipulation div.vis-label, +div.vis-network div.vis-edit-mode div.vis-label { + margin: 0 0 0 23px; + line-height: 25px; +} +div.vis-network div.vis-manipulation div.vis-separator-line { + display:inline-block; + width:1px; + height:20px; + background-color: #bdbdbd; + margin: 5px 7px 0 15px; +} + +/* TODO: is this redundant? +div.network-navigation_wrapper { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; +} +*/ +div.vis-network-tooltip { + position: absolute; + visibility: hidden; + padding: 5px; + white-space: nowrap; + + font-family: verdana; + font-size:14px; + font-color:#000000; + background-color: #f5f4ed; + + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + border: 1px solid #808074; + + box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); + pointer-events: none; +} +div.vis-network div.vis-navigation div.vis-button { + width:34px; + height:34px; + -moz-border-radius: 17px; + border-radius: 17px; + position:absolute; + display:inline-block; + background-position: 2px 2px; + background-repeat:no-repeat; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.vis-network div.vis-navigation div.vis-button:hover { + box-shadow: 0 0 3px 3px rgba(56, 207, 21, 0.30); +} + +div.vis-network div.vis-navigation div.vis-button:active { + box-shadow: 0 0 1px 3px rgba(56, 207, 21, 0.95); +} + +div.vis-network div.vis-navigation div.vis-button.vis-up { + background-image: url("img/network/upArrow.png"); + bottom:50px; + left:55px; +} +div.vis-network div.vis-navigation div.vis-button.vis-down { + background-image: url("img/network/downArrow.png"); + bottom:10px; + left:55px; +} +div.vis-network div.vis-navigation div.vis-button.vis-left { + background-image: url("img/network/leftArrow.png"); + bottom:10px; + left:15px; +} +div.vis-network div.vis-navigation div.vis-button.vis-right { + background-image: url("img/network/rightArrow.png"); + bottom:10px; + left:95px; +} +div.vis-network div.vis-navigation div.vis-button.vis-zoomIn { + background-image: url("img/network/plus.png"); + bottom:10px; + right:15px; +} +div.vis-network div.vis-navigation div.vis-button.vis-zoomOut { + background-image: url("img/network/minus.png"); + bottom:10px; + right:55px; +} +div.vis-network div.vis-navigation div.vis-button.vis-zoomExtends { + background-image: url("img/network/zoomExtends.png"); + bottom:50px; + right:15px; +} + +div.vis-color-picker { + position:absolute; + margin-top:-140px; + margin-left:30px; + width:293px; + height:425px; + padding: 10px; + border-radius:15px; + background-color:#ffffff; + display:none; + box-shadow: rgba(0,0,0,0.5) 0px 0px 10px 0px; +} + +div.vis-color-picker div.vis-arrow { + position: absolute; + top:147px; + left:5px; +} + +div.vis-color-picker div.vis-arrow:after, +div.vis-color-picker div.vis-arrow:before { + right: 100%; + top: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} + +div.vis-color-picker div.vis-arrow:after { + border-color: rgba(255, 255, 255, 0); + border-right-color: #ffffff; + border-width: 30px; + margin-top: -30px; +} + +div.vis-color-picker div.vis-color { + position:absolute; + width: 289px; + height: 289px; + cursor: pointer; +} + + + +div.vis-color-picker div.vis-brightness { + position: absolute; + top:313px; +} + +div.vis-color-picker div.vis-opacity { + position:absolute; + top:350px; +} + +div.vis-color-picker div.vis-selector { + position:absolute; + top:137px; + left:137px; + width:15px; + height:15px; + border-radius:15px; + border:1px solid #ffffff; + background: #4c4c4c; /* Old browsers */ + background: -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(12%,#595959), color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#131313)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* IE10+ */ + background: linear-gradient(to bottom, #4c4c4c 0%,#595959 12%,#666666 25%,#474747 39%,#2c2c2c 50%,#000000 51%,#111111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6-9 */ +} + + + +div.vis-color-picker div.vis-new-color { + position:absolute; + width:140px; + height:20px; + border:1px solid rgba(0,0,0,0.1); + border-radius:5px; + top:380px; + left:159px; + text-align:right; + padding-right:2px; + font-size:10px; + color:rgba(0,0,0,0.4); + vertical-align:middle; + line-height:20px; + +} + +div.vis-color-picker div.vis-initial-color { + position:absolute; + width:140px; + height:20px; + border:1px solid rgba(0,0,0,0.1); + border-radius:5px; + top:380px; + left:10px; + text-align:left; + padding-left:2px; + font-size:10px; + color:rgba(0,0,0,0.4); + vertical-align:middle; + line-height:20px; +} + +div.vis-color-picker div.vis-label { + position:absolute; + width:300px; + left:10px; +} + +div.vis-color-picker div.vis-label.vis-brightness { + top:300px; +} + +div.vis-color-picker div.vis-label.vis-opacity { + top:338px; +} + +div.vis-color-picker div.vis-button { + position:absolute; + width:68px; + height:25px; + border-radius:10px; + vertical-align: middle; + text-align:center; + line-height: 25px; + top:410px; + border:2px solid #d9d9d9; + background-color: #f7f7f7; + cursor:pointer; +} + +div.vis-color-picker div.vis-button.vis-cancel { + /*border:2px solid #ff4e33;*/ + /*background-color: #ff7761;*/ + left:5px; +} +div.vis-color-picker div.vis-button.vis-load { + /*border:2px solid #a153e6;*/ + /*background-color: #cb8dff;*/ + left:82px; +} +div.vis-color-picker div.vis-button.vis-apply { + /*border:2px solid #4588e6;*/ + /*background-color: #82b6ff;*/ + left:159px; +} +div.vis-color-picker div.vis-button.vis-save { + /*border:2px solid #45e655;*/ + /*background-color: #6dff7c;*/ + left:236px; +} + + +div.vis-color-picker input.vis-range { + width: 290px; + height:20px; +} + +/* TODO: is this redundant? +div.vis-color-picker input.vis-range-brightness { + width: 289px !important; +} + + +div.vis-color-picker input.vis-saturation-range { + width: 289px !important; +}*/ \ No newline at end of file diff --git a/VIS/dist/vis.js b/VIS/dist/vis.js new file mode 100644 index 0000000..2326757 --- /dev/null +++ b/VIS/dist/vis.js @@ -0,0 +1,43288 @@ +/** + * vis.js + * https://github.com/almende/vis + * + * A dynamic, browser-based visualization library. + * + * @version 4.8.2 + * @date 2015-09-14 + * + * @license + * Copyright (C) 2011-2015 Almende B.V, http://almende.com + * + * Vis.js is dual licensed under both + * + * * The Apache 2.0 License + * http://www.apache.org/licenses/LICENSE-2.0 + * + * and + * + * * The MIT License + * http://opensource.org/licenses/MIT + * + * Vis.js may be distributed under either license. + */ + +"use strict"; + +(function webpackUniversalModuleDefinition(root, factory) { + if(typeof exports === 'object' && typeof module === 'object') + module.exports = factory(); + else if(typeof define === 'function' && define.amd) + define([], factory); + else if(typeof exports === 'object') + exports["vis"] = factory(); + else + root["vis"] = factory(); +})(this, function() { +return /******/ (function(modules) { // webpackBootstrap +/******/ // The module cache +/******/ var installedModules = {}; + +/******/ // The require function +/******/ function __webpack_require__(moduleId) { + +/******/ // Check if module is in cache +/******/ if(installedModules[moduleId]) +/******/ return installedModules[moduleId].exports; + +/******/ // Create a new module (and put it into the cache) +/******/ var module = installedModules[moduleId] = { +/******/ exports: {}, +/******/ id: moduleId, +/******/ loaded: false +/******/ }; + +/******/ // Execute the module function +/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); + +/******/ // Flag the module as loaded +/******/ module.loaded = true; + +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } + + +/******/ // expose the modules object (__webpack_modules__) +/******/ __webpack_require__.m = modules; + +/******/ // expose the module cache +/******/ __webpack_require__.c = installedModules; + +/******/ // __webpack_public_path__ +/******/ __webpack_require__.p = ""; + +/******/ // Load entry module and return exports +/******/ return __webpack_require__(0); +/******/ }) +/************************************************************************/ +/******/ ([ +/* 0 */ +/***/ function(module, exports, __webpack_require__) { + + // utils + 'use strict'; + + exports.util = __webpack_require__(1); + exports.DOMutil = __webpack_require__(7); + + // data + exports.DataSet = __webpack_require__(8); + exports.DataView = __webpack_require__(10); + exports.Queue = __webpack_require__(9); + + // Graph3d + exports.Graph3d = __webpack_require__(11); + exports.graph3d = { + Camera: __webpack_require__(15), + Filter: __webpack_require__(16), + Point2d: __webpack_require__(14), + Point3d: __webpack_require__(13), + Slider: __webpack_require__(17), + StepNumber: __webpack_require__(18) + }; + + // Timeline + exports.Timeline = __webpack_require__(19); + exports.Graph2d = __webpack_require__(49); + exports.timeline = { + DateUtil: __webpack_require__(27), + DataStep: __webpack_require__(52), + Range: __webpack_require__(24), + stack: __webpack_require__(32), + TimeStep: __webpack_require__(30), + + components: { + items: { + Item: __webpack_require__(34), + BackgroundItem: __webpack_require__(38), + BoxItem: __webpack_require__(36), + PointItem: __webpack_require__(37), + RangeItem: __webpack_require__(33) + }, + + Component: __webpack_require__(26), + CurrentTime: __webpack_require__(44), + CustomTime: __webpack_require__(42), + DataAxis: __webpack_require__(51), + GraphGroup: __webpack_require__(53), + Group: __webpack_require__(31), + BackgroundGroup: __webpack_require__(35), + ItemSet: __webpack_require__(29), + Legend: __webpack_require__(57), + LineGraph: __webpack_require__(50), + TimeAxis: __webpack_require__(39) + } + }; + + // Network + exports.Network = __webpack_require__(59); + exports.network = { + Images: __webpack_require__(117), + dotparser: __webpack_require__(115), + gephiParser: __webpack_require__(116), + allOptions: __webpack_require__(111) + }; + exports.network.convertDot = function (input) { + return exports.network.dotparser.DOTToGraph(input); + }; + exports.network.convertGephi = function (input, options) { + return exports.network.gephiParser.parseGephi(input, options); + }; + + // bundled external libraries + exports.moment = __webpack_require__(2); + exports.Hammer = __webpack_require__(20); + exports.keycharm = __webpack_require__(41); + +/***/ }, +/* 1 */ +/***/ function(module, exports, __webpack_require__) { + + // utility functions + + // first check if moment.js is already loaded in the browser window, if so, + // use this instance. Else, load via commonjs. + + 'use strict'; + + var moment = __webpack_require__(2); + var uuid = __webpack_require__(6); + + /** + * Test whether given object is a number + * @param {*} object + * @return {Boolean} isNumber + */ + exports.isNumber = function (object) { + return object instanceof Number || typeof object == 'number'; + }; + + /** + * Remove everything in the DOM object + * @param DOMobject + */ + exports.recursiveDOMDelete = function (DOMobject) { + if (DOMobject) { + while (DOMobject.hasChildNodes() === true) { + exports.recursiveDOMDelete(DOMobject.firstChild); + DOMobject.removeChild(DOMobject.firstChild); + } + } + }; + + /** + * this function gives you a range between 0 and 1 based on the min and max values in the set, the total sum of all values and the current value. + * + * @param min + * @param max + * @param total + * @param value + * @returns {number} + */ + exports.giveRange = function (min, max, total, value) { + if (max == min) { + return 0.5; + } else { + var scale = 1 / (max - min); + return Math.max(0, (value - min) * scale); + } + }; + + /** + * Test whether given object is a string + * @param {*} object + * @return {Boolean} isString + */ + exports.isString = function (object) { + return object instanceof String || typeof object == 'string'; + }; + + /** + * Test whether given object is a Date, or a String containing a Date + * @param {Date | String} object + * @return {Boolean} isDate + */ + exports.isDate = function (object) { + if (object instanceof Date) { + return true; + } else if (exports.isString(object)) { + // test whether this string contains a date + var match = ASPDateRegex.exec(object); + if (match) { + return true; + } else if (!isNaN(Date.parse(object))) { + return true; + } + } + + return false; + }; + + /** + * Create a semi UUID + * source: http://stackoverflow.com/a/105074/1262753 + * @return {String} uuid + */ + exports.randomUUID = function () { + return uuid.v4(); + }; + + /** + * assign all keys of an object that are not nested objects to a certain value (used for color objects). + * @param obj + * @param value + */ + exports.assignAllKeys = function (obj, value) { + for (var prop in obj) { + if (obj.hasOwnProperty(prop)) { + if (typeof obj[prop] !== 'object') { + obj[prop] = value; + } + } + } + }; + + /** + * Fill an object with a possibly partially defined other object. Only copies values if the a object has an object requiring values. + * That means an object is not created on a property if only the b object has it. + * @param obj + * @param value + */ + exports.fillIfDefined = function (a, b) { + var allowDeletion = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + + for (var prop in a) { + if (b[prop] !== undefined) { + if (typeof b[prop] !== 'object') { + if ((b[prop] === undefined || b[prop] === null) && a[prop] !== undefined && allowDeletion === true) { + delete a[prop]; + } else { + a[prop] = b[prop]; + } + } else { + if (typeof a[prop] === 'object') { + exports.fillIfDefined(a[prop], b[prop], allowDeletion); + } + } + } + } + }; + + /** + * Extend object a with the properties of object b or a series of objects + * Only properties with defined values are copied + * @param {Object} a + * @param {... Object} b + * @return {Object} a + */ + exports.protoExtend = function (a, b) { + for (var i = 1; i < arguments.length; i++) { + var other = arguments[i]; + for (var prop in other) { + a[prop] = other[prop]; + } + } + return a; + }; + + /** + * Extend object a with the properties of object b or a series of objects + * Only properties with defined values are copied + * @param {Object} a + * @param {... Object} b + * @return {Object} a + */ + exports.extend = function (a, b) { + for (var i = 1; i < arguments.length; i++) { + var other = arguments[i]; + for (var prop in other) { + if (other.hasOwnProperty(prop)) { + a[prop] = other[prop]; + } + } + } + return a; + }; + + /** + * Extend object a with selected properties of object b or a series of objects + * Only properties with defined values are copied + * @param {Array.} props + * @param {Object} a + * @param {Object} b + * @return {Object} a + */ + exports.selectiveExtend = function (props, a, b) { + if (!Array.isArray(props)) { + throw new Error('Array with property names expected as first argument'); + } + + for (var i = 2; i < arguments.length; i++) { + var other = arguments[i]; + + for (var p = 0; p < props.length; p++) { + var prop = props[p]; + if (other.hasOwnProperty(prop)) { + a[prop] = other[prop]; + } + } + } + return a; + }; + + /** + * Extend object a with selected properties of object b or a series of objects + * Only properties with defined values are copied + * @param {Array.} props + * @param {Object} a + * @param {Object} b + * @return {Object} a + */ + exports.selectiveDeepExtend = function (props, a, b) { + var allowDeletion = arguments.length <= 3 || arguments[3] === undefined ? false : arguments[3]; + + // TODO: add support for Arrays to deepExtend + if (Array.isArray(b)) { + throw new TypeError('Arrays are not supported by deepExtend'); + } + for (var i = 2; i < arguments.length; i++) { + var other = arguments[i]; + for (var p = 0; p < props.length; p++) { + var prop = props[p]; + if (other.hasOwnProperty(prop)) { + if (b[prop] && b[prop].constructor === Object) { + if (a[prop] === undefined) { + a[prop] = {}; + } + if (a[prop].constructor === Object) { + exports.deepExtend(a[prop], b[prop], false, allowDeletion); + } else { + if (b[prop] === null && a[prop] !== undefined && allowDeletion === true) { + delete a[prop]; + } else { + a[prop] = b[prop]; + } + } + } else if (Array.isArray(b[prop])) { + throw new TypeError('Arrays are not supported by deepExtend'); + } else { + if (b[prop] === null && a[prop] !== undefined && allowDeletion === true) { + delete a[prop]; + } else { + a[prop] = b[prop]; + } + } + } + } + } + return a; + }; + + /** + * Extend object a with selected properties of object b or a series of objects + * Only properties with defined values are copied + * @param {Array.} props + * @param {Object} a + * @param {Object} b + * @return {Object} a + */ + exports.selectiveNotDeepExtend = function (props, a, b) { + var allowDeletion = arguments.length <= 3 || arguments[3] === undefined ? false : arguments[3]; + + // TODO: add support for Arrays to deepExtend + if (Array.isArray(b)) { + throw new TypeError('Arrays are not supported by deepExtend'); + } + for (var prop in b) { + if (b.hasOwnProperty(prop)) { + if (props.indexOf(prop) == -1) { + if (b[prop] && b[prop].constructor === Object) { + if (a[prop] === undefined) { + a[prop] = {}; + } + if (a[prop].constructor === Object) { + exports.deepExtend(a[prop], b[prop]); + } else { + if (b[prop] === null && a[prop] !== undefined && allowDeletion === true) { + delete a[prop]; + } else { + a[prop] = b[prop]; + } + } + } else if (Array.isArray(b[prop])) { + a[prop] = []; + for (var i = 0; i < b[prop].length; i++) { + a[prop].push(b[prop][i]); + } + } else { + if (b[prop] === null && a[prop] !== undefined && allowDeletion === true) { + delete a[prop]; + } else { + a[prop] = b[prop]; + } + } + } + } + } + return a; + }; + + /** + * Deep extend an object a with the properties of object b + * @param {Object} a + * @param {Object} b + * @param [Boolean] protoExtend --> optional parameter. If true, the prototype values will also be extended. + * (ie. the options objects that inherit from others will also get the inherited options) + * @param [Boolean] global --> optional parameter. If true, the values of fields that are null will not deleted + * @returns {Object} + */ + exports.deepExtend = function (a, b, protoExtend, allowDeletion) { + for (var prop in b) { + if (b.hasOwnProperty(prop) || protoExtend === true) { + if (b[prop] && b[prop].constructor === Object) { + if (a[prop] === undefined) { + a[prop] = {}; + } + if (a[prop].constructor === Object) { + exports.deepExtend(a[prop], b[prop], protoExtend); + } else { + if (b[prop] === null && a[prop] !== undefined && allowDeletion === true) { + delete a[prop]; + } else { + a[prop] = b[prop]; + } + } + } else if (Array.isArray(b[prop])) { + a[prop] = []; + for (var i = 0; i < b[prop].length; i++) { + a[prop].push(b[prop][i]); + } + } else { + if (b[prop] === null && a[prop] !== undefined && allowDeletion === true) { + delete a[prop]; + } else { + a[prop] = b[prop]; + } + } + } + } + return a; + }; + + /** + * Test whether all elements in two arrays are equal. + * @param {Array} a + * @param {Array} b + * @return {boolean} Returns true if both arrays have the same length and same + * elements. + */ + exports.equalArray = function (a, b) { + if (a.length != b.length) return false; + + for (var i = 0, len = a.length; i < len; i++) { + if (a[i] != b[i]) return false; + } + + return true; + }; + + /** + * Convert an object to another type + * @param {Boolean | Number | String | Date | Moment | Null | undefined} object + * @param {String | undefined} type Name of the type. Available types: + * 'Boolean', 'Number', 'String', + * 'Date', 'Moment', ISODate', 'ASPDate'. + * @return {*} object + * @throws Error + */ + exports.convert = function (object, type) { + var match; + + if (object === undefined) { + return undefined; + } + if (object === null) { + return null; + } + + if (!type) { + return object; + } + if (!(typeof type === 'string') && !(type instanceof String)) { + throw new Error('Type must be a string'); + } + + //noinspection FallthroughInSwitchStatementJS + switch (type) { + case 'boolean': + case 'Boolean': + return Boolean(object); + + case 'number': + case 'Number': + return Number(object.valueOf()); + + case 'string': + case 'String': + return String(object); + + case 'Date': + if (exports.isNumber(object)) { + return new Date(object); + } + if (object instanceof Date) { + return new Date(object.valueOf()); + } else if (moment.isMoment(object)) { + return new Date(object.valueOf()); + } + if (exports.isString(object)) { + match = ASPDateRegex.exec(object); + if (match) { + // object is an ASP date + return new Date(Number(match[1])); // parse number + } else { + return moment(object).toDate(); // parse string + } + } else { + throw new Error('Cannot convert object of type ' + exports.getType(object) + ' to type Date'); + } + + case 'Moment': + if (exports.isNumber(object)) { + return moment(object); + } + if (object instanceof Date) { + return moment(object.valueOf()); + } else if (moment.isMoment(object)) { + return moment(object); + } + if (exports.isString(object)) { + match = ASPDateRegex.exec(object); + if (match) { + // object is an ASP date + return moment(Number(match[1])); // parse number + } else { + return moment(object); // parse string + } + } else { + throw new Error('Cannot convert object of type ' + exports.getType(object) + ' to type Date'); + } + + case 'ISODate': + if (exports.isNumber(object)) { + return new Date(object); + } else if (object instanceof Date) { + return object.toISOString(); + } else if (moment.isMoment(object)) { + return object.toDate().toISOString(); + } else if (exports.isString(object)) { + match = ASPDateRegex.exec(object); + if (match) { + // object is an ASP date + return new Date(Number(match[1])).toISOString(); // parse number + } else { + return new Date(object).toISOString(); // parse string + } + } else { + throw new Error('Cannot convert object of type ' + exports.getType(object) + ' to type ISODate'); + } + + case 'ASPDate': + if (exports.isNumber(object)) { + return '/Date(' + object + ')/'; + } else if (object instanceof Date) { + return '/Date(' + object.valueOf() + ')/'; + } else if (exports.isString(object)) { + match = ASPDateRegex.exec(object); + var value; + if (match) { + // object is an ASP date + value = new Date(Number(match[1])).valueOf(); // parse number + } else { + value = new Date(object).valueOf(); // parse string + } + return '/Date(' + value + ')/'; + } else { + throw new Error('Cannot convert object of type ' + exports.getType(object) + ' to type ASPDate'); + } + + default: + throw new Error('Unknown type "' + type + '"'); + } + }; + + // parse ASP.Net Date pattern, + // for example '/Date(1198908717056)/' or '/Date(1198908717056-0700)/' + // code from http://momentjs.com/ + var ASPDateRegex = /^\/?Date\((\-?\d+)/i; + + /** + * Get the type of an object, for example exports.getType([]) returns 'Array' + * @param {*} object + * @return {String} type + */ + exports.getType = function (object) { + var type = typeof object; + + if (type == 'object') { + if (object === null) { + return 'null'; + } + if (object instanceof Boolean) { + return 'Boolean'; + } + if (object instanceof Number) { + return 'Number'; + } + if (object instanceof String) { + return 'String'; + } + if (Array.isArray(object)) { + return 'Array'; + } + if (object instanceof Date) { + return 'Date'; + } + return 'Object'; + } else if (type == 'number') { + return 'Number'; + } else if (type == 'boolean') { + return 'Boolean'; + } else if (type == 'string') { + return 'String'; + } else if (type === undefined) { + return 'undefined'; + } + + return type; + }; + + /** + * Used to extend an array and copy it. This is used to propagate paths recursively. + * + * @param arr + * @param newValue + * @returns {Array} + */ + exports.copyAndExtendArray = function (arr, newValue) { + var newArr = []; + for (var i = 0; i < arr.length; i++) { + newArr.push(arr[i]); + } + newArr.push(newValue); + return newArr; + }; + + /** + * Used to extend an array and copy it. This is used to propagate paths recursively. + * + * @param arr + * @param newValue + * @returns {Array} + */ + exports.copyArray = function (arr) { + var newArr = []; + for (var i = 0; i < arr.length; i++) { + newArr.push(arr[i]); + } + return newArr; + }; + + /** + * Retrieve the absolute left value of a DOM element + * @param {Element} elem A dom element, for example a div + * @return {number} left The absolute left position of this element + * in the browser page. + */ + exports.getAbsoluteLeft = function (elem) { + return elem.getBoundingClientRect().left; + }; + + /** + * Retrieve the absolute top value of a DOM element + * @param {Element} elem A dom element, for example a div + * @return {number} top The absolute top position of this element + * in the browser page. + */ + exports.getAbsoluteTop = function (elem) { + return elem.getBoundingClientRect().top; + }; + + /** + * add a className to the given elements style + * @param {Element} elem + * @param {String} className + */ + exports.addClassName = function (elem, className) { + var classes = elem.className.split(' '); + if (classes.indexOf(className) == -1) { + classes.push(className); // add the class to the array + elem.className = classes.join(' '); + } + }; + + /** + * add a className to the given elements style + * @param {Element} elem + * @param {String} className + */ + exports.removeClassName = function (elem, className) { + var classes = elem.className.split(' '); + var index = classes.indexOf(className); + if (index != -1) { + classes.splice(index, 1); // remove the class from the array + elem.className = classes.join(' '); + } + }; + + /** + * For each method for both arrays and objects. + * In case of an array, the built-in Array.forEach() is applied. + * In case of an Object, the method loops over all properties of the object. + * @param {Object | Array} object An Object or Array + * @param {function} callback Callback method, called for each item in + * the object or array with three parameters: + * callback(value, index, object) + */ + exports.forEach = function (object, callback) { + var i, len; + if (Array.isArray(object)) { + // array + for (i = 0, len = object.length; i < len; i++) { + callback(object[i], i, object); + } + } else { + // object + for (i in object) { + if (object.hasOwnProperty(i)) { + callback(object[i], i, object); + } + } + } + }; + + /** + * Convert an object into an array: all objects properties are put into the + * array. The resulting array is unordered. + * @param {Object} object + * @param {Array} array + */ + exports.toArray = function (object) { + var array = []; + + for (var prop in object) { + if (object.hasOwnProperty(prop)) array.push(object[prop]); + } + + return array; + }; + + /** + * Update a property in an object + * @param {Object} object + * @param {String} key + * @param {*} value + * @return {Boolean} changed + */ + exports.updateProperty = function (object, key, value) { + if (object[key] !== value) { + object[key] = value; + return true; + } else { + return false; + } + }; + + /** + * Throttle the given function to be only executed once every `wait` milliseconds + * @param {function} fn + * @param {number} wait Time in milliseconds + * @returns {function} Returns the throttled function + */ + exports.throttle = function (fn, wait) { + var timeout = null; + var needExecution = false; + + return function throttled() { + if (!timeout) { + needExecution = false; + fn(); + + timeout = setTimeout(function () { + timeout = null; + if (needExecution) { + throttled(); + } + }, wait); + } else { + needExecution = true; + } + }; + }; + + /** + * Add and event listener. Works for all browsers + * @param {Element} element An html element + * @param {string} action The action, for example "click", + * without the prefix "on" + * @param {function} listener The callback function to be executed + * @param {boolean} [useCapture] + */ + exports.addEventListener = function (element, action, listener, useCapture) { + if (element.addEventListener) { + if (useCapture === undefined) useCapture = false; + + if (action === "mousewheel" && navigator.userAgent.indexOf("Firefox") >= 0) { + action = "DOMMouseScroll"; // For Firefox + } + + element.addEventListener(action, listener, useCapture); + } else { + element.attachEvent("on" + action, listener); // IE browsers + } + }; + + /** + * Remove an event listener from an element + * @param {Element} element An html dom element + * @param {string} action The name of the event, for example "mousedown" + * @param {function} listener The listener function + * @param {boolean} [useCapture] + */ + exports.removeEventListener = function (element, action, listener, useCapture) { + if (element.removeEventListener) { + // non-IE browsers + if (useCapture === undefined) useCapture = false; + + if (action === "mousewheel" && navigator.userAgent.indexOf("Firefox") >= 0) { + action = "DOMMouseScroll"; // For Firefox + } + + element.removeEventListener(action, listener, useCapture); + } else { + // IE browsers + element.detachEvent("on" + action, listener); + } + }; + + /** + * Cancels the event if it is cancelable, without stopping further propagation of the event. + */ + exports.preventDefault = function (event) { + if (!event) event = window.event; + + if (event.preventDefault) { + event.preventDefault(); // non-IE browsers + } else { + event.returnValue = false; // IE browsers + } + }; + + /** + * Get HTML element which is the target of the event + * @param {Event} event + * @return {Element} target element + */ + exports.getTarget = function (event) { + // code from http://www.quirksmode.org/js/events_properties.html + if (!event) { + event = window.event; + } + + var target; + + if (event.target) { + target = event.target; + } else if (event.srcElement) { + target = event.srcElement; + } + + if (target.nodeType != undefined && target.nodeType == 3) { + // defeat Safari bug + target = target.parentNode; + } + + return target; + }; + + /** + * Check if given element contains given parent somewhere in the DOM tree + * @param {Element} element + * @param {Element} parent + */ + exports.hasParent = function (element, parent) { + var e = element; + + while (e) { + if (e === parent) { + return true; + } + e = e.parentNode; + } + + return false; + }; + + exports.option = {}; + + /** + * Convert a value into a boolean + * @param {Boolean | function | undefined} value + * @param {Boolean} [defaultValue] + * @returns {Boolean} bool + */ + exports.option.asBoolean = function (value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (value != null) { + return value != false; + } + + return defaultValue || null; + }; + + /** + * Convert a value into a number + * @param {Boolean | function | undefined} value + * @param {Number} [defaultValue] + * @returns {Number} number + */ + exports.option.asNumber = function (value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (value != null) { + return Number(value) || defaultValue || null; + } + + return defaultValue || null; + }; + + /** + * Convert a value into a string + * @param {String | function | undefined} value + * @param {String} [defaultValue] + * @returns {String} str + */ + exports.option.asString = function (value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (value != null) { + return String(value); + } + + return defaultValue || null; + }; + + /** + * Convert a size or location into a string with pixels or a percentage + * @param {String | Number | function | undefined} value + * @param {String} [defaultValue] + * @returns {String} size + */ + exports.option.asSize = function (value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (exports.isString(value)) { + return value; + } else if (exports.isNumber(value)) { + return value + 'px'; + } else { + return defaultValue || null; + } + }; + + /** + * Convert a value into a DOM element + * @param {HTMLElement | function | undefined} value + * @param {HTMLElement} [defaultValue] + * @returns {HTMLElement | null} dom + */ + exports.option.asElement = function (value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + return value || defaultValue || null; + }; + + /** + * http://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb + * + * @param {String} hex + * @returns {{r: *, g: *, b: *}} | 255 range + */ + exports.hexToRGB = function (hex) { + // Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF") + var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; + hex = hex.replace(shorthandRegex, function (m, r, g, b) { + return r + r + g + g + b + b; + }); + var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); + return result ? { + r: parseInt(result[1], 16), + g: parseInt(result[2], 16), + b: parseInt(result[3], 16) + } : null; + }; + + /** + * This function takes color in hex format or rgb() or rgba() format and overrides the opacity. Returns rgba() string. + * @param color + * @param opacity + * @returns {*} + */ + exports.overrideOpacity = function (color, opacity) { + if (color.indexOf("rgba") != -1) { + return color; + } else if (color.indexOf("rgb") != -1) { + var rgb = color.substr(color.indexOf("(") + 1).replace(")", "").split(","); + return "rgba(" + rgb[0] + "," + rgb[1] + "," + rgb[2] + "," + opacity + ")"; + } else { + var rgb = exports.hexToRGB(color); + if (rgb == null) { + return color; + } else { + return "rgba(" + rgb.r + "," + rgb.g + "," + rgb.b + "," + opacity + ")"; + } + } + }; + + /** + * + * @param red 0 -- 255 + * @param green 0 -- 255 + * @param blue 0 -- 255 + * @returns {string} + * @constructor + */ + exports.RGBToHex = function (red, green, blue) { + return "#" + ((1 << 24) + (red << 16) + (green << 8) + blue).toString(16).slice(1); + }; + + /** + * Parse a color property into an object with border, background, and + * highlight colors + * @param {Object | String} color + * @return {Object} colorObject + */ + exports.parseColor = function (color) { + var c; + if (exports.isString(color) === true) { + if (exports.isValidRGB(color) === true) { + var rgb = color.substr(4).substr(0, color.length - 5).split(',').map(function (value) { + return parseInt(value); + }); + color = exports.RGBToHex(rgb[0], rgb[1], rgb[2]); + } + if (exports.isValidHex(color) === true) { + var hsv = exports.hexToHSV(color); + var lighterColorHSV = { h: hsv.h, s: hsv.s * 0.8, v: Math.min(1, hsv.v * 1.02) }; + var darkerColorHSV = { h: hsv.h, s: Math.min(1, hsv.s * 1.25), v: hsv.v * 0.8 }; + var darkerColorHex = exports.HSVToHex(darkerColorHSV.h, darkerColorHSV.s, darkerColorHSV.v); + var lighterColorHex = exports.HSVToHex(lighterColorHSV.h, lighterColorHSV.s, lighterColorHSV.v); + c = { + background: color, + border: darkerColorHex, + highlight: { + background: lighterColorHex, + border: darkerColorHex + }, + hover: { + background: lighterColorHex, + border: darkerColorHex + } + }; + } else { + c = { + background: color, + border: color, + highlight: { + background: color, + border: color + }, + hover: { + background: color, + border: color + } + }; + } + } else { + c = {}; + c.background = color.background || undefined; + c.border = color.border || undefined; + + if (exports.isString(color.highlight)) { + c.highlight = { + border: color.highlight, + background: color.highlight + }; + } else { + c.highlight = {}; + c.highlight.background = color.highlight && color.highlight.background || undefined; + c.highlight.border = color.highlight && color.highlight.border || undefined; + } + + if (exports.isString(color.hover)) { + c.hover = { + border: color.hover, + background: color.hover + }; + } else { + c.hover = {}; + c.hover.background = color.hover && color.hover.background || undefined; + c.hover.border = color.hover && color.hover.border || undefined; + } + } + + return c; + }; + + /** + * http://www.javascripter.net/faq/rgb2hsv.htm + * + * @param red + * @param green + * @param blue + * @returns {*} + * @constructor + */ + exports.RGBToHSV = function (red, green, blue) { + red = red / 255;green = green / 255;blue = blue / 255; + var minRGB = Math.min(red, Math.min(green, blue)); + var maxRGB = Math.max(red, Math.max(green, blue)); + + // Black-gray-white + if (minRGB == maxRGB) { + return { h: 0, s: 0, v: minRGB }; + } + + // Colors other than black-gray-white: + var d = red == minRGB ? green - blue : blue == minRGB ? red - green : blue - red; + var h = red == minRGB ? 3 : blue == minRGB ? 1 : 5; + var hue = 60 * (h - d / (maxRGB - minRGB)) / 360; + var saturation = (maxRGB - minRGB) / maxRGB; + var value = maxRGB; + return { h: hue, s: saturation, v: value }; + }; + + var cssUtil = { + // split a string with css styles into an object with key/values + split: function split(cssText) { + var styles = {}; + + cssText.split(';').forEach(function (style) { + if (style.trim() != '') { + var parts = style.split(':'); + var key = parts[0].trim(); + var value = parts[1].trim(); + styles[key] = value; + } + }); + + return styles; + }, + + // build a css text string from an object with key/values + join: function join(styles) { + return Object.keys(styles).map(function (key) { + return key + ': ' + styles[key]; + }).join('; '); + } + }; + + /** + * Append a string with css styles to an element + * @param {Element} element + * @param {String} cssText + */ + exports.addCssText = function (element, cssText) { + var currentStyles = cssUtil.split(element.style.cssText); + var newStyles = cssUtil.split(cssText); + var styles = exports.extend(currentStyles, newStyles); + + element.style.cssText = cssUtil.join(styles); + }; + + /** + * Remove a string with css styles from an element + * @param {Element} element + * @param {String} cssText + */ + exports.removeCssText = function (element, cssText) { + var styles = cssUtil.split(element.style.cssText); + var removeStyles = cssUtil.split(cssText); + + for (var key in removeStyles) { + if (removeStyles.hasOwnProperty(key)) { + delete styles[key]; + } + } + + element.style.cssText = cssUtil.join(styles); + }; + + /** + * https://gist.github.com/mjijackson/5311256 + * @param h + * @param s + * @param v + * @returns {{r: number, g: number, b: number}} + * @constructor + */ + exports.HSVToRGB = function (h, s, v) { + var r, g, b; + + var i = Math.floor(h * 6); + var f = h * 6 - i; + var p = v * (1 - s); + var q = v * (1 - f * s); + var t = v * (1 - (1 - f) * s); + + switch (i % 6) { + case 0: + r = v, g = t, b = p;break; + case 1: + r = q, g = v, b = p;break; + case 2: + r = p, g = v, b = t;break; + case 3: + r = p, g = q, b = v;break; + case 4: + r = t, g = p, b = v;break; + case 5: + r = v, g = p, b = q;break; + } + + return { r: Math.floor(r * 255), g: Math.floor(g * 255), b: Math.floor(b * 255) }; + }; + + exports.HSVToHex = function (h, s, v) { + var rgb = exports.HSVToRGB(h, s, v); + return exports.RGBToHex(rgb.r, rgb.g, rgb.b); + }; + + exports.hexToHSV = function (hex) { + var rgb = exports.hexToRGB(hex); + return exports.RGBToHSV(rgb.r, rgb.g, rgb.b); + }; + + exports.isValidHex = function (hex) { + var isOk = /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(hex); + return isOk; + }; + + exports.isValidRGB = function (rgb) { + rgb = rgb.replace(" ", ""); + var isOk = /rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(rgb); + return isOk; + }; + exports.isValidRGBA = function (rgba) { + rgba = rgba.replace(" ", ""); + var isOk = /rgba\((\d{1,3}),(\d{1,3}),(\d{1,3}),(.{1,3})\)/i.test(rgba); + return isOk; + }; + + /** + * This recursively redirects the prototype of JSON objects to the referenceObject + * This is used for default options. + * + * @param referenceObject + * @returns {*} + */ + exports.selectiveBridgeObject = function (fields, referenceObject) { + if (typeof referenceObject == "object") { + var objectTo = Object.create(referenceObject); + for (var i = 0; i < fields.length; i++) { + if (referenceObject.hasOwnProperty(fields[i])) { + if (typeof referenceObject[fields[i]] == "object") { + objectTo[fields[i]] = exports.bridgeObject(referenceObject[fields[i]]); + } + } + } + return objectTo; + } else { + return null; + } + }; + + /** + * This recursively redirects the prototype of JSON objects to the referenceObject + * This is used for default options. + * + * @param referenceObject + * @returns {*} + */ + exports.bridgeObject = function (referenceObject) { + if (typeof referenceObject == "object") { + var objectTo = Object.create(referenceObject); + for (var i in referenceObject) { + if (referenceObject.hasOwnProperty(i)) { + if (typeof referenceObject[i] == "object") { + objectTo[i] = exports.bridgeObject(referenceObject[i]); + } + } + } + return objectTo; + } else { + return null; + } + }; + + /** + * this is used to set the options of subobjects in the options object. A requirement of these subobjects + * is that they have an 'enabled' element which is optional for the user but mandatory for the program. + * + * @param [object] mergeTarget | this is either this.options or the options used for the groups. + * @param [object] options | options + * @param [String] option | this is the option key in the options argument + * @private + */ + exports.mergeOptions = function (mergeTarget, options, option) { + var allowDeletion = arguments.length <= 3 || arguments[3] === undefined ? false : arguments[3]; + var globalOptions = arguments.length <= 4 || arguments[4] === undefined ? {} : arguments[4]; + + if (options[option] === null) { + mergeTarget[option] = Object.create(globalOptions[option]); + } else { + if (options[option] !== undefined) { + if (typeof options[option] === 'boolean') { + mergeTarget[option].enabled = options[option]; + } else { + if (options[option].enabled === undefined) { + mergeTarget[option].enabled = true; + } + for (var prop in options[option]) { + if (options[option].hasOwnProperty(prop)) { + mergeTarget[option][prop] = options[option][prop]; + } + } + } + } + } + }; + + /** + * This function does a binary search for a visible item in a sorted list. If we find a visible item, the code that uses + * this function will then iterate in both directions over this sorted list to find all visible items. + * + * @param {Item[]} orderedItems | Items ordered by start + * @param {function} searchFunction | -1 is lower, 0 is found, 1 is higher + * @param {String} field + * @param {String} field2 + * @returns {number} + * @private + */ + exports.binarySearchCustom = function (orderedItems, searchFunction, field, field2) { + var maxIterations = 10000; + var iteration = 0; + var low = 0; + var high = orderedItems.length - 1; + + while (low <= high && iteration < maxIterations) { + var middle = Math.floor((low + high) / 2); + + var item = orderedItems[middle]; + var value = field2 === undefined ? item[field] : item[field][field2]; + + var searchResult = searchFunction(value); + if (searchResult == 0) { + // jihaa, found a visible item! + return middle; + } else if (searchResult == -1) { + // it is too small --> increase low + low = middle + 1; + } else { + // it is too big --> decrease high + high = middle - 1; + } + + iteration++; + } + + return -1; + }; + + /** + * This function does a binary search for a specific value in a sorted array. If it does not exist but is in between of + * two values, we return either the one before or the one after, depending on user input + * If it is found, we return the index, else -1. + * + * @param {Array} orderedItems + * @param {{start: number, end: number}} target + * @param {String} field + * @param {String} sidePreference 'before' or 'after' + * @returns {number} + * @private + */ + exports.binarySearchValue = function (orderedItems, target, field, sidePreference) { + var maxIterations = 10000; + var iteration = 0; + var low = 0; + var high = orderedItems.length - 1; + var prevValue, value, nextValue, middle; + + while (low <= high && iteration < maxIterations) { + // get a new guess + middle = Math.floor(0.5 * (high + low)); + prevValue = orderedItems[Math.max(0, middle - 1)][field]; + value = orderedItems[middle][field]; + nextValue = orderedItems[Math.min(orderedItems.length - 1, middle + 1)][field]; + + if (value == target) { + // we found the target + return middle; + } else if (prevValue < target && value > target) { + // target is in between of the previous and the current + return sidePreference == 'before' ? Math.max(0, middle - 1) : middle; + } else if (value < target && nextValue > target) { + // target is in between of the current and the next + return sidePreference == 'before' ? middle : Math.min(orderedItems.length - 1, middle + 1); + } else { + // didnt find the target, we need to change our boundaries. + if (value < target) { + // it is too small --> increase low + low = middle + 1; + } else { + // it is too big --> decrease high + high = middle - 1; + } + } + iteration++; + } + + // didnt find anything. Return -1. + return -1; + }; + + /* + * Easing Functions - inspired from http://gizma.com/easing/ + * only considering the t value for the range [0, 1] => [0, 1] + * https://gist.github.com/gre/1650294 + */ + exports.easingFunctions = { + // no easing, no acceleration + linear: function linear(t) { + return t; + }, + // accelerating from zero velocity + easeInQuad: function easeInQuad(t) { + return t * t; + }, + // decelerating to zero velocity + easeOutQuad: function easeOutQuad(t) { + return t * (2 - t); + }, + // acceleration until halfway, then deceleration + easeInOutQuad: function easeInOutQuad(t) { + return t < .5 ? 2 * t * t : -1 + (4 - 2 * t) * t; + }, + // accelerating from zero velocity + easeInCubic: function easeInCubic(t) { + return t * t * t; + }, + // decelerating to zero velocity + easeOutCubic: function easeOutCubic(t) { + return --t * t * t + 1; + }, + // acceleration until halfway, then deceleration + easeInOutCubic: function easeInOutCubic(t) { + return t < .5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1; + }, + // accelerating from zero velocity + easeInQuart: function easeInQuart(t) { + return t * t * t * t; + }, + // decelerating to zero velocity + easeOutQuart: function easeOutQuart(t) { + return 1 - --t * t * t * t; + }, + // acceleration until halfway, then deceleration + easeInOutQuart: function easeInOutQuart(t) { + return t < .5 ? 8 * t * t * t * t : 1 - 8 * --t * t * t * t; + }, + // accelerating from zero velocity + easeInQuint: function easeInQuint(t) { + return t * t * t * t * t; + }, + // decelerating to zero velocity + easeOutQuint: function easeOutQuint(t) { + return 1 + --t * t * t * t * t; + }, + // acceleration until halfway, then deceleration + easeInOutQuint: function easeInOutQuint(t) { + return t < .5 ? 16 * t * t * t * t * t : 1 + 16 * --t * t * t * t * t; + } + }; + +/***/ }, +/* 2 */ +/***/ function(module, exports, __webpack_require__) { + + // first check if moment.js is already loaded in the browser window, if so, + // use this instance. Else, load via commonjs. + 'use strict'; + + module.exports = typeof window !== 'undefined' && window['moment'] || __webpack_require__(3); + +/***/ }, +/* 3 */ +/***/ function(module, exports, __webpack_require__) { + + /* WEBPACK VAR INJECTION */(function(module) {//! moment.js + //! version : 2.10.6 + //! authors : Tim Wood, Iskren Chernev, Moment.js contributors + //! license : MIT + //! momentjs.com + + (function (global, factory) { + true ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + global.moment = factory() + }(this, function () { 'use strict'; + + var hookCallback; + + function utils_hooks__hooks () { + return hookCallback.apply(null, arguments); + } + + // This is done to register the method called with moment() + // without creating circular dependencies. + function setHookCallback (callback) { + hookCallback = callback; + } + + function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; + } + + function isDate(input) { + return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; + } + + function map(arr, fn) { + var res = [], i; + for (i = 0; i < arr.length; ++i) { + res.push(fn(arr[i], i)); + } + return res; + } + + function hasOwnProp(a, b) { + return Object.prototype.hasOwnProperty.call(a, b); + } + + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; + } + + function create_utc__createUTC (input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, true).utc(); + } + + function defaultParsingFlags() { + // We need to deep clone this object. + return { + empty : false, + unusedTokens : [], + unusedInput : [], + overflow : -2, + charsLeftOver : 0, + nullInput : false, + invalidMonth : null, + invalidFormat : false, + userInvalidated : false, + iso : false + }; + } + + function getParsingFlags(m) { + if (m._pf == null) { + m._pf = defaultParsingFlags(); + } + return m._pf; + } + + function valid__isValid(m) { + if (m._isValid == null) { + var flags = getParsingFlags(m); + m._isValid = !isNaN(m._d.getTime()) && + flags.overflow < 0 && + !flags.empty && + !flags.invalidMonth && + !flags.invalidWeekday && + !flags.nullInput && + !flags.invalidFormat && + !flags.userInvalidated; + + if (m._strict) { + m._isValid = m._isValid && + flags.charsLeftOver === 0 && + flags.unusedTokens.length === 0 && + flags.bigHour === undefined; + } + } + return m._isValid; + } + + function valid__createInvalid (flags) { + var m = create_utc__createUTC(NaN); + if (flags != null) { + extend(getParsingFlags(m), flags); + } + else { + getParsingFlags(m).userInvalidated = true; + } + + return m; + } + + var momentProperties = utils_hooks__hooks.momentProperties = []; + + function copyConfig(to, from) { + var i, prop, val; + + if (typeof from._isAMomentObject !== 'undefined') { + to._isAMomentObject = from._isAMomentObject; + } + if (typeof from._i !== 'undefined') { + to._i = from._i; + } + if (typeof from._f !== 'undefined') { + to._f = from._f; + } + if (typeof from._l !== 'undefined') { + to._l = from._l; + } + if (typeof from._strict !== 'undefined') { + to._strict = from._strict; + } + if (typeof from._tzm !== 'undefined') { + to._tzm = from._tzm; + } + if (typeof from._isUTC !== 'undefined') { + to._isUTC = from._isUTC; + } + if (typeof from._offset !== 'undefined') { + to._offset = from._offset; + } + if (typeof from._pf !== 'undefined') { + to._pf = getParsingFlags(from); + } + if (typeof from._locale !== 'undefined') { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i in momentProperties) { + prop = momentProperties[i]; + val = from[prop]; + if (typeof val !== 'undefined') { + to[prop] = val; + } + } + } + + return to; + } + + var updateInProgress = false; + + // Moment prototype object + function Moment(config) { + copyConfig(this, config); + this._d = new Date(config._d != null ? config._d.getTime() : NaN); + // Prevent infinite loop in case updateOffset creates new moment + // objects. + if (updateInProgress === false) { + updateInProgress = true; + utils_hooks__hooks.updateOffset(this); + updateInProgress = false; + } + } + + function isMoment (obj) { + return obj instanceof Moment || (obj != null && obj._isAMomentObject != null); + } + + function absFloor (number) { + if (number < 0) { + return Math.ceil(number); + } else { + return Math.floor(number); + } + } + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + value = absFloor(coercedNumber); + } + + return value; + } + + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + for (i = 0; i < len; i++) { + if ((dontConvert && array1[i] !== array2[i]) || + (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { + diffs++; + } + } + return diffs + lengthDiff; + } + + function Locale() { + } + + var locales = {}; + var globalLocale; + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } + + // pick the locale from the array + // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + function chooseLocale(names) { + var i = 0, j, next, locale, split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + if (locale) { + return locale; + } + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return null; + } + + function loadLocale(name) { + var oldLocale = null; + // TODO: Find a better way to register and load all the locales in Node + if (!locales[name] && typeof module !== 'undefined' && + module && module.exports) { + try { + oldLocale = globalLocale._abbr; + !(function webpackMissingModule() { var e = new Error("Cannot find module \"./locale\""); e.code = 'MODULE_NOT_FOUND'; throw e; }()); + // because defineLocale currently also sets the global locale, we + // want to undo that for lazy loaded locales + locale_locales__getSetGlobalLocale(oldLocale); + } catch (e) { } + } + return locales[name]; + } + + // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + function locale_locales__getSetGlobalLocale (key, values) { + var data; + if (key) { + if (typeof values === 'undefined') { + data = locale_locales__getLocale(key); + } + else { + data = defineLocale(key, values); + } + + if (data) { + // moment.duration._locale = moment._locale = data; + globalLocale = data; + } + } + + return globalLocale._abbr; + } + + function defineLocale (name, values) { + if (values !== null) { + values.abbr = name; + locales[name] = locales[name] || new Locale(); + locales[name].set(values); + + // backwards compat for now: also set the locale + locale_locales__getSetGlobalLocale(name); + + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + } + + // returns locale data + function locale_locales__getLocale (key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return globalLocale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } + + return chooseLocale(key); + } + + var aliases = {}; + + function addUnitAlias (unit, shorthand) { + var lowerCase = unit.toLowerCase(); + aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit; + } + + function normalizeUnits(units) { + return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + function makeGetSet (unit, keepTime) { + return function (value) { + if (value != null) { + get_set__set(this, unit, value); + utils_hooks__hooks.updateOffset(this, keepTime); + return this; + } else { + return get_set__get(this, unit); + } + }; + } + + function get_set__get (mom, unit) { + return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); + } + + function get_set__set (mom, unit, value) { + return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + + // MOMENTS + + function getSet (units, value) { + var unit; + if (typeof units === 'object') { + for (unit in units) { + this.set(unit, units[unit]); + } + } else { + units = normalizeUnits(units); + if (typeof this[units] === 'function') { + return this[units](value); + } + } + return this; + } + + function zeroFill(number, targetLength, forceSign) { + var absNumber = '' + Math.abs(number), + zerosToFill = targetLength - absNumber.length, + sign = number >= 0; + return (sign ? (forceSign ? '+' : '') : '-') + + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; + } + + var formattingTokens = /(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g; + + var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g; + + var formatFunctions = {}; + + var formatTokenFunctions = {}; + + // token: 'M' + // padded: ['MM', 2] + // ordinal: 'Mo' + // callback: function () { this.month() + 1 } + function addFormatToken (token, padded, ordinal, callback) { + var func = callback; + if (typeof callback === 'string') { + func = function () { + return this[callback](); + }; + } + if (token) { + formatTokenFunctions[token] = func; + } + if (padded) { + formatTokenFunctions[padded[0]] = function () { + return zeroFill(func.apply(this, arguments), padded[1], padded[2]); + }; + } + if (ordinal) { + formatTokenFunctions[ordinal] = function () { + return this.localeData().ordinal(func.apply(this, arguments), token); + }; + } + } + + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); + } + + function makeFormatFunction(format) { + var array = format.match(formattingTokens), i, length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = ''; + for (i = 0; i < length; i++) { + output += array[i] instanceof Function ? array[i].call(mom, format) : array[i]; + } + return output; + }; + } + + // format date using native date object + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format); + + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; + } + + var match1 = /\d/; // 0 - 9 + var match2 = /\d\d/; // 00 - 99 + var match3 = /\d{3}/; // 000 - 999 + var match4 = /\d{4}/; // 0000 - 9999 + var match6 = /[+-]?\d{6}/; // -999999 - 999999 + var match1to2 = /\d\d?/; // 0 - 99 + var match1to3 = /\d{1,3}/; // 0 - 999 + var match1to4 = /\d{1,4}/; // 0 - 9999 + var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999 + + var matchUnsigned = /\d+/; // 0 - inf + var matchSigned = /[+-]?\d+/; // -inf - inf + + var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z + + var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123 + + // any word (or two) characters or numbers including two/three word month in arabic. + var matchWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i; + + var regexes = {}; + + function isFunction (sth) { + // https://github.com/moment/moment/issues/2325 + return typeof sth === 'function' && + Object.prototype.toString.call(sth) === '[object Function]'; + } + + + function addRegexToken (token, regex, strictRegex) { + regexes[token] = isFunction(regex) ? regex : function (isStrict) { + return (isStrict && strictRegex) ? strictRegex : regex; + }; + } + + function getParseRegexForToken (token, config) { + if (!hasOwnProp(regexes, token)) { + return new RegExp(unescapeFormat(token)); + } + + return regexes[token](config._strict, config._locale); + } + + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function unescapeFormat(s) { + return s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + }).replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + var tokens = {}; + + function addParseToken (token, callback) { + var i, func = callback; + if (typeof token === 'string') { + token = [token]; + } + if (typeof callback === 'number') { + func = function (input, array) { + array[callback] = toInt(input); + }; + } + for (i = 0; i < token.length; i++) { + tokens[token[i]] = func; + } + } + + function addWeekParseToken (token, callback) { + addParseToken(token, function (input, array, config, token) { + config._w = config._w || {}; + callback(input, config._w, config, token); + }); + } + + function addTimeToArrayFromToken(token, input, config) { + if (input != null && hasOwnProp(tokens, token)) { + tokens[token](input, config._a, config, token); + } + } + + var YEAR = 0; + var MONTH = 1; + var DATE = 2; + var HOUR = 3; + var MINUTE = 4; + var SECOND = 5; + var MILLISECOND = 6; + + function daysInMonth(year, month) { + return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); + } + + // FORMATTING + + addFormatToken('M', ['MM', 2], 'Mo', function () { + return this.month() + 1; + }); + + addFormatToken('MMM', 0, 0, function (format) { + return this.localeData().monthsShort(this, format); + }); + + addFormatToken('MMMM', 0, 0, function (format) { + return this.localeData().months(this, format); + }); + + // ALIASES + + addUnitAlias('month', 'M'); + + // PARSING + + addRegexToken('M', match1to2); + addRegexToken('MM', match1to2, match2); + addRegexToken('MMM', matchWord); + addRegexToken('MMMM', matchWord); + + addParseToken(['M', 'MM'], function (input, array) { + array[MONTH] = toInt(input) - 1; + }); + + addParseToken(['MMM', 'MMMM'], function (input, array, config, token) { + var month = config._locale.monthsParse(input, token, config._strict); + // if we didn't find a month name, mark the date as invalid. + if (month != null) { + array[MONTH] = month; + } else { + getParsingFlags(config).invalidMonth = input; + } + }); + + // LOCALES + + var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'); + function localeMonths (m) { + return this._months[m.month()]; + } + + var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'); + function localeMonthsShort (m) { + return this._monthsShort[m.month()]; + } + + function localeMonthsParse (monthName, format, strict) { + var i, mom, regex; + + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = create_utc__createUTC([2000, i]); + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); + this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); + } + if (!strict && !this._monthsParse[i]) { + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { + return i; + } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } + } + + // MOMENTS + + function setMonth (mom, value) { + var dayOfMonth; + + // TODO: Move this out of here! + if (typeof value === 'string') { + value = mom.localeData().monthsParse(value); + // TODO: Another silent failure? + if (typeof value !== 'number') { + return mom; + } + } + + dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; + } + + function getSetMonth (value) { + if (value != null) { + setMonth(this, value); + utils_hooks__hooks.updateOffset(this, true); + return this; + } else { + return get_set__get(this, 'Month'); + } + } + + function getDaysInMonth () { + return daysInMonth(this.year(), this.month()); + } + + function checkOverflow (m) { + var overflow; + var a = m._a; + + if (a && getParsingFlags(m).overflow === -2) { + overflow = + a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : + a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : + a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR : + a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : + a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : + a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : + -1; + + if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + getParsingFlags(m).overflow = overflow; + } + + return m; + } + + function warn(msg) { + if (utils_hooks__hooks.suppressDeprecationWarnings === false && typeof console !== 'undefined' && console.warn) { + console.warn('Deprecation warning: ' + msg); + } + } + + function deprecate(msg, fn) { + var firstTime = true; + + return extend(function () { + if (firstTime) { + warn(msg + '\n' + (new Error()).stack); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } + + var deprecations = {}; + + function deprecateSimple(name, msg) { + if (!deprecations[name]) { + warn(msg); + deprecations[name] = true; + } + } + + utils_hooks__hooks.suppressDeprecationWarnings = false; + + var from_string__isoRegex = /^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + + var isoDates = [ + ['YYYYYY-MM-DD', /[+-]\d{6}-\d{2}-\d{2}/], + ['YYYY-MM-DD', /\d{4}-\d{2}-\d{2}/], + ['GGGG-[W]WW-E', /\d{4}-W\d{2}-\d/], + ['GGGG-[W]WW', /\d{4}-W\d{2}/], + ['YYYY-DDD', /\d{4}-\d{3}/] + ]; + + // iso time formats and regexes + var isoTimes = [ + ['HH:mm:ss.SSSS', /(T| )\d\d:\d\d:\d\d\.\d+/], + ['HH:mm:ss', /(T| )\d\d:\d\d:\d\d/], + ['HH:mm', /(T| )\d\d:\d\d/], + ['HH', /(T| )\d\d/] + ]; + + var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i; + + // date from iso format + function configFromISO(config) { + var i, l, + string = config._i, + match = from_string__isoRegex.exec(string); + + if (match) { + getParsingFlags(config).iso = true; + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(string)) { + config._f = isoDates[i][0]; + break; + } + } + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(string)) { + // match[6] should be 'T' or space + config._f += (match[6] || ' ') + isoTimes[i][0]; + break; + } + } + if (string.match(matchOffset)) { + config._f += 'Z'; + } + configFromStringAndFormat(config); + } else { + config._isValid = false; + } + } + + // date from iso format or fallback + function configFromString(config) { + var matched = aspNetJsonRegex.exec(config._i); + + if (matched !== null) { + config._d = new Date(+matched[1]); + return; + } + + configFromISO(config); + if (config._isValid === false) { + delete config._isValid; + utils_hooks__hooks.createFromInputFallback(config); + } + } + + utils_hooks__hooks.createFromInputFallback = deprecate( + 'moment construction falls back to js Date. This is ' + + 'discouraged and will be removed in upcoming major ' + + 'release. Please refer to ' + + 'https://github.com/moment/moment/issues/1407 for more info.', + function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + } + ); + + function createDate (y, m, d, h, M, s, ms) { + //can't just apply() to create a date: + //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply + var date = new Date(y, m, d, h, M, s, ms); + + //the date constructor doesn't accept years < 1970 + if (y < 1970) { + date.setFullYear(y); + } + return date; + } + + function createUTCDate (y) { + var date = new Date(Date.UTC.apply(null, arguments)); + if (y < 1970) { + date.setUTCFullYear(y); + } + return date; + } + + addFormatToken(0, ['YY', 2], 0, function () { + return this.year() % 100; + }); + + addFormatToken(0, ['YYYY', 4], 0, 'year'); + addFormatToken(0, ['YYYYY', 5], 0, 'year'); + addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); + + // ALIASES + + addUnitAlias('year', 'y'); + + // PARSING + + addRegexToken('Y', matchSigned); + addRegexToken('YY', match1to2, match2); + addRegexToken('YYYY', match1to4, match4); + addRegexToken('YYYYY', match1to6, match6); + addRegexToken('YYYYYY', match1to6, match6); + + addParseToken(['YYYYY', 'YYYYYY'], YEAR); + addParseToken('YYYY', function (input, array) { + array[YEAR] = input.length === 2 ? utils_hooks__hooks.parseTwoDigitYear(input) : toInt(input); + }); + addParseToken('YY', function (input, array) { + array[YEAR] = utils_hooks__hooks.parseTwoDigitYear(input); + }); + + // HELPERS + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } + + // HOOKS + + utils_hooks__hooks.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; + + // MOMENTS + + var getSetYear = makeGetSet('FullYear', false); + + function getIsLeapYear () { + return isLeapYear(this.year()); + } + + addFormatToken('w', ['ww', 2], 'wo', 'week'); + addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); + + // ALIASES + + addUnitAlias('week', 'w'); + addUnitAlias('isoWeek', 'W'); + + // PARSING + + addRegexToken('w', match1to2); + addRegexToken('ww', match1to2, match2); + addRegexToken('W', match1to2); + addRegexToken('WW', match1to2, match2); + + addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) { + week[token.substr(0, 1)] = toInt(input); + }); + + // HELPERS + + // firstDayOfWeek 0 = sun, 6 = sat + // the day of the week that starts the week + // (usually sunday or monday) + // firstDayOfWeekOfYear 0 = sun, 6 = sat + // the first week is the week that contains the first + // of this day of the week + // (eg. ISO weeks use thursday (4)) + function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { + var end = firstDayOfWeekOfYear - firstDayOfWeek, + daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), + adjustedMoment; + + + if (daysToDayOfWeek > end) { + daysToDayOfWeek -= 7; + } + + if (daysToDayOfWeek < end - 7) { + daysToDayOfWeek += 7; + } + + adjustedMoment = local__createLocal(mom).add(daysToDayOfWeek, 'd'); + return { + week: Math.ceil(adjustedMoment.dayOfYear() / 7), + year: adjustedMoment.year() + }; + } + + // LOCALES + + function localeWeek (mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + } + + var defaultLocaleWeek = { + dow : 0, // Sunday is the first day of the week. + doy : 6 // The week that contains Jan 1st is the first week of the year. + }; + + function localeFirstDayOfWeek () { + return this._week.dow; + } + + function localeFirstDayOfYear () { + return this._week.doy; + } + + // MOMENTS + + function getSetWeek (input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + } + + function getSetISOWeek (input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + } + + addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); + + // ALIASES + + addUnitAlias('dayOfYear', 'DDD'); + + // PARSING + + addRegexToken('DDD', match1to3); + addRegexToken('DDDD', match3); + addParseToken(['DDD', 'DDDD'], function (input, array, config) { + config._dayOfYear = toInt(input); + }); + + // HELPERS + + //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { + var week1Jan = 6 + firstDayOfWeek - firstDayOfWeekOfYear, janX = createUTCDate(year, 0, 1 + week1Jan), d = janX.getUTCDay(), dayOfYear; + if (d < firstDayOfWeek) { + d += 7; + } + + weekday = weekday != null ? 1 * weekday : firstDayOfWeek; + + dayOfYear = 1 + week1Jan + 7 * (week - 1) - d + weekday; + + return { + year: dayOfYear > 0 ? year : year - 1, + dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear + }; + } + + // MOMENTS + + function getSetDayOfYear (input) { + var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); + } + + // Pick the first defined of two or three arguments. + function defaults(a, b, c) { + if (a != null) { + return a; + } + if (b != null) { + return b; + } + return c; + } + + function currentDateArray(config) { + var now = new Date(); + if (config._useUTC) { + return [now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate()]; + } + return [now.getFullYear(), now.getMonth(), now.getDate()]; + } + + // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + function configFromArray (config) { + var i, date, input = [], currentDate, yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); + + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } + + //if the day of the year is set, figure out what it is + if (config._dayOfYear) { + yearToUse = defaults(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse)) { + getParsingFlags(config)._overflowDayOfYear = true; + } + + date = createUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } + + // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } + + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; + } + + // Check for 24:00:00.000 + if (config._a[HOUR] === 24 && + config._a[MINUTE] === 0 && + config._a[SECOND] === 0 && + config._a[MILLISECOND] === 0) { + config._nextDay = true; + config._a[HOUR] = 0; + } + + config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input); + // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } + + if (config._nextDay) { + config._a[HOUR] = 24; + } + } + + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp; + + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; + + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(local__createLocal(), 1, 4).year); + week = defaults(w.W, 1); + weekday = defaults(w.E, 1); + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + + weekYear = defaults(w.gg, config._a[YEAR], weekOfYear(local__createLocal(), dow, doy).year); + week = defaults(w.w, 1); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + if (weekday < dow) { + ++week; + } + } else if (w.e != null) { + // local weekday -- counting starts from begining of week + weekday = w.e + dow; + } else { + // default to begining of week + weekday = dow; + } + } + temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow); + + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } + + utils_hooks__hooks.ISO_8601 = function () {}; + + // date from string and format string + function configFromStringAndFormat(config) { + // TODO: Move this to another part of the creation flow to prevent circular deps + if (config._f === utils_hooks__hooks.ISO_8601) { + configFromISO(config); + return; + } + + config._a = []; + getParsingFlags(config).empty = true; + + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var string = '' + config._i, + i, parsedInput, tokens, token, skipped, + stringLength = string.length, + totalParsedInputLength = 0; + + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + getParsingFlags(config).unusedInput.push(skipped); + } + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + getParsingFlags(config).empty = false; + } + else { + getParsingFlags(config).unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } + else if (config._strict && !parsedInput) { + getParsingFlags(config).unusedTokens.push(token); + } + } + + // add remaining unparsed input length to the string + getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength; + if (string.length > 0) { + getParsingFlags(config).unusedInput.push(string); + } + + // clear _12h flag if hour is <= 12 + if (getParsingFlags(config).bigHour === true && + config._a[HOUR] <= 12 && + config._a[HOUR] > 0) { + getParsingFlags(config).bigHour = undefined; + } + // handle meridiem + config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem); + + configFromArray(config); + checkOverflow(config); + } + + + function meridiemFixWrap (locale, hour, meridiem) { + var isPm; + + if (meridiem == null) { + // nothing to do + return hour; + } + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + if (isPm && hour < 12) { + hour += 12; + } + if (!isPm && hour === 12) { + hour = 0; + } + return hour; + } else { + // this is not supposed to happen + return hour; + } + } + + function configFromStringAndArray(config) { + var tempConfig, + bestMoment, + + scoreToBeat, + i, + currentScore; + + if (config._f.length === 0) { + getParsingFlags(config).invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + tempConfig._f = config._f[i]; + configFromStringAndFormat(tempConfig); + + if (!valid__isValid(tempConfig)) { + continue; + } + + // if there is any input that was not parsed add a penalty for that format + currentScore += getParsingFlags(tempConfig).charsLeftOver; + + //or tokens + currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10; + + getParsingFlags(tempConfig).score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); + } + + function configFromObject(config) { + if (config._d) { + return; + } + + var i = normalizeObjectUnits(config._i); + config._a = [i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond]; + + configFromArray(config); + } + + function createFromConfig (config) { + var res = new Moment(checkOverflow(prepareConfig(config))); + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; + } + + function prepareConfig (config) { + var input = config._i, + format = config._f; + + config._locale = config._locale || locale_locales__getLocale(config._l); + + if (input === null || (format === undefined && input === '')) { + return valid__createInvalid({nullInput: true}); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (isMoment(input)) { + return new Moment(checkOverflow(input)); + } else if (isArray(format)) { + configFromStringAndArray(config); + } else if (format) { + configFromStringAndFormat(config); + } else if (isDate(input)) { + config._d = input; + } else { + configFromInput(config); + } + + return config; + } + + function configFromInput(config) { + var input = config._i; + if (input === undefined) { + config._d = new Date(); + } else if (isDate(input)) { + config._d = new Date(+input); + } else if (typeof input === 'string') { + configFromString(config); + } else if (isArray(input)) { + config._a = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + configFromArray(config); + } else if (typeof(input) === 'object') { + configFromObject(config); + } else if (typeof(input) === 'number') { + // from milliseconds + config._d = new Date(input); + } else { + utils_hooks__hooks.createFromInputFallback(config); + } + } + + function createLocalOrUTC (input, format, locale, strict, isUTC) { + var c = {}; + + if (typeof(locale) === 'boolean') { + strict = locale; + locale = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c._isAMomentObject = true; + c._useUTC = c._isUTC = isUTC; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + + return createFromConfig(c); + } + + function local__createLocal (input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, false); + } + + var prototypeMin = deprecate( + 'moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548', + function () { + var other = local__createLocal.apply(null, arguments); + return other < this ? this : other; + } + ); + + var prototypeMax = deprecate( + 'moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548', + function () { + var other = local__createLocal.apply(null, arguments); + return other > this ? this : other; + } + ); + + // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + function pickBy(fn, moments) { + var res, i; + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + if (!moments.length) { + return local__createLocal(); + } + res = moments[0]; + for (i = 1; i < moments.length; ++i) { + if (!moments[i].isValid() || moments[i][fn](res)) { + res = moments[i]; + } + } + return res; + } + + // TODO: Use [].sort instead? + function min () { + var args = [].slice.call(arguments, 0); + + return pickBy('isBefore', args); + } + + function max () { + var args = [].slice.call(arguments, 0); + + return pickBy('isAfter', args); + } + + function Duration (duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + + // representation for dateAddRemove + this._milliseconds = +milliseconds + + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 36e5; // 1000 * 60 * 60 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + this._days = +days + + weeks * 7; + // It is impossible translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + this._months = +months + + quarters * 3 + + years * 12; + + this._data = {}; + + this._locale = locale_locales__getLocale(); + + this._bubble(); + } + + function isDuration (obj) { + return obj instanceof Duration; + } + + function offset (token, separator) { + addFormatToken(token, 0, 0, function () { + var offset = this.utcOffset(); + var sign = '+'; + if (offset < 0) { + offset = -offset; + sign = '-'; + } + return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2); + }); + } + + offset('Z', ':'); + offset('ZZ', ''); + + // PARSING + + addRegexToken('Z', matchOffset); + addRegexToken('ZZ', matchOffset); + addParseToken(['Z', 'ZZ'], function (input, array, config) { + config._useUTC = true; + config._tzm = offsetFromString(input); + }); + + // HELPERS + + // timezone chunker + // '+10:00' > ['10', '00'] + // '-1530' > ['-15', '30'] + var chunkOffset = /([\+\-]|\d\d)/gi; + + function offsetFromString(string) { + var matches = ((string || '').match(matchOffset) || []); + var chunk = matches[matches.length - 1] || []; + var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0]; + var minutes = +(parts[1] * 60) + toInt(parts[2]); + + return parts[0] === '+' ? minutes : -minutes; + } + + // Return a moment from input, that is local/utc/zone equivalent to model. + function cloneWithOffset(input, model) { + var res, diff; + if (model._isUTC) { + res = model.clone(); + diff = (isMoment(input) || isDate(input) ? +input : +local__createLocal(input)) - (+res); + // Use low-level api, because this fn is low-level api. + res._d.setTime(+res._d + diff); + utils_hooks__hooks.updateOffset(res, false); + return res; + } else { + return local__createLocal(input).local(); + } + } + + function getDateOffset (m) { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(m._d.getTimezoneOffset() / 15) * 15; + } + + // HOOKS + + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + utils_hooks__hooks.updateOffset = function () {}; + + // MOMENTS + + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset + // +0200, so we adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + function getSetOffset (input, keepLocalTime) { + var offset = this._offset || 0, + localAdjust; + if (input != null) { + if (typeof input === 'string') { + input = offsetFromString(input); + } + if (Math.abs(input) < 16) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = getDateOffset(this); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + add_subtract__addSubtract(this, create__createDuration(input - offset, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + utils_hooks__hooks.updateOffset(this, true); + this._changeInProgress = null; + } + } + return this; + } else { + return this._isUTC ? offset : getDateOffset(this); + } + } + + function getSetZone (input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } + + this.utcOffset(input, keepLocalTime); + + return this; + } else { + return -this.utcOffset(); + } + } + + function setOffsetToUTC (keepLocalTime) { + return this.utcOffset(0, keepLocalTime); + } + + function setOffsetToLocal (keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.subtract(getDateOffset(this), 'm'); + } + } + return this; + } + + function setOffsetToParsedOffset () { + if (this._tzm) { + this.utcOffset(this._tzm); + } else if (typeof this._i === 'string') { + this.utcOffset(offsetFromString(this._i)); + } + return this; + } + + function hasAlignedHourOffset (input) { + input = input ? local__createLocal(input).utcOffset() : 0; + + return (this.utcOffset() - input) % 60 === 0; + } + + function isDaylightSavingTime () { + return ( + this.utcOffset() > this.clone().month(0).utcOffset() || + this.utcOffset() > this.clone().month(5).utcOffset() + ); + } + + function isDaylightSavingTimeShifted () { + if (typeof this._isDSTShifted !== 'undefined') { + return this._isDSTShifted; + } + + var c = {}; + + copyConfig(c, this); + c = prepareConfig(c); + + if (c._a) { + var other = c._isUTC ? create_utc__createUTC(c._a) : local__createLocal(c._a); + this._isDSTShifted = this.isValid() && + compareArrays(c._a, other.toArray()) > 0; + } else { + this._isDSTShifted = false; + } + + return this._isDSTShifted; + } + + function isLocal () { + return !this._isUTC; + } + + function isUtcOffset () { + return this._isUTC; + } + + function isUtc () { + return this._isUTC && this._offset === 0; + } + + var aspNetRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/; + + // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + var create__isoRegex = /^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/; + + function create__createDuration (input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + diffRes; + + if (isDuration(input)) { + duration = { + ms : input._milliseconds, + d : input._days, + M : input._months + }; + } else if (typeof input === 'number') { + duration = {}; + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + duration = { + y : 0, + d : toInt(match[DATE]) * sign, + h : toInt(match[HOUR]) * sign, + m : toInt(match[MINUTE]) * sign, + s : toInt(match[SECOND]) * sign, + ms : toInt(match[MILLISECOND]) * sign + }; + } else if (!!(match = create__isoRegex.exec(input))) { + sign = (match[1] === '-') ? -1 : 1; + duration = { + y : parseIso(match[2], sign), + M : parseIso(match[3], sign), + d : parseIso(match[4], sign), + h : parseIso(match[5], sign), + m : parseIso(match[6], sign), + s : parseIso(match[7], sign), + w : parseIso(match[8], sign) + }; + } else if (duration == null) {// checks for null or undefined + duration = {}; + } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(local__createLocal(duration.from), local__createLocal(duration.to)); + + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; + } + + create__createDuration.fn = Duration.prototype; + + function parseIso (inp, sign) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); + // apply sign while we're at it + return (isNaN(res) ? 0 : res) * sign; + } + + function positiveMomentsDifference(base, other) { + var res = {milliseconds: 0, months: 0}; + + res.months = other.month() - base.month() + + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +(base.clone().add(res.months, 'M')); + + return res; + } + + function momentsDifference(base, other) { + var res; + other = cloneWithOffset(other, base); + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } + + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period).'); + tmp = val; val = period; period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = create__createDuration(val, period); + add_subtract__addSubtract(this, dur, direction); + return this; + }; + } + + function add_subtract__addSubtract (mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = duration._days, + months = duration._months; + updateOffset = updateOffset == null ? true : updateOffset; + + if (milliseconds) { + mom._d.setTime(+mom._d + milliseconds * isAdding); + } + if (days) { + get_set__set(mom, 'Date', get_set__get(mom, 'Date') + days * isAdding); + } + if (months) { + setMonth(mom, get_set__get(mom, 'Month') + months * isAdding); + } + if (updateOffset) { + utils_hooks__hooks.updateOffset(mom, days || months); + } + } + + var add_subtract__add = createAdder(1, 'add'); + var add_subtract__subtract = createAdder(-1, 'subtract'); + + function moment_calendar__calendar (time, formats) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're local/utc/offset or not. + var now = time || local__createLocal(), + sod = cloneWithOffset(now, this).startOf('day'), + diff = this.diff(sod, 'days', true), + format = diff < -6 ? 'sameElse' : + diff < -1 ? 'lastWeek' : + diff < 0 ? 'lastDay' : + diff < 1 ? 'sameDay' : + diff < 2 ? 'nextDay' : + diff < 7 ? 'nextWeek' : 'sameElse'; + return this.format(formats && formats[format] || this.localeData().calendar(format, this, local__createLocal(now))); + } + + function clone () { + return new Moment(this); + } + + function isAfter (input, units) { + var inputMs; + units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); + if (units === 'millisecond') { + input = isMoment(input) ? input : local__createLocal(input); + return +this > +input; + } else { + inputMs = isMoment(input) ? +input : +local__createLocal(input); + return inputMs < +this.clone().startOf(units); + } + } + + function isBefore (input, units) { + var inputMs; + units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); + if (units === 'millisecond') { + input = isMoment(input) ? input : local__createLocal(input); + return +this < +input; + } else { + inputMs = isMoment(input) ? +input : +local__createLocal(input); + return +this.clone().endOf(units) < inputMs; + } + } + + function isBetween (from, to, units) { + return this.isAfter(from, units) && this.isBefore(to, units); + } + + function isSame (input, units) { + var inputMs; + units = normalizeUnits(units || 'millisecond'); + if (units === 'millisecond') { + input = isMoment(input) ? input : local__createLocal(input); + return +this === +input; + } else { + inputMs = +local__createLocal(input); + return +(this.clone().startOf(units)) <= inputMs && inputMs <= +(this.clone().endOf(units)); + } + } + + function diff (input, units, asFloat) { + var that = cloneWithOffset(input, this), + zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4, + delta, output; + + units = normalizeUnits(units); + + if (units === 'year' || units === 'month' || units === 'quarter') { + output = monthDiff(this, that); + if (units === 'quarter') { + output = output / 3; + } else if (units === 'year') { + output = output / 12; + } + } else { + delta = this - that; + output = units === 'second' ? delta / 1e3 : // 1000 + units === 'minute' ? delta / 6e4 : // 1000 * 60 + units === 'hour' ? delta / 36e5 : // 1000 * 60 * 60 + units === 'day' ? (delta - zoneDelta) / 864e5 : // 1000 * 60 * 60 * 24, negate dst + units === 'week' ? (delta - zoneDelta) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst + delta; + } + return asFloat ? output : absFloor(output); + } + + function monthDiff (a, b) { + // difference in months + var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, adjust; + + if (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor2 - anchor); + } + + return -(wholeMonthDiff + adjust); + } + + utils_hooks__hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ'; + + function toString () { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + } + + function moment_format__toISOString () { + var m = this.clone().utc(); + if (0 < m.year() && m.year() <= 9999) { + if ('function' === typeof Date.prototype.toISOString) { + // native implementation is ~50x faster, use it when we can + return this.toDate().toISOString(); + } else { + return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } + } else { + return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); + } + } + + function format (inputString) { + var output = formatMoment(this, inputString || utils_hooks__hooks.defaultFormat); + return this.localeData().postformat(output); + } + + function from (time, withoutSuffix) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + return create__createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); + } + + function fromNow (withoutSuffix) { + return this.from(local__createLocal(), withoutSuffix); + } + + function to (time, withoutSuffix) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + return create__createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix); + } + + function toNow (withoutSuffix) { + return this.to(local__createLocal(), withoutSuffix); + } + + function locale (key) { + var newLocaleData; + + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = locale_locales__getLocale(key); + if (newLocaleData != null) { + this._locale = newLocaleData; + } + return this; + } + } + + var lang = deprecate( + 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + } + ); + + function localeData () { + return this._locale; + } + + function startOf (units) { + units = normalizeUnits(units); + // the following switch intentionally omits break keywords + // to utilize falling through the cases. + switch (units) { + case 'year': + this.month(0); + /* falls through */ + case 'quarter': + case 'month': + this.date(1); + /* falls through */ + case 'week': + case 'isoWeek': + case 'day': + this.hours(0); + /* falls through */ + case 'hour': + this.minutes(0); + /* falls through */ + case 'minute': + this.seconds(0); + /* falls through */ + case 'second': + this.milliseconds(0); + } + + // weeks are a special case + if (units === 'week') { + this.weekday(0); + } + if (units === 'isoWeek') { + this.isoWeekday(1); + } + + // quarters are also special + if (units === 'quarter') { + this.month(Math.floor(this.month() / 3) * 3); + } + + return this; + } + + function endOf (units) { + units = normalizeUnits(units); + if (units === undefined || units === 'millisecond') { + return this; + } + return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); + } + + function to_type__valueOf () { + return +this._d - ((this._offset || 0) * 60000); + } + + function unix () { + return Math.floor(+this / 1000); + } + + function toDate () { + return this._offset ? new Date(+this) : this._d; + } + + function toArray () { + var m = this; + return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()]; + } + + function toObject () { + var m = this; + return { + years: m.year(), + months: m.month(), + date: m.date(), + hours: m.hours(), + minutes: m.minutes(), + seconds: m.seconds(), + milliseconds: m.milliseconds() + }; + } + + function moment_valid__isValid () { + return valid__isValid(this); + } + + function parsingFlags () { + return extend({}, getParsingFlags(this)); + } + + function invalidAt () { + return getParsingFlags(this).overflow; + } + + addFormatToken(0, ['gg', 2], 0, function () { + return this.weekYear() % 100; + }); + + addFormatToken(0, ['GG', 2], 0, function () { + return this.isoWeekYear() % 100; + }); + + function addWeekYearFormatToken (token, getter) { + addFormatToken(0, [token, token.length], 0, getter); + } + + addWeekYearFormatToken('gggg', 'weekYear'); + addWeekYearFormatToken('ggggg', 'weekYear'); + addWeekYearFormatToken('GGGG', 'isoWeekYear'); + addWeekYearFormatToken('GGGGG', 'isoWeekYear'); + + // ALIASES + + addUnitAlias('weekYear', 'gg'); + addUnitAlias('isoWeekYear', 'GG'); + + // PARSING + + addRegexToken('G', matchSigned); + addRegexToken('g', matchSigned); + addRegexToken('GG', match1to2, match2); + addRegexToken('gg', match1to2, match2); + addRegexToken('GGGG', match1to4, match4); + addRegexToken('gggg', match1to4, match4); + addRegexToken('GGGGG', match1to6, match6); + addRegexToken('ggggg', match1to6, match6); + + addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) { + week[token.substr(0, 2)] = toInt(input); + }); + + addWeekParseToken(['gg', 'GG'], function (input, week, config, token) { + week[token] = utils_hooks__hooks.parseTwoDigitYear(input); + }); + + // HELPERS + + function weeksInYear(year, dow, doy) { + return weekOfYear(local__createLocal([year, 11, 31 + dow - doy]), dow, doy).week; + } + + // MOMENTS + + function getSetWeekYear (input) { + var year = weekOfYear(this, this.localeData()._week.dow, this.localeData()._week.doy).year; + return input == null ? year : this.add((input - year), 'y'); + } + + function getSetISOWeekYear (input) { + var year = weekOfYear(this, 1, 4).year; + return input == null ? year : this.add((input - year), 'y'); + } + + function getISOWeeksInYear () { + return weeksInYear(this.year(), 1, 4); + } + + function getWeeksInYear () { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + } + + addFormatToken('Q', 0, 0, 'quarter'); + + // ALIASES + + addUnitAlias('quarter', 'Q'); + + // PARSING + + addRegexToken('Q', match1); + addParseToken('Q', function (input, array) { + array[MONTH] = (toInt(input) - 1) * 3; + }); + + // MOMENTS + + function getSetQuarter (input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + } + + addFormatToken('D', ['DD', 2], 'Do', 'date'); + + // ALIASES + + addUnitAlias('date', 'D'); + + // PARSING + + addRegexToken('D', match1to2); + addRegexToken('DD', match1to2, match2); + addRegexToken('Do', function (isStrict, locale) { + return isStrict ? locale._ordinalParse : locale._ordinalParseLenient; + }); + + addParseToken(['D', 'DD'], DATE); + addParseToken('Do', function (input, array) { + array[DATE] = toInt(input.match(match1to2)[0], 10); + }); + + // MOMENTS + + var getSetDayOfMonth = makeGetSet('Date', true); + + addFormatToken('d', 0, 'do', 'day'); + + addFormatToken('dd', 0, 0, function (format) { + return this.localeData().weekdaysMin(this, format); + }); + + addFormatToken('ddd', 0, 0, function (format) { + return this.localeData().weekdaysShort(this, format); + }); + + addFormatToken('dddd', 0, 0, function (format) { + return this.localeData().weekdays(this, format); + }); + + addFormatToken('e', 0, 0, 'weekday'); + addFormatToken('E', 0, 0, 'isoWeekday'); + + // ALIASES + + addUnitAlias('day', 'd'); + addUnitAlias('weekday', 'e'); + addUnitAlias('isoWeekday', 'E'); + + // PARSING + + addRegexToken('d', match1to2); + addRegexToken('e', match1to2); + addRegexToken('E', match1to2); + addRegexToken('dd', matchWord); + addRegexToken('ddd', matchWord); + addRegexToken('dddd', matchWord); + + addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config) { + var weekday = config._locale.weekdaysParse(input); + // if we didn't get a weekday name, mark the date as invalid + if (weekday != null) { + week.d = weekday; + } else { + getParsingFlags(config).invalidWeekday = input; + } + }); + + addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) { + week[token] = toInt(input); + }); + + // HELPERS + + function parseWeekday(input, locale) { + if (typeof input !== 'string') { + return input; + } + + if (!isNaN(input)) { + return parseInt(input, 10); + } + + input = locale.weekdaysParse(input); + if (typeof input === 'number') { + return input; + } + + return null; + } + + // LOCALES + + var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'); + function localeWeekdays (m) { + return this._weekdays[m.day()]; + } + + var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'); + function localeWeekdaysShort (m) { + return this._weekdaysShort[m.day()]; + } + + var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'); + function localeWeekdaysMin (m) { + return this._weekdaysMin[m.day()]; + } + + function localeWeekdaysParse (weekdayName) { + var i, mom, regex; + + this._weekdaysParse = this._weekdaysParse || []; + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + if (!this._weekdaysParse[i]) { + mom = local__createLocal([2000, 1]).day(i); + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if (this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + } + + // MOMENTS + + function getSetDayOfWeek (input) { + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + } + + function getSetLocaleDayOfWeek (input) { + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + } + + function getSetISODayOfWeek (input) { + // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + return input == null ? this.day() || 7 : this.day(this.day() % 7 ? input : input - 7); + } + + addFormatToken('H', ['HH', 2], 0, 'hour'); + addFormatToken('h', ['hh', 2], 0, function () { + return this.hours() % 12 || 12; + }); + + function meridiem (token, lowercase) { + addFormatToken(token, 0, 0, function () { + return this.localeData().meridiem(this.hours(), this.minutes(), lowercase); + }); + } + + meridiem('a', true); + meridiem('A', false); + + // ALIASES + + addUnitAlias('hour', 'h'); + + // PARSING + + function matchMeridiem (isStrict, locale) { + return locale._meridiemParse; + } + + addRegexToken('a', matchMeridiem); + addRegexToken('A', matchMeridiem); + addRegexToken('H', match1to2); + addRegexToken('h', match1to2); + addRegexToken('HH', match1to2, match2); + addRegexToken('hh', match1to2, match2); + + addParseToken(['H', 'HH'], HOUR); + addParseToken(['a', 'A'], function (input, array, config) { + config._isPm = config._locale.isPM(input); + config._meridiem = input; + }); + addParseToken(['h', 'hh'], function (input, array, config) { + array[HOUR] = toInt(input); + getParsingFlags(config).bigHour = true; + }); + + // LOCALES + + function localeIsPM (input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return ((input + '').toLowerCase().charAt(0) === 'p'); + } + + var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i; + function localeMeridiem (hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + } + + + // MOMENTS + + // Setting the hour should keep the time, because the user explicitly + // specified which hour he wants. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + var getSetHour = makeGetSet('Hours', true); + + addFormatToken('m', ['mm', 2], 0, 'minute'); + + // ALIASES + + addUnitAlias('minute', 'm'); + + // PARSING + + addRegexToken('m', match1to2); + addRegexToken('mm', match1to2, match2); + addParseToken(['m', 'mm'], MINUTE); + + // MOMENTS + + var getSetMinute = makeGetSet('Minutes', false); + + addFormatToken('s', ['ss', 2], 0, 'second'); + + // ALIASES + + addUnitAlias('second', 's'); + + // PARSING + + addRegexToken('s', match1to2); + addRegexToken('ss', match1to2, match2); + addParseToken(['s', 'ss'], SECOND); + + // MOMENTS + + var getSetSecond = makeGetSet('Seconds', false); + + addFormatToken('S', 0, 0, function () { + return ~~(this.millisecond() / 100); + }); + + addFormatToken(0, ['SS', 2], 0, function () { + return ~~(this.millisecond() / 10); + }); + + addFormatToken(0, ['SSS', 3], 0, 'millisecond'); + addFormatToken(0, ['SSSS', 4], 0, function () { + return this.millisecond() * 10; + }); + addFormatToken(0, ['SSSSS', 5], 0, function () { + return this.millisecond() * 100; + }); + addFormatToken(0, ['SSSSSS', 6], 0, function () { + return this.millisecond() * 1000; + }); + addFormatToken(0, ['SSSSSSS', 7], 0, function () { + return this.millisecond() * 10000; + }); + addFormatToken(0, ['SSSSSSSS', 8], 0, function () { + return this.millisecond() * 100000; + }); + addFormatToken(0, ['SSSSSSSSS', 9], 0, function () { + return this.millisecond() * 1000000; + }); + + + // ALIASES + + addUnitAlias('millisecond', 'ms'); + + // PARSING + + addRegexToken('S', match1to3, match1); + addRegexToken('SS', match1to3, match2); + addRegexToken('SSS', match1to3, match3); + + var token; + for (token = 'SSSS'; token.length <= 9; token += 'S') { + addRegexToken(token, matchUnsigned); + } + + function parseMs(input, array) { + array[MILLISECOND] = toInt(('0.' + input) * 1000); + } + + for (token = 'S'; token.length <= 9; token += 'S') { + addParseToken(token, parseMs); + } + // MOMENTS + + var getSetMillisecond = makeGetSet('Milliseconds', false); + + addFormatToken('z', 0, 0, 'zoneAbbr'); + addFormatToken('zz', 0, 0, 'zoneName'); + + // MOMENTS + + function getZoneAbbr () { + return this._isUTC ? 'UTC' : ''; + } + + function getZoneName () { + return this._isUTC ? 'Coordinated Universal Time' : ''; + } + + var momentPrototype__proto = Moment.prototype; + + momentPrototype__proto.add = add_subtract__add; + momentPrototype__proto.calendar = moment_calendar__calendar; + momentPrototype__proto.clone = clone; + momentPrototype__proto.diff = diff; + momentPrototype__proto.endOf = endOf; + momentPrototype__proto.format = format; + momentPrototype__proto.from = from; + momentPrototype__proto.fromNow = fromNow; + momentPrototype__proto.to = to; + momentPrototype__proto.toNow = toNow; + momentPrototype__proto.get = getSet; + momentPrototype__proto.invalidAt = invalidAt; + momentPrototype__proto.isAfter = isAfter; + momentPrototype__proto.isBefore = isBefore; + momentPrototype__proto.isBetween = isBetween; + momentPrototype__proto.isSame = isSame; + momentPrototype__proto.isValid = moment_valid__isValid; + momentPrototype__proto.lang = lang; + momentPrototype__proto.locale = locale; + momentPrototype__proto.localeData = localeData; + momentPrototype__proto.max = prototypeMax; + momentPrototype__proto.min = prototypeMin; + momentPrototype__proto.parsingFlags = parsingFlags; + momentPrototype__proto.set = getSet; + momentPrototype__proto.startOf = startOf; + momentPrototype__proto.subtract = add_subtract__subtract; + momentPrototype__proto.toArray = toArray; + momentPrototype__proto.toObject = toObject; + momentPrototype__proto.toDate = toDate; + momentPrototype__proto.toISOString = moment_format__toISOString; + momentPrototype__proto.toJSON = moment_format__toISOString; + momentPrototype__proto.toString = toString; + momentPrototype__proto.unix = unix; + momentPrototype__proto.valueOf = to_type__valueOf; + + // Year + momentPrototype__proto.year = getSetYear; + momentPrototype__proto.isLeapYear = getIsLeapYear; + + // Week Year + momentPrototype__proto.weekYear = getSetWeekYear; + momentPrototype__proto.isoWeekYear = getSetISOWeekYear; + + // Quarter + momentPrototype__proto.quarter = momentPrototype__proto.quarters = getSetQuarter; + + // Month + momentPrototype__proto.month = getSetMonth; + momentPrototype__proto.daysInMonth = getDaysInMonth; + + // Week + momentPrototype__proto.week = momentPrototype__proto.weeks = getSetWeek; + momentPrototype__proto.isoWeek = momentPrototype__proto.isoWeeks = getSetISOWeek; + momentPrototype__proto.weeksInYear = getWeeksInYear; + momentPrototype__proto.isoWeeksInYear = getISOWeeksInYear; + + // Day + momentPrototype__proto.date = getSetDayOfMonth; + momentPrototype__proto.day = momentPrototype__proto.days = getSetDayOfWeek; + momentPrototype__proto.weekday = getSetLocaleDayOfWeek; + momentPrototype__proto.isoWeekday = getSetISODayOfWeek; + momentPrototype__proto.dayOfYear = getSetDayOfYear; + + // Hour + momentPrototype__proto.hour = momentPrototype__proto.hours = getSetHour; + + // Minute + momentPrototype__proto.minute = momentPrototype__proto.minutes = getSetMinute; + + // Second + momentPrototype__proto.second = momentPrototype__proto.seconds = getSetSecond; + + // Millisecond + momentPrototype__proto.millisecond = momentPrototype__proto.milliseconds = getSetMillisecond; + + // Offset + momentPrototype__proto.utcOffset = getSetOffset; + momentPrototype__proto.utc = setOffsetToUTC; + momentPrototype__proto.local = setOffsetToLocal; + momentPrototype__proto.parseZone = setOffsetToParsedOffset; + momentPrototype__proto.hasAlignedHourOffset = hasAlignedHourOffset; + momentPrototype__proto.isDST = isDaylightSavingTime; + momentPrototype__proto.isDSTShifted = isDaylightSavingTimeShifted; + momentPrototype__proto.isLocal = isLocal; + momentPrototype__proto.isUtcOffset = isUtcOffset; + momentPrototype__proto.isUtc = isUtc; + momentPrototype__proto.isUTC = isUtc; + + // Timezone + momentPrototype__proto.zoneAbbr = getZoneAbbr; + momentPrototype__proto.zoneName = getZoneName; + + // Deprecations + momentPrototype__proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth); + momentPrototype__proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth); + momentPrototype__proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear); + momentPrototype__proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779', getSetZone); + + var momentPrototype = momentPrototype__proto; + + function moment__createUnix (input) { + return local__createLocal(input * 1000); + } + + function moment__createInZone () { + return local__createLocal.apply(null, arguments).parseZone(); + } + + var defaultCalendar = { + sameDay : '[Today at] LT', + nextDay : '[Tomorrow at] LT', + nextWeek : 'dddd [at] LT', + lastDay : '[Yesterday at] LT', + lastWeek : '[Last] dddd [at] LT', + sameElse : 'L' + }; + + function locale_calendar__calendar (key, mom, now) { + var output = this._calendar[key]; + return typeof output === 'function' ? output.call(mom, now) : output; + } + + var defaultLongDateFormat = { + LTS : 'h:mm:ss A', + LT : 'h:mm A', + L : 'MM/DD/YYYY', + LL : 'MMMM D, YYYY', + LLL : 'MMMM D, YYYY h:mm A', + LLLL : 'dddd, MMMM D, YYYY h:mm A' + }; + + function longDateFormat (key) { + var format = this._longDateFormat[key], + formatUpper = this._longDateFormat[key.toUpperCase()]; + + if (format || !formatUpper) { + return format; + } + + this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + + return this._longDateFormat[key]; + } + + var defaultInvalidDate = 'Invalid date'; + + function invalidDate () { + return this._invalidDate; + } + + var defaultOrdinal = '%d'; + var defaultOrdinalParse = /\d{1,2}/; + + function ordinal (number) { + return this._ordinal.replace('%d', number); + } + + function preParsePostFormat (string) { + return string; + } + + var defaultRelativeTime = { + future : 'in %s', + past : '%s ago', + s : 'a few seconds', + m : 'a minute', + mm : '%d minutes', + h : 'an hour', + hh : '%d hours', + d : 'a day', + dd : '%d days', + M : 'a month', + MM : '%d months', + y : 'a year', + yy : '%d years' + }; + + function relative__relativeTime (number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return (typeof output === 'function') ? + output(number, withoutSuffix, string, isFuture) : + output.replace(/%d/i, number); + } + + function pastFuture (diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); + } + + function locale_set__set (config) { + var prop, i; + for (i in config) { + prop = config[i]; + if (typeof prop === 'function') { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _ordinalParseLenient. + this._ordinalParseLenient = new RegExp(this._ordinalParse.source + '|' + (/\d{1,2}/).source); + } + + var prototype__proto = Locale.prototype; + + prototype__proto._calendar = defaultCalendar; + prototype__proto.calendar = locale_calendar__calendar; + prototype__proto._longDateFormat = defaultLongDateFormat; + prototype__proto.longDateFormat = longDateFormat; + prototype__proto._invalidDate = defaultInvalidDate; + prototype__proto.invalidDate = invalidDate; + prototype__proto._ordinal = defaultOrdinal; + prototype__proto.ordinal = ordinal; + prototype__proto._ordinalParse = defaultOrdinalParse; + prototype__proto.preparse = preParsePostFormat; + prototype__proto.postformat = preParsePostFormat; + prototype__proto._relativeTime = defaultRelativeTime; + prototype__proto.relativeTime = relative__relativeTime; + prototype__proto.pastFuture = pastFuture; + prototype__proto.set = locale_set__set; + + // Month + prototype__proto.months = localeMonths; + prototype__proto._months = defaultLocaleMonths; + prototype__proto.monthsShort = localeMonthsShort; + prototype__proto._monthsShort = defaultLocaleMonthsShort; + prototype__proto.monthsParse = localeMonthsParse; + + // Week + prototype__proto.week = localeWeek; + prototype__proto._week = defaultLocaleWeek; + prototype__proto.firstDayOfYear = localeFirstDayOfYear; + prototype__proto.firstDayOfWeek = localeFirstDayOfWeek; + + // Day of Week + prototype__proto.weekdays = localeWeekdays; + prototype__proto._weekdays = defaultLocaleWeekdays; + prototype__proto.weekdaysMin = localeWeekdaysMin; + prototype__proto._weekdaysMin = defaultLocaleWeekdaysMin; + prototype__proto.weekdaysShort = localeWeekdaysShort; + prototype__proto._weekdaysShort = defaultLocaleWeekdaysShort; + prototype__proto.weekdaysParse = localeWeekdaysParse; + + // Hours + prototype__proto.isPM = localeIsPM; + prototype__proto._meridiemParse = defaultLocaleMeridiemParse; + prototype__proto.meridiem = localeMeridiem; + + function lists__get (format, index, field, setter) { + var locale = locale_locales__getLocale(); + var utc = create_utc__createUTC().set(setter, index); + return locale[field](utc, format); + } + + function list (format, index, field, count, setter) { + if (typeof format === 'number') { + index = format; + format = undefined; + } + + format = format || ''; + + if (index != null) { + return lists__get(format, index, field, setter); + } + + var i; + var out = []; + for (i = 0; i < count; i++) { + out[i] = lists__get(format, i, field, setter); + } + return out; + } + + function lists__listMonths (format, index) { + return list(format, index, 'months', 12, 'month'); + } + + function lists__listMonthsShort (format, index) { + return list(format, index, 'monthsShort', 12, 'month'); + } + + function lists__listWeekdays (format, index) { + return list(format, index, 'weekdays', 7, 'day'); + } + + function lists__listWeekdaysShort (format, index) { + return list(format, index, 'weekdaysShort', 7, 'day'); + } + + function lists__listWeekdaysMin (format, index) { + return list(format, index, 'weekdaysMin', 7, 'day'); + } + + locale_locales__getSetGlobalLocale('en', { + ordinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal : function (number) { + var b = number % 10, + output = (toInt(number % 100 / 10) === 1) ? 'th' : + (b === 1) ? 'st' : + (b === 2) ? 'nd' : + (b === 3) ? 'rd' : 'th'; + return number + output; + } + }); + + // Side effect imports + utils_hooks__hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', locale_locales__getSetGlobalLocale); + utils_hooks__hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', locale_locales__getLocale); + + var mathAbs = Math.abs; + + function duration_abs__abs () { + var data = this._data; + + this._milliseconds = mathAbs(this._milliseconds); + this._days = mathAbs(this._days); + this._months = mathAbs(this._months); + + data.milliseconds = mathAbs(data.milliseconds); + data.seconds = mathAbs(data.seconds); + data.minutes = mathAbs(data.minutes); + data.hours = mathAbs(data.hours); + data.months = mathAbs(data.months); + data.years = mathAbs(data.years); + + return this; + } + + function duration_add_subtract__addSubtract (duration, input, value, direction) { + var other = create__createDuration(input, value); + + duration._milliseconds += direction * other._milliseconds; + duration._days += direction * other._days; + duration._months += direction * other._months; + + return duration._bubble(); + } + + // supports only 2.0-style add(1, 's') or add(duration) + function duration_add_subtract__add (input, value) { + return duration_add_subtract__addSubtract(this, input, value, 1); + } + + // supports only 2.0-style subtract(1, 's') or subtract(duration) + function duration_add_subtract__subtract (input, value) { + return duration_add_subtract__addSubtract(this, input, value, -1); + } + + function absCeil (number) { + if (number < 0) { + return Math.floor(number); + } else { + return Math.ceil(number); + } + } + + function bubble () { + var milliseconds = this._milliseconds; + var days = this._days; + var months = this._months; + var data = this._data; + var seconds, minutes, hours, years, monthsFromDays; + + // if we have a mix of positive and negative values, bubble down first + // check: https://github.com/moment/moment/issues/2166 + if (!((milliseconds >= 0 && days >= 0 && months >= 0) || + (milliseconds <= 0 && days <= 0 && months <= 0))) { + milliseconds += absCeil(monthsToDays(months) + days) * 864e5; + days = 0; + months = 0; + } + + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + + seconds = absFloor(milliseconds / 1000); + data.seconds = seconds % 60; + + minutes = absFloor(seconds / 60); + data.minutes = minutes % 60; + + hours = absFloor(minutes / 60); + data.hours = hours % 24; + + days += absFloor(hours / 24); + + // convert days to months + monthsFromDays = absFloor(daysToMonths(days)); + months += monthsFromDays; + days -= absCeil(monthsToDays(monthsFromDays)); + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + data.days = days; + data.months = months; + data.years = years; + + return this; + } + + function daysToMonths (days) { + // 400 years have 146097 days (taking into account leap year rules) + // 400 years have 12 months === 4800 + return days * 4800 / 146097; + } + + function monthsToDays (months) { + // the reverse of daysToMonths + return months * 146097 / 4800; + } + + function as (units) { + var days; + var months; + var milliseconds = this._milliseconds; + + units = normalizeUnits(units); + + if (units === 'month' || units === 'year') { + days = this._days + milliseconds / 864e5; + months = this._months + daysToMonths(days); + return units === 'month' ? months : months / 12; + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(monthsToDays(this._months)); + switch (units) { + case 'week' : return days / 7 + milliseconds / 6048e5; + case 'day' : return days + milliseconds / 864e5; + case 'hour' : return days * 24 + milliseconds / 36e5; + case 'minute' : return days * 1440 + milliseconds / 6e4; + case 'second' : return days * 86400 + milliseconds / 1000; + // Math.floor prevents floating point math errors here + case 'millisecond': return Math.floor(days * 864e5) + milliseconds; + default: throw new Error('Unknown unit ' + units); + } + } + } + + // TODO: Use this.as('ms')? + function duration_as__valueOf () { + return ( + this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6 + ); + } + + function makeAs (alias) { + return function () { + return this.as(alias); + }; + } + + var asMilliseconds = makeAs('ms'); + var asSeconds = makeAs('s'); + var asMinutes = makeAs('m'); + var asHours = makeAs('h'); + var asDays = makeAs('d'); + var asWeeks = makeAs('w'); + var asMonths = makeAs('M'); + var asYears = makeAs('y'); + + function duration_get__get (units) { + units = normalizeUnits(units); + return this[units + 's'](); + } + + function makeGetter(name) { + return function () { + return this._data[name]; + }; + } + + var milliseconds = makeGetter('milliseconds'); + var seconds = makeGetter('seconds'); + var minutes = makeGetter('minutes'); + var hours = makeGetter('hours'); + var days = makeGetter('days'); + var months = makeGetter('months'); + var years = makeGetter('years'); + + function weeks () { + return absFloor(this.days() / 7); + } + + var round = Math.round; + var thresholds = { + s: 45, // seconds to minute + m: 45, // minutes to hour + h: 22, // hours to day + d: 26, // days to month + M: 11 // months to year + }; + + // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + } + + function duration_humanize__relativeTime (posNegDuration, withoutSuffix, locale) { + var duration = create__createDuration(posNegDuration).abs(); + var seconds = round(duration.as('s')); + var minutes = round(duration.as('m')); + var hours = round(duration.as('h')); + var days = round(duration.as('d')); + var months = round(duration.as('M')); + var years = round(duration.as('y')); + + var a = seconds < thresholds.s && ['s', seconds] || + minutes === 1 && ['m'] || + minutes < thresholds.m && ['mm', minutes] || + hours === 1 && ['h'] || + hours < thresholds.h && ['hh', hours] || + days === 1 && ['d'] || + days < thresholds.d && ['dd', days] || + months === 1 && ['M'] || + months < thresholds.M && ['MM', months] || + years === 1 && ['y'] || ['yy', years]; + + a[2] = withoutSuffix; + a[3] = +posNegDuration > 0; + a[4] = locale; + return substituteTimeAgo.apply(null, a); + } + + // This function allows you to set a threshold for relative time strings + function duration_humanize__getSetRelativeTimeThreshold (threshold, limit) { + if (thresholds[threshold] === undefined) { + return false; + } + if (limit === undefined) { + return thresholds[threshold]; + } + thresholds[threshold] = limit; + return true; + } + + function humanize (withSuffix) { + var locale = this.localeData(); + var output = duration_humanize__relativeTime(this, !withSuffix, locale); + + if (withSuffix) { + output = locale.pastFuture(+this, output); + } + + return locale.postformat(output); + } + + var iso_string__abs = Math.abs; + + function iso_string__toISOString() { + // for ISO strings we do not use the normal bubbling rules: + // * milliseconds bubble up until they become hours + // * days do not bubble at all + // * months bubble up until they become years + // This is because there is no context-free conversion between hours and days + // (think of clock changes) + // and also not between days and months (28-31 days per month) + var seconds = iso_string__abs(this._milliseconds) / 1000; + var days = iso_string__abs(this._days); + var months = iso_string__abs(this._months); + var minutes, hours, years; + + // 3600 seconds -> 60 minutes -> 1 hour + minutes = absFloor(seconds / 60); + hours = absFloor(minutes / 60); + seconds %= 60; + minutes %= 60; + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + var Y = years; + var M = months; + var D = days; + var h = hours; + var m = minutes; + var s = seconds; + var total = this.asSeconds(); + + if (!total) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + return (total < 0 ? '-' : '') + + 'P' + + (Y ? Y + 'Y' : '') + + (M ? M + 'M' : '') + + (D ? D + 'D' : '') + + ((h || m || s) ? 'T' : '') + + (h ? h + 'H' : '') + + (m ? m + 'M' : '') + + (s ? s + 'S' : ''); + } + + var duration_prototype__proto = Duration.prototype; + + duration_prototype__proto.abs = duration_abs__abs; + duration_prototype__proto.add = duration_add_subtract__add; + duration_prototype__proto.subtract = duration_add_subtract__subtract; + duration_prototype__proto.as = as; + duration_prototype__proto.asMilliseconds = asMilliseconds; + duration_prototype__proto.asSeconds = asSeconds; + duration_prototype__proto.asMinutes = asMinutes; + duration_prototype__proto.asHours = asHours; + duration_prototype__proto.asDays = asDays; + duration_prototype__proto.asWeeks = asWeeks; + duration_prototype__proto.asMonths = asMonths; + duration_prototype__proto.asYears = asYears; + duration_prototype__proto.valueOf = duration_as__valueOf; + duration_prototype__proto._bubble = bubble; + duration_prototype__proto.get = duration_get__get; + duration_prototype__proto.milliseconds = milliseconds; + duration_prototype__proto.seconds = seconds; + duration_prototype__proto.minutes = minutes; + duration_prototype__proto.hours = hours; + duration_prototype__proto.days = days; + duration_prototype__proto.weeks = weeks; + duration_prototype__proto.months = months; + duration_prototype__proto.years = years; + duration_prototype__proto.humanize = humanize; + duration_prototype__proto.toISOString = iso_string__toISOString; + duration_prototype__proto.toString = iso_string__toISOString; + duration_prototype__proto.toJSON = iso_string__toISOString; + duration_prototype__proto.locale = locale; + duration_prototype__proto.localeData = localeData; + + // Deprecations + duration_prototype__proto.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', iso_string__toISOString); + duration_prototype__proto.lang = lang; + + // Side effect imports + + addFormatToken('X', 0, 0, 'unix'); + addFormatToken('x', 0, 0, 'valueOf'); + + // PARSING + + addRegexToken('x', matchSigned); + addRegexToken('X', matchTimestamp); + addParseToken('X', function (input, array, config) { + config._d = new Date(parseFloat(input, 10) * 1000); + }); + addParseToken('x', function (input, array, config) { + config._d = new Date(toInt(input)); + }); + + // Side effect imports + + + utils_hooks__hooks.version = '2.10.6'; + + setHookCallback(local__createLocal); + + utils_hooks__hooks.fn = momentPrototype; + utils_hooks__hooks.min = min; + utils_hooks__hooks.max = max; + utils_hooks__hooks.utc = create_utc__createUTC; + utils_hooks__hooks.unix = moment__createUnix; + utils_hooks__hooks.months = lists__listMonths; + utils_hooks__hooks.isDate = isDate; + utils_hooks__hooks.locale = locale_locales__getSetGlobalLocale; + utils_hooks__hooks.invalid = valid__createInvalid; + utils_hooks__hooks.duration = create__createDuration; + utils_hooks__hooks.isMoment = isMoment; + utils_hooks__hooks.weekdays = lists__listWeekdays; + utils_hooks__hooks.parseZone = moment__createInZone; + utils_hooks__hooks.localeData = locale_locales__getLocale; + utils_hooks__hooks.isDuration = isDuration; + utils_hooks__hooks.monthsShort = lists__listMonthsShort; + utils_hooks__hooks.weekdaysMin = lists__listWeekdaysMin; + utils_hooks__hooks.defineLocale = defineLocale; + utils_hooks__hooks.weekdaysShort = lists__listWeekdaysShort; + utils_hooks__hooks.normalizeUnits = normalizeUnits; + utils_hooks__hooks.relativeTimeThreshold = duration_humanize__getSetRelativeTimeThreshold; + + var _moment = utils_hooks__hooks; + + return _moment; + + })); + /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)(module))) + +/***/ }, +/* 4 */ +/***/ function(module, exports) { + + module.exports = function(module) { + if(!module.webpackPolyfill) { + module.deprecate = function() {}; + module.paths = []; + // module.parent = undefined by default + module.children = []; + module.webpackPolyfill = 1; + } + return module; + } + + +/***/ }, +/* 5 */ +/***/ function(module, exports) { + + function webpackContext(req) { + throw new Error("Cannot find module '" + req + "'."); + } + webpackContext.keys = function() { return []; }; + webpackContext.resolve = webpackContext; + module.exports = webpackContext; + webpackContext.id = 5; + + +/***/ }, +/* 6 */ +/***/ function(module, exports) { + + /* WEBPACK VAR INJECTION */(function(global) {'use strict'; + + var _rng; + + var globalVar = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : null; + + if (globalVar && globalVar.crypto && crypto.getRandomValues) { + // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto + // Moderately fast, high quality + var _rnds8 = new Uint8Array(16); + _rng = function whatwgRNG() { + crypto.getRandomValues(_rnds8); + return _rnds8; + }; + } + + if (!_rng) { + // Math.random()-based (RNG) + // + // If all else fails, use Math.random(). It's fast, but is of unspecified + // quality. + var _rnds = new Array(16); + _rng = function () { + for (var i = 0, r; i < 16; i++) { + if ((i & 0x03) === 0) r = Math.random() * 0x100000000; + _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff; + } + + return _rnds; + }; + } + + // uuid.js + // + // Copyright (c) 2010-2012 Robert Kieffer + // MIT License - http://opensource.org/licenses/mit-license.php + + // Unique ID creation requires a high quality random # generator. We feature + // detect to determine the best RNG source, normalizing to a function that + // returns 128-bits of randomness, since that's what's usually required + + //var _rng = require('./rng'); + + // Maps for number <-> hex string conversion + var _byteToHex = []; + var _hexToByte = {}; + for (var i = 0; i < 256; i++) { + _byteToHex[i] = (i + 0x100).toString(16).substr(1); + _hexToByte[_byteToHex[i]] = i; + } + + // **`parse()` - Parse a UUID into it's component bytes** + function parse(s, buf, offset) { + var i = buf && offset || 0, + ii = 0; + + buf = buf || []; + s.toLowerCase().replace(/[0-9a-f]{2}/g, function (oct) { + if (ii < 16) { + // Don't overflow! + buf[i + ii++] = _hexToByte[oct]; + } + }); + + // Zero out remaining bytes if string was short + while (ii < 16) { + buf[i + ii++] = 0; + } + + return buf; + } + + // **`unparse()` - Convert UUID byte array (ala parse()) into a string** + function unparse(buf, offset) { + var i = offset || 0, + bth = _byteToHex; + return bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]]; + } + + // **`v1()` - Generate time-based UUID** + // + // Inspired by https://github.com/LiosK/UUID.js + // and http://docs.python.org/library/uuid.html + + // random #'s we need to init node and clockseq + var _seedBytes = _rng(); + + // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) + var _nodeId = [_seedBytes[0] | 0x01, _seedBytes[1], _seedBytes[2], _seedBytes[3], _seedBytes[4], _seedBytes[5]]; + + // Per 4.2.2, randomize (14 bit) clockseq + var _clockseq = (_seedBytes[6] << 8 | _seedBytes[7]) & 0x3fff; + + // Previous uuid creation time + var _lastMSecs = 0, + _lastNSecs = 0; + + // See https://github.com/broofa/node-uuid for API details + function v1(options, buf, offset) { + var i = buf && offset || 0; + var b = buf || []; + + options = options || {}; + + var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; + + // UUID timestamps are 100 nano-second units since the Gregorian epoch, + // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so + // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs' + // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00. + var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime(); + + // Per 4.2.1.2, use count of uuid's generated during the current clock + // cycle to simulate higher resolution clock + var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; + + // Time since last uuid creation (in msecs) + var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; + + // Per 4.2.1.2, Bump clockseq on clock regression + if (dt < 0 && options.clockseq === undefined) { + clockseq = clockseq + 1 & 0x3fff; + } + + // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new + // time interval + if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) { + nsecs = 0; + } + + // Per 4.2.1.2 Throw error if too many uuids are requested + if (nsecs >= 10000) { + throw new Error('uuid.v1(): Can\'t create more than 10M uuids/sec'); + } + + _lastMSecs = msecs; + _lastNSecs = nsecs; + _clockseq = clockseq; + + // Per 4.1.4 - Convert from unix epoch to Gregorian epoch + msecs += 12219292800000; + + // `time_low` + var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000; + b[i++] = tl >>> 24 & 0xff; + b[i++] = tl >>> 16 & 0xff; + b[i++] = tl >>> 8 & 0xff; + b[i++] = tl & 0xff; + + // `time_mid` + var tmh = msecs / 0x100000000 * 10000 & 0xfffffff; + b[i++] = tmh >>> 8 & 0xff; + b[i++] = tmh & 0xff; + + // `time_high_and_version` + b[i++] = tmh >>> 24 & 0xf | 0x10; // include version + b[i++] = tmh >>> 16 & 0xff; + + // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant) + b[i++] = clockseq >>> 8 | 0x80; + + // `clock_seq_low` + b[i++] = clockseq & 0xff; + + // `node` + var node = options.node || _nodeId; + for (var n = 0; n < 6; n++) { + b[i + n] = node[n]; + } + + return buf ? buf : unparse(b); + } + + // **`v4()` - Generate random UUID** + + // See https://github.com/broofa/node-uuid for API details + function v4(options, buf, offset) { + // Deprecated - 'format' argument, as supported in v1.2 + var i = buf && offset || 0; + + if (typeof options == 'string') { + buf = options == 'binary' ? new Array(16) : null; + options = null; + } + options = options || {}; + + var rnds = options.random || (options.rng || _rng)(); + + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + rnds[6] = rnds[6] & 0x0f | 0x40; + rnds[8] = rnds[8] & 0x3f | 0x80; + + // Copy bytes to buffer, if provided + if (buf) { + for (var ii = 0; ii < 16; ii++) { + buf[i + ii] = rnds[ii]; + } + } + + return buf || unparse(rnds); + } + + // Export public API + var uuid = v4; + uuid.v1 = v1; + uuid.v4 = v4; + uuid.parse = parse; + uuid.unparse = unparse; + + module.exports = uuid; + /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()))) + +/***/ }, +/* 7 */ +/***/ function(module, exports) { + + // DOM utility methods + + /** + * this prepares the JSON container for allocating SVG elements + * @param JSONcontainer + * @private + */ + 'use strict'; + + exports.prepareElements = function (JSONcontainer) { + // cleanup the redundant svgElements; + for (var elementType in JSONcontainer) { + if (JSONcontainer.hasOwnProperty(elementType)) { + JSONcontainer[elementType].redundant = JSONcontainer[elementType].used; + JSONcontainer[elementType].used = []; + } + } + }; + + /** + * this cleans up all the unused SVG elements. By asking for the parentNode, we only need to supply the JSON container from + * which to remove the redundant elements. + * + * @param JSONcontainer + * @private + */ + exports.cleanupElements = function (JSONcontainer) { + // cleanup the redundant svgElements; + for (var elementType in JSONcontainer) { + if (JSONcontainer.hasOwnProperty(elementType)) { + if (JSONcontainer[elementType].redundant) { + for (var i = 0; i < JSONcontainer[elementType].redundant.length; i++) { + JSONcontainer[elementType].redundant[i].parentNode.removeChild(JSONcontainer[elementType].redundant[i]); + } + JSONcontainer[elementType].redundant = []; + } + } + } + }; + + /** + * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer + * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. + * + * @param elementType + * @param JSONcontainer + * @param svgContainer + * @returns {*} + * @private + */ + exports.getSVGElement = function (elementType, JSONcontainer, svgContainer) { + var element; + // allocate SVG element, if it doesnt yet exist, create one. + if (JSONcontainer.hasOwnProperty(elementType)) { + // this element has been created before + // check if there is an redundant element + if (JSONcontainer[elementType].redundant.length > 0) { + element = JSONcontainer[elementType].redundant[0]; + JSONcontainer[elementType].redundant.shift(); + } else { + // create a new element and add it to the SVG + element = document.createElementNS('http://www.w3.org/2000/svg', elementType); + svgContainer.appendChild(element); + } + } else { + // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. + element = document.createElementNS('http://www.w3.org/2000/svg', elementType); + JSONcontainer[elementType] = { used: [], redundant: [] }; + svgContainer.appendChild(element); + } + JSONcontainer[elementType].used.push(element); + return element; + }; + + /** + * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer + * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. + * + * @param elementType + * @param JSONcontainer + * @param DOMContainer + * @returns {*} + * @private + */ + exports.getDOMElement = function (elementType, JSONcontainer, DOMContainer, insertBefore) { + var element; + // allocate DOM element, if it doesnt yet exist, create one. + if (JSONcontainer.hasOwnProperty(elementType)) { + // this element has been created before + // check if there is an redundant element + if (JSONcontainer[elementType].redundant.length > 0) { + element = JSONcontainer[elementType].redundant[0]; + JSONcontainer[elementType].redundant.shift(); + } else { + // create a new element and add it to the SVG + element = document.createElement(elementType); + if (insertBefore !== undefined) { + DOMContainer.insertBefore(element, insertBefore); + } else { + DOMContainer.appendChild(element); + } + } + } else { + // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. + element = document.createElement(elementType); + JSONcontainer[elementType] = { used: [], redundant: [] }; + if (insertBefore !== undefined) { + DOMContainer.insertBefore(element, insertBefore); + } else { + DOMContainer.appendChild(element); + } + } + JSONcontainer[elementType].used.push(element); + return element; + }; + + /** + * Draw a point object. This is a separate function because it can also be called by the legend. + * The reason the JSONcontainer and the target SVG svgContainer have to be supplied is so the legend can use these functions + * as well. + * + * @param x + * @param y + * @param groupTemplate: A template containing the necessary information to draw the datapoint e.g., {style: 'circle', size: 5, className: 'className' } + * @param JSONcontainer + * @param svgContainer + * @param labelObj + * @returns {*} + */ + exports.drawPoint = function (x, y, groupTemplate, JSONcontainer, svgContainer, labelObj) { + var point; + if (groupTemplate.style == 'circle') { + point = exports.getSVGElement('circle', JSONcontainer, svgContainer); + point.setAttributeNS(null, "cx", x); + point.setAttributeNS(null, "cy", y); + point.setAttributeNS(null, "r", 0.5 * groupTemplate.size); + } else { + point = exports.getSVGElement('rect', JSONcontainer, svgContainer); + point.setAttributeNS(null, "x", x - 0.5 * groupTemplate.size); + point.setAttributeNS(null, "y", y - 0.5 * groupTemplate.size); + point.setAttributeNS(null, "width", groupTemplate.size); + point.setAttributeNS(null, "height", groupTemplate.size); + } + + if (groupTemplate.style !== undefined) { + point.setAttributeNS(null, "style", groupTemplate.style); + } + point.setAttributeNS(null, "class", groupTemplate.className + " vis-point"); + //handle label + + if (labelObj) { + var label = exports.getSVGElement('text', JSONcontainer, svgContainer); + if (labelObj.xOffset) { + x = x + labelObj.xOffset; + } + + if (labelObj.yOffset) { + y = y + labelObj.yOffset; + } + if (labelObj.content) { + label.textContent = labelObj.content; + } + + if (labelObj.className) { + label.setAttributeNS(null, "class", labelObj.className + " vis-label"); + } + label.setAttributeNS(null, "x", x); + label.setAttributeNS(null, "y", y); + } + + return point; + }; + + /** + * draw a bar SVG element centered on the X coordinate + * + * @param x + * @param y + * @param className + */ + exports.drawBar = function (x, y, width, height, className, JSONcontainer, svgContainer, style) { + if (height != 0) { + if (height < 0) { + height *= -1; + y -= height; + } + var rect = exports.getSVGElement('rect', JSONcontainer, svgContainer); + rect.setAttributeNS(null, "x", x - 0.5 * width); + rect.setAttributeNS(null, "y", y); + rect.setAttributeNS(null, "width", width); + rect.setAttributeNS(null, "height", height); + rect.setAttributeNS(null, "class", className); + if (style) { + rect.setAttributeNS(null, "style", style); + } + } + }; + +/***/ }, +/* 8 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var Queue = __webpack_require__(9); + + /** + * DataSet + * + * Usage: + * var dataSet = new DataSet({ + * fieldId: '_id', + * type: { + * // ... + * } + * }); + * + * dataSet.add(item); + * dataSet.add(data); + * dataSet.update(item); + * dataSet.update(data); + * dataSet.remove(id); + * dataSet.remove(ids); + * var data = dataSet.get(); + * var data = dataSet.get(id); + * var data = dataSet.get(ids); + * var data = dataSet.get(ids, options, data); + * dataSet.clear(); + * + * A data set can: + * - add/remove/update data + * - gives triggers upon changes in the data + * - can import/export data in various data formats + * + * @param {Array} [data] Optional array with initial data + * @param {Object} [options] Available options: + * {String} fieldId Field name of the id in the + * items, 'id' by default. + * {Object.} [type] + * {String[]} [fields] field names to be returned + * {function} [filter] filter items + * {String | function} [order] Order the items by a field name or custom sort function. + * @throws Error + */ + DataSet.prototype.get = function (args) { + var me = this; + + // parse the arguments + var id, ids, options; + var firstType = util.getType(arguments[0]); + if (firstType == 'String' || firstType == 'Number') { + // get(id [, options]) + id = arguments[0]; + options = arguments[1]; + } else if (firstType == 'Array') { + // get(ids [, options]) + ids = arguments[0]; + options = arguments[1]; + } else { + // get([, options]) + options = arguments[0]; + } + + // determine the return type + var returnType; + if (options && options.returnType) { + var allowedValues = ['Array', 'Object']; + returnType = allowedValues.indexOf(options.returnType) == -1 ? 'Array' : options.returnType; + } else { + returnType = 'Array'; + } + + // build options + var type = options && options.type || this._options.type; + var filter = options && options.filter; + var items = [], + item, + itemId, + i, + len; + + // convert items + if (id != undefined) { + // return a single item + item = me._getItem(id, type); + if (filter && !filter(item)) { + item = null; + } + } else if (ids != undefined) { + // return a subset of items + for (i = 0, len = ids.length; i < len; i++) { + item = me._getItem(ids[i], type); + if (!filter || filter(item)) { + items.push(item); + } + } + } else { + // return all items + for (itemId in this._data) { + if (this._data.hasOwnProperty(itemId)) { + item = me._getItem(itemId, type); + if (!filter || filter(item)) { + items.push(item); + } + } + } + } + + // order the results + if (options && options.order && id == undefined) { + this._sort(items, options.order); + } + + // filter fields of the items + if (options && options.fields) { + var fields = options.fields; + if (id != undefined) { + item = this._filterFields(item, fields); + } else { + for (i = 0, len = items.length; i < len; i++) { + items[i] = this._filterFields(items[i], fields); + } + } + } + + // return the results + if (returnType == 'Object') { + var result = {}; + for (i = 0; i < items.length; i++) { + result[items[i].id] = items[i]; + } + return result; + } else { + if (id != undefined) { + // a single item + return item; + } else { + // just return our array + return items; + } + } + }; + + /** + * Get ids of all items or from a filtered set of items. + * @param {Object} [options] An Object with options. Available options: + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Array} ids + */ + DataSet.prototype.getIds = function (options) { + var data = this._data, + filter = options && options.filter, + order = options && options.order, + type = options && options.type || this._options.type, + i, + len, + id, + item, + items, + ids = []; + + if (filter) { + // get filtered items + if (order) { + // create ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (filter(item)) { + items.push(item); + } + } + } + + this._sort(items, order); + + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } + } else { + // create unordered list + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (filter(item)) { + ids.push(item[this._fieldId]); + } + } + } + } + } else { + // get all items + if (order) { + // create an ordered list + items = []; + for (id in data) { + if (data.hasOwnProperty(id)) { + items.push(data[id]); + } + } + + this._sort(items, order); + + for (i = 0, len = items.length; i < len; i++) { + ids[i] = items[i][this._fieldId]; + } + } else { + // create unordered list + for (id in data) { + if (data.hasOwnProperty(id)) { + item = data[id]; + ids.push(item[this._fieldId]); + } + } + } + } + + return ids; + }; + + /** + * Returns the DataSet itself. Is overwritten for example by the DataView, + * which returns the DataSet it is connected to instead. + */ + DataSet.prototype.getDataSet = function () { + return this; + }; + + /** + * Execute a callback function for every item in the dataset. + * @param {function} callback + * @param {Object} [options] Available options: + * {Object.} [type] + * {String[]} [fields] filter fields + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + */ + DataSet.prototype.forEach = function (callback, options) { + var filter = options && options.filter, + type = options && options.type || this._options.type, + data = this._data, + item, + id; + + if (options && options.order) { + // execute forEach on ordered list + var items = this.get(options); + + for (var i = 0, len = items.length; i < len; i++) { + item = items[i]; + id = item[this._fieldId]; + callback(item, id); + } + } else { + // unordered + for (id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (!filter || filter(item)) { + callback(item, id); + } + } + } + } + }; + + /** + * Map every item in the dataset. + * @param {function} callback + * @param {Object} [options] Available options: + * {Object.} [type] + * {String[]} [fields] filter fields + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Object[]} mappedItems + */ + DataSet.prototype.map = function (callback, options) { + var filter = options && options.filter, + type = options && options.type || this._options.type, + mappedItems = [], + data = this._data, + item; + + // convert and filter items + for (var id in data) { + if (data.hasOwnProperty(id)) { + item = this._getItem(id, type); + if (!filter || filter(item)) { + mappedItems.push(callback(item, id)); + } + } + } + + // order items + if (options && options.order) { + this._sort(mappedItems, options.order); + } + + return mappedItems; + }; + + /** + * Filter the fields of an item + * @param {Object | null} item + * @param {String[]} fields Field names + * @return {Object | null} filteredItem or null if no item is provided + * @private + */ + DataSet.prototype._filterFields = function (item, fields) { + if (!item) { + // item is null + return item; + } + + var filteredItem = {}; + + if (Array.isArray(fields)) { + for (var field in item) { + if (item.hasOwnProperty(field) && fields.indexOf(field) != -1) { + filteredItem[field] = item[field]; + } + } + } else { + for (var field in item) { + if (item.hasOwnProperty(field) && fields.hasOwnProperty(field)) { + filteredItem[fields[field]] = item[field]; + } + } + } + + return filteredItem; + }; + + /** + * Sort the provided array with items + * @param {Object[]} items + * @param {String | function} order A field name or custom sort function. + * @private + */ + DataSet.prototype._sort = function (items, order) { + if (util.isString(order)) { + // order by provided field name + var name = order; // field name + items.sort(function (a, b) { + var av = a[name]; + var bv = b[name]; + return av > bv ? 1 : av < bv ? -1 : 0; + }); + } else if (typeof order === 'function') { + // order by sort function + items.sort(order); + } + // TODO: extend order by an Object {field:String, direction:String} + // where direction can be 'asc' or 'desc' + else { + throw new TypeError('Order must be a function or a string'); + } + }; + + /** + * Remove an object by pointer or by id + * @param {String | Number | Object | Array} id Object or id, or an array with + * objects or ids to be removed + * @param {String} [senderId] Optional sender id + * @return {Array} removedIds + */ + DataSet.prototype.remove = function (id, senderId) { + var removedIds = [], + i, + len, + removedId; + + if (Array.isArray(id)) { + for (i = 0, len = id.length; i < len; i++) { + removedId = this._remove(id[i]); + if (removedId != null) { + removedIds.push(removedId); + } + } + } else { + removedId = this._remove(id); + if (removedId != null) { + removedIds.push(removedId); + } + } + + if (removedIds.length) { + this._trigger('remove', { items: removedIds }, senderId); + } + + return removedIds; + }; + + /** + * Remove an item by its id + * @param {Number | String | Object} id id or item + * @returns {Number | String | null} id + * @private + */ + DataSet.prototype._remove = function (id) { + if (util.isNumber(id) || util.isString(id)) { + if (this._data[id]) { + delete this._data[id]; + this.length--; + return id; + } + } else if (id instanceof Object) { + var itemId = id[this._fieldId]; + if (itemId && this._data[itemId]) { + delete this._data[itemId]; + this.length--; + return itemId; + } + } + return null; + }; + + /** + * Clear the data + * @param {String} [senderId] Optional sender id + * @return {Array} removedIds The ids of all removed items + */ + DataSet.prototype.clear = function (senderId) { + var ids = Object.keys(this._data); + + this._data = {}; + this.length = 0; + + this._trigger('remove', { items: ids }, senderId); + + return ids; + }; + + /** + * Find the item with maximum value of a specified field + * @param {String} field + * @return {Object | null} item Item containing max value, or null if no items + */ + DataSet.prototype.max = function (field) { + var data = this._data, + max = null, + maxField = null; + + for (var id in data) { + if (data.hasOwnProperty(id)) { + var item = data[id]; + var itemField = item[field]; + if (itemField != null && (!max || itemField > maxField)) { + max = item; + maxField = itemField; + } + } + } + + return max; + }; + + /** + * Find the item with minimum value of a specified field + * @param {String} field + * @return {Object | null} item Item containing max value, or null if no items + */ + DataSet.prototype.min = function (field) { + var data = this._data, + min = null, + minField = null; + + for (var id in data) { + if (data.hasOwnProperty(id)) { + var item = data[id]; + var itemField = item[field]; + if (itemField != null && (!min || itemField < minField)) { + min = item; + minField = itemField; + } + } + } + + return min; + }; + + /** + * Find all distinct values of a specified field + * @param {String} field + * @return {Array} values Array containing all distinct values. If data items + * do not contain the specified field are ignored. + * The returned array is unordered. + */ + DataSet.prototype.distinct = function (field) { + var data = this._data; + var values = []; + var fieldType = this._options.type && this._options.type[field] || null; + var count = 0; + var i; + + for (var prop in data) { + if (data.hasOwnProperty(prop)) { + var item = data[prop]; + var value = item[field]; + var exists = false; + for (i = 0; i < count; i++) { + if (values[i] == value) { + exists = true; + break; + } + } + if (!exists && value !== undefined) { + values[count] = value; + count++; + } + } + } + + if (fieldType) { + for (i = 0; i < values.length; i++) { + values[i] = util.convert(values[i], fieldType); + } + } + + return values; + }; + + /** + * Add a single item. Will fail when an item with the same id already exists. + * @param {Object} item + * @return {String} id + * @private + */ + DataSet.prototype._addItem = function (item) { + var id = item[this._fieldId]; + + if (id != undefined) { + // check whether this id is already taken + if (this._data[id]) { + // item already exists + throw new Error('Cannot add item: item with id ' + id + ' already exists'); + } + } else { + // generate an id + id = util.randomUUID(); + item[this._fieldId] = id; + } + + var d = {}; + for (var field in item) { + if (item.hasOwnProperty(field)) { + var fieldType = this._type[field]; // type may be undefined + d[field] = util.convert(item[field], fieldType); + } + } + this._data[id] = d; + this.length++; + + return id; + }; + + /** + * Get an item. Fields can be converted to a specific type + * @param {String} id + * @param {Object.} [types] field types to convert + * @return {Object | null} item + * @private + */ + DataSet.prototype._getItem = function (id, types) { + var field, value; + + // get the item from the dataset + var raw = this._data[id]; + if (!raw) { + return null; + } + + // convert the items field types + var converted = {}; + if (types) { + for (field in raw) { + if (raw.hasOwnProperty(field)) { + value = raw[field]; + converted[field] = util.convert(value, types[field]); + } + } + } else { + // no field types specified, no converting needed + for (field in raw) { + if (raw.hasOwnProperty(field)) { + value = raw[field]; + converted[field] = value; + } + } + } + return converted; + }; + + /** + * Update a single item: merge with existing item. + * Will fail when the item has no id, or when there does not exist an item + * with the same id. + * @param {Object} item + * @return {String} id + * @private + */ + DataSet.prototype._updateItem = function (item) { + var id = item[this._fieldId]; + if (id == undefined) { + throw new Error('Cannot update item: item has no id (item: ' + JSON.stringify(item) + ')'); + } + var d = this._data[id]; + if (!d) { + // item doesn't exist + throw new Error('Cannot update item: no item with id ' + id + ' found'); + } + + // merge with current item + for (var field in item) { + if (item.hasOwnProperty(field)) { + var fieldType = this._type[field]; // type may be undefined + d[field] = util.convert(item[field], fieldType); + } + } + + return id; + }; + + module.exports = DataSet; + +/***/ }, +/* 9 */ +/***/ function(module, exports) { + + /** + * A queue + * @param {Object} options + * Available options: + * - delay: number When provided, the queue will be flushed + * automatically after an inactivity of this delay + * in milliseconds. + * Default value is null. + * - max: number When the queue exceeds the given maximum number + * of entries, the queue is flushed automatically. + * Default value of max is Infinity. + * @constructor + */ + 'use strict'; + + function Queue(options) { + // options + this.delay = null; + this.max = Infinity; + + // properties + this._queue = []; + this._timeout = null; + this._extended = null; + + this.setOptions(options); + } + + /** + * Update the configuration of the queue + * @param {Object} options + * Available options: + * - delay: number When provided, the queue will be flushed + * automatically after an inactivity of this delay + * in milliseconds. + * Default value is null. + * - max: number When the queue exceeds the given maximum number + * of entries, the queue is flushed automatically. + * Default value of max is Infinity. + * @param options + */ + Queue.prototype.setOptions = function (options) { + if (options && typeof options.delay !== 'undefined') { + this.delay = options.delay; + } + if (options && typeof options.max !== 'undefined') { + this.max = options.max; + } + + this._flushIfNeeded(); + }; + + /** + * Extend an object with queuing functionality. + * The object will be extended with a function flush, and the methods provided + * in options.replace will be replaced with queued ones. + * @param {Object} object + * @param {Object} options + * Available options: + * - replace: Array. + * A list with method names of the methods + * on the object to be replaced with queued ones. + * - delay: number When provided, the queue will be flushed + * automatically after an inactivity of this delay + * in milliseconds. + * Default value is null. + * - max: number When the queue exceeds the given maximum number + * of entries, the queue is flushed automatically. + * Default value of max is Infinity. + * @return {Queue} Returns the created queue + */ + Queue.extend = function (object, options) { + var queue = new Queue(options); + + if (object.flush !== undefined) { + throw new Error('Target object already has a property flush'); + } + object.flush = function () { + queue.flush(); + }; + + var methods = [{ + name: 'flush', + original: undefined + }]; + + if (options && options.replace) { + for (var i = 0; i < options.replace.length; i++) { + var name = options.replace[i]; + methods.push({ + name: name, + original: object[name] + }); + queue.replace(object, name); + } + } + + queue._extended = { + object: object, + methods: methods + }; + + return queue; + }; + + /** + * Destroy the queue. The queue will first flush all queued actions, and in + * case it has extended an object, will restore the original object. + */ + Queue.prototype.destroy = function () { + this.flush(); + + if (this._extended) { + var object = this._extended.object; + var methods = this._extended.methods; + for (var i = 0; i < methods.length; i++) { + var method = methods[i]; + if (method.original) { + object[method.name] = method.original; + } else { + delete object[method.name]; + } + } + this._extended = null; + } + }; + + /** + * Replace a method on an object with a queued version + * @param {Object} object Object having the method + * @param {string} method The method name + */ + Queue.prototype.replace = function (object, method) { + var me = this; + var original = object[method]; + if (!original) { + throw new Error('Method ' + method + ' undefined'); + } + + object[method] = function () { + // create an Array with the arguments + var args = []; + for (var i = 0; i < arguments.length; i++) { + args[i] = arguments[i]; + } + + // add this call to the queue + me.queue({ + args: args, + fn: original, + context: this + }); + }; + }; + + /** + * Queue a call + * @param {function | {fn: function, args: Array} | {fn: function, args: Array, context: Object}} entry + */ + Queue.prototype.queue = function (entry) { + if (typeof entry === 'function') { + this._queue.push({ fn: entry }); + } else { + this._queue.push(entry); + } + + this._flushIfNeeded(); + }; + + /** + * Check whether the queue needs to be flushed + * @private + */ + Queue.prototype._flushIfNeeded = function () { + // flush when the maximum is exceeded. + if (this._queue.length > this.max) { + this.flush(); + } + + // flush after a period of inactivity when a delay is configured + clearTimeout(this._timeout); + if (this.queue.length > 0 && typeof this.delay === 'number') { + var me = this; + this._timeout = setTimeout(function () { + me.flush(); + }, this.delay); + } + }; + + /** + * Flush all queued calls + */ + Queue.prototype.flush = function () { + while (this._queue.length > 0) { + var entry = this._queue.shift(); + entry.fn.apply(entry.context || entry.fn, entry.args || []); + } + }; + + module.exports = Queue; + +/***/ }, +/* 10 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + + /** + * DataView + * + * a dataview offers a filtered view on a dataset or an other dataview. + * + * @param {DataSet | DataView} data + * @param {Object} [options] Available options: see method get + * + * @constructor DataView + */ + function DataView(data, options) { + this._data = null; + this._ids = {}; // ids of the items currently in memory (just contains a boolean true) + this.length = 0; // number of items in the DataView + this._options = options || {}; + this._fieldId = 'id'; // name of the field containing id + this._subscribers = {}; // event subscribers + + var me = this; + this.listener = function () { + me._onEvent.apply(me, arguments); + }; + + this.setData(data); + } + + // TODO: implement a function .config() to dynamically update things like configured filter + // and trigger changes accordingly + + /** + * Set a data source for the view + * @param {DataSet | DataView} data + */ + DataView.prototype.setData = function (data) { + var ids, i, len; + + if (this._data) { + // unsubscribe from current dataset + if (this._data.off) { + this._data.off('*', this.listener); + } + + // trigger a remove of all items in memory + ids = []; + for (var id in this._ids) { + if (this._ids.hasOwnProperty(id)) { + ids.push(id); + } + } + this._ids = {}; + this.length = 0; + this._trigger('remove', { items: ids }); + } + + this._data = data; + + if (this._data) { + // update fieldId + this._fieldId = this._options.fieldId || this._data && this._data.options && this._data.options.fieldId || 'id'; + + // trigger an add of all added items + ids = this._data.getIds({ filter: this._options && this._options.filter }); + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + this._ids[id] = true; + } + this.length = ids.length; + this._trigger('add', { items: ids }); + + // subscribe to new dataset + if (this._data.on) { + this._data.on('*', this.listener); + } + } + }; + + /** + * Refresh the DataView. Useful when the DataView has a filter function + * containing a variable parameter. + */ + DataView.prototype.refresh = function () { + var id; + var ids = this._data.getIds({ filter: this._options && this._options.filter }); + var newIds = {}; + var added = []; + var removed = []; + + // check for additions + for (var i = 0; i < ids.length; i++) { + id = ids[i]; + newIds[id] = true; + if (!this._ids[id]) { + added.push(id); + this._ids[id] = true; + this.length++; + } + } + + // check for removals + for (id in this._ids) { + if (this._ids.hasOwnProperty(id)) { + if (!newIds[id]) { + removed.push(id); + delete this._ids[id]; + this.length--; + } + } + } + + // trigger events + if (added.length) { + this._trigger('add', { items: added }); + } + if (removed.length) { + this._trigger('remove', { items: removed }); + } + }; + + /** + * Get data from the data view + * + * Usage: + * + * get() + * get(options: Object) + * get(options: Object, data: Array | DataTable) + * + * get(id: Number) + * get(id: Number, options: Object) + * get(id: Number, options: Object, data: Array | DataTable) + * + * get(ids: Number[]) + * get(ids: Number[], options: Object) + * get(ids: Number[], options: Object, data: Array | DataTable) + * + * Where: + * + * {Number | String} id The id of an item + * {Number[] | String{}} ids An array with ids of items + * {Object} options An Object with options. Available options: + * {String} [type] Type of data to be returned. Can + * be 'DataTable' or 'Array' (default) + * {Object.} [convert] + * {String[]} [fields] field names to be returned + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * {Array | DataTable} [data] If provided, items will be appended to this + * array or table. Required in case of Google + * DataTable. + * @param args + */ + DataView.prototype.get = function (args) { + var me = this; + + // parse the arguments + var ids, options, data; + var firstType = util.getType(arguments[0]); + if (firstType == 'String' || firstType == 'Number' || firstType == 'Array') { + // get(id(s) [, options] [, data]) + ids = arguments[0]; // can be a single id or an array with ids + options = arguments[1]; + data = arguments[2]; + } else { + // get([, options] [, data]) + options = arguments[0]; + data = arguments[1]; + } + + // extend the options with the default options and provided options + var viewOptions = util.extend({}, this._options, options); + + // create a combined filter method when needed + if (this._options.filter && options && options.filter) { + viewOptions.filter = function (item) { + return me._options.filter(item) && options.filter(item); + }; + } + + // build up the call to the linked data set + var getArguments = []; + if (ids != undefined) { + getArguments.push(ids); + } + getArguments.push(viewOptions); + getArguments.push(data); + + return this._data && this._data.get.apply(this._data, getArguments); + }; + + /** + * Get ids of all items or from a filtered set of items. + * @param {Object} [options] An Object with options. Available options: + * {function} [filter] filter items + * {String | function} [order] Order the items by + * a field name or custom sort function. + * @return {Array} ids + */ + DataView.prototype.getIds = function (options) { + var ids; + + if (this._data) { + var defaultFilter = this._options.filter; + var filter; + + if (options && options.filter) { + if (defaultFilter) { + filter = function (item) { + return defaultFilter(item) && options.filter(item); + }; + } else { + filter = options.filter; + } + } else { + filter = defaultFilter; + } + + ids = this._data.getIds({ + filter: filter, + order: options && options.order + }); + } else { + ids = []; + } + + return ids; + }; + + /** + * Get the DataSet to which this DataView is connected. In case there is a chain + * of multiple DataViews, the root DataSet of this chain is returned. + * @return {DataSet} dataSet + */ + DataView.prototype.getDataSet = function () { + var dataSet = this; + while (dataSet instanceof DataView) { + dataSet = dataSet._data; + } + return dataSet || null; + }; + + /** + * Event listener. Will propagate all events from the connected data set to + * the subscribers of the DataView, but will filter the items and only trigger + * when there are changes in the filtered data set. + * @param {String} event + * @param {Object | null} params + * @param {String} senderId + * @private + */ + DataView.prototype._onEvent = function (event, params, senderId) { + var i, len, id, item; + var ids = params && params.items; + var data = this._data; + var updatedData = []; + var added = []; + var updated = []; + var removed = []; + + if (ids && data) { + switch (event) { + case 'add': + // filter the ids of the added items + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + item = this.get(id); + if (item) { + this._ids[id] = true; + added.push(id); + } + } + + break; + + case 'update': + // determine the event from the views viewpoint: an updated + // item can be added, updated, or removed from this view. + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + item = this.get(id); + + if (item) { + if (this._ids[id]) { + updated.push(id); + updatedData.push(params.data[i]); + } else { + this._ids[id] = true; + added.push(id); + } + } else { + if (this._ids[id]) { + delete this._ids[id]; + removed.push(id); + } else { + // nothing interesting for me :-( + } + } + } + + break; + + case 'remove': + // filter the ids of the removed items + for (i = 0, len = ids.length; i < len; i++) { + id = ids[i]; + if (this._ids[id]) { + delete this._ids[id]; + removed.push(id); + } + } + + break; + } + + this.length += added.length - removed.length; + + if (added.length) { + this._trigger('add', { items: added }, senderId); + } + if (updated.length) { + this._trigger('update', { items: updated, data: updatedData }, senderId); + } + if (removed.length) { + this._trigger('remove', { items: removed }, senderId); + } + } + }; + + // copy subscription functionality from DataSet + DataView.prototype.on = DataSet.prototype.on; + DataView.prototype.off = DataSet.prototype.off; + DataView.prototype._trigger = DataSet.prototype._trigger; + + // TODO: make these functions deprecated (replaced with `on` and `off` since version 0.5) + DataView.prototype.subscribe = DataView.prototype.on; + DataView.prototype.unsubscribe = DataView.prototype.off; + + module.exports = DataView; + +/***/ }, +/* 11 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Emitter = __webpack_require__(12); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + var util = __webpack_require__(1); + var Point3d = __webpack_require__(13); + var Point2d = __webpack_require__(14); + var Camera = __webpack_require__(15); + var Filter = __webpack_require__(16); + var Slider = __webpack_require__(17); + var StepNumber = __webpack_require__(18); + + /** + * @constructor Graph3d + * Graph3d displays data in 3d. + * + * Graph3d is developed in javascript as a Google Visualization Chart. + * + * @param {Element} container The DOM element in which the Graph3d will + * be created. Normally a div element. + * @param {DataSet | DataView | Array} [data] + * @param {Object} [options] + */ + function Graph3d(container, data, options) { + if (!(this instanceof Graph3d)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } + + // create variables and set default values + this.containerElement = container; + this.width = '400px'; + this.height = '400px'; + this.margin = 10; // px + this.defaultXCenter = '55%'; + this.defaultYCenter = '50%'; + + this.xLabel = 'x'; + this.yLabel = 'y'; + this.zLabel = 'z'; + + var passValueFn = function passValueFn(v) { + return v; + }; + this.xValueLabel = passValueFn; + this.yValueLabel = passValueFn; + this.zValueLabel = passValueFn; + + this.filterLabel = 'time'; + this.legendLabel = 'value'; + + this.style = Graph3d.STYLE.DOT; + this.showPerspective = true; + this.showGrid = true; + this.keepAspectRatio = true; + this.showShadow = false; + this.showGrayBottom = false; // TODO: this does not work correctly + this.showTooltip = false; + this.verticalRatio = 0.5; // 0.1 to 1.0, where 1.0 results in a 'cube' + + this.animationInterval = 1000; // milliseconds + this.animationPreload = false; + + this.camera = new Camera(); + this.camera.setArmRotation(1.0, 0.5); + this.camera.setArmLength(1.7); + this.eye = new Point3d(0, 0, -1); // TODO: set eye.z about 3/4 of the width of the window? + + this.dataTable = null; // The original data table + this.dataPoints = null; // The table with point objects + + // the column indexes + this.colX = undefined; + this.colY = undefined; + this.colZ = undefined; + this.colValue = undefined; + this.colFilter = undefined; + + this.xMin = 0; + this.xStep = undefined; // auto by default + this.xMax = 1; + this.yMin = 0; + this.yStep = undefined; // auto by default + this.yMax = 1; + this.zMin = 0; + this.zStep = undefined; // auto by default + this.zMax = 1; + this.valueMin = 0; + this.valueMax = 1; + this.xBarWidth = 1; + this.yBarWidth = 1; + // TODO: customize axis range + + // colors + this.axisColor = '#4D4D4D'; + this.gridColor = '#D3D3D3'; + this.dataColor = { + fill: '#7DC1FF', + stroke: '#3267D2', + strokeWidth: 1 // px + }; + + // create a frame and canvas + this.create(); + + // apply options (also when undefined) + this.setOptions(options); + + // apply data + if (data) { + this.setData(data); + } + } + + // Extend Graph3d with an Emitter mixin + Emitter(Graph3d.prototype); + + /** + * Calculate the scaling values, dependent on the range in x, y, and z direction + */ + Graph3d.prototype._setScale = function () { + this.scale = new Point3d(1 / (this.xMax - this.xMin), 1 / (this.yMax - this.yMin), 1 / (this.zMax - this.zMin)); + + // keep aspect ration between x and y scale if desired + if (this.keepAspectRatio) { + if (this.scale.x < this.scale.y) { + //noinspection JSSuspiciousNameCombination + this.scale.y = this.scale.x; + } else { + //noinspection JSSuspiciousNameCombination + this.scale.x = this.scale.y; + } + } + + // scale the vertical axis + this.scale.z *= this.verticalRatio; + // TODO: can this be automated? verticalRatio? + + // determine scale for (optional) value + this.scale.value = 1 / (this.valueMax - this.valueMin); + + // position the camera arm + var xCenter = (this.xMax + this.xMin) / 2 * this.scale.x; + var yCenter = (this.yMax + this.yMin) / 2 * this.scale.y; + var zCenter = (this.zMax + this.zMin) / 2 * this.scale.z; + this.camera.setArmLocation(xCenter, yCenter, zCenter); + }; + + /** + * Convert a 3D location to a 2D location on screen + * http://en.wikipedia.org/wiki/3D_projection + * @param {Point3d} point3d A 3D point with parameters x, y, z + * @return {Point2d} point2d A 2D point with parameters x, y + */ + Graph3d.prototype._convert3Dto2D = function (point3d) { + var translation = this._convertPointToTranslation(point3d); + return this._convertTranslationToScreen(translation); + }; + + /** + * Convert a 3D location its translation seen from the camera + * http://en.wikipedia.org/wiki/3D_projection + * @param {Point3d} point3d A 3D point with parameters x, y, z + * @return {Point3d} translation A 3D point with parameters x, y, z This is + * the translation of the point, seen from the + * camera + */ + Graph3d.prototype._convertPointToTranslation = function (point3d) { + var ax = point3d.x * this.scale.x, + ay = point3d.y * this.scale.y, + az = point3d.z * this.scale.z, + cx = this.camera.getCameraLocation().x, + cy = this.camera.getCameraLocation().y, + cz = this.camera.getCameraLocation().z, + + // calculate angles + sinTx = Math.sin(this.camera.getCameraRotation().x), + cosTx = Math.cos(this.camera.getCameraRotation().x), + sinTy = Math.sin(this.camera.getCameraRotation().y), + cosTy = Math.cos(this.camera.getCameraRotation().y), + sinTz = Math.sin(this.camera.getCameraRotation().z), + cosTz = Math.cos(this.camera.getCameraRotation().z), + + // calculate translation + dx = cosTy * (sinTz * (ay - cy) + cosTz * (ax - cx)) - sinTy * (az - cz), + dy = sinTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) + cosTx * (cosTz * (ay - cy) - sinTz * (ax - cx)), + dz = cosTx * (cosTy * (az - cz) + sinTy * (sinTz * (ay - cy) + cosTz * (ax - cx))) - sinTx * (cosTz * (ay - cy) - sinTz * (ax - cx)); + + return new Point3d(dx, dy, dz); + }; + + /** + * Convert a translation point to a point on the screen + * @param {Point3d} translation A 3D point with parameters x, y, z This is + * the translation of the point, seen from the + * camera + * @return {Point2d} point2d A 2D point with parameters x, y + */ + Graph3d.prototype._convertTranslationToScreen = function (translation) { + var ex = this.eye.x, + ey = this.eye.y, + ez = this.eye.z, + dx = translation.x, + dy = translation.y, + dz = translation.z; + + // calculate position on screen from translation + var bx; + var by; + if (this.showPerspective) { + bx = (dx - ex) * (ez / dz); + by = (dy - ey) * (ez / dz); + } else { + bx = dx * -(ez / this.camera.getArmLength()); + by = dy * -(ez / this.camera.getArmLength()); + } + + // shift and scale the point to the center of the screen + // use the width of the graph to scale both horizontally and vertically. + return new Point2d(this.xcenter + bx * this.frame.canvas.clientWidth, this.ycenter - by * this.frame.canvas.clientWidth); + }; + + /** + * Set the background styling for the graph + * @param {string | {fill: string, stroke: string, strokeWidth: string}} backgroundColor + */ + Graph3d.prototype._setBackgroundColor = function (backgroundColor) { + var fill = 'white'; + var stroke = 'gray'; + var strokeWidth = 1; + + if (typeof backgroundColor === 'string') { + fill = backgroundColor; + stroke = 'none'; + strokeWidth = 0; + } else if (typeof backgroundColor === 'object') { + if (backgroundColor.fill !== undefined) fill = backgroundColor.fill; + if (backgroundColor.stroke !== undefined) stroke = backgroundColor.stroke; + if (backgroundColor.strokeWidth !== undefined) strokeWidth = backgroundColor.strokeWidth; + } else if (backgroundColor === undefined) { + // use use defaults + } else { + throw 'Unsupported type of backgroundColor'; + } + + this.frame.style.backgroundColor = fill; + this.frame.style.borderColor = stroke; + this.frame.style.borderWidth = strokeWidth + 'px'; + this.frame.style.borderStyle = 'solid'; + }; + + /// enumerate the available styles + Graph3d.STYLE = { + BAR: 0, + BARCOLOR: 1, + BARSIZE: 2, + DOT: 3, + DOTLINE: 4, + DOTCOLOR: 5, + DOTSIZE: 6, + GRID: 7, + LINE: 8, + SURFACE: 9 + }; + + /** + * Retrieve the style index from given styleName + * @param {string} styleName Style name such as 'dot', 'grid', 'dot-line' + * @return {Number} styleNumber Enumeration value representing the style, or -1 + * when not found + */ + Graph3d.prototype._getStyleNumber = function (styleName) { + switch (styleName) { + case 'dot': + return Graph3d.STYLE.DOT; + case 'dot-line': + return Graph3d.STYLE.DOTLINE; + case 'dot-color': + return Graph3d.STYLE.DOTCOLOR; + case 'dot-size': + return Graph3d.STYLE.DOTSIZE; + case 'line': + return Graph3d.STYLE.LINE; + case 'grid': + return Graph3d.STYLE.GRID; + case 'surface': + return Graph3d.STYLE.SURFACE; + case 'bar': + return Graph3d.STYLE.BAR; + case 'bar-color': + return Graph3d.STYLE.BARCOLOR; + case 'bar-size': + return Graph3d.STYLE.BARSIZE; + } + + return -1; + }; + + /** + * Determine the indexes of the data columns, based on the given style and data + * @param {DataSet} data + * @param {Number} style + */ + Graph3d.prototype._determineColumnIndexes = function (data, style) { + if (this.style === Graph3d.STYLE.DOT || this.style === Graph3d.STYLE.DOTLINE || this.style === Graph3d.STYLE.LINE || this.style === Graph3d.STYLE.GRID || this.style === Graph3d.STYLE.SURFACE || this.style === Graph3d.STYLE.BAR) { + // 3 columns expected, and optionally a 4th with filter values + this.colX = 0; + this.colY = 1; + this.colZ = 2; + this.colValue = undefined; + + if (data.getNumberOfColumns() > 3) { + this.colFilter = 3; + } + } else if (this.style === Graph3d.STYLE.DOTCOLOR || this.style === Graph3d.STYLE.DOTSIZE || this.style === Graph3d.STYLE.BARCOLOR || this.style === Graph3d.STYLE.BARSIZE) { + // 4 columns expected, and optionally a 5th with filter values + this.colX = 0; + this.colY = 1; + this.colZ = 2; + this.colValue = 3; + + if (data.getNumberOfColumns() > 4) { + this.colFilter = 4; + } + } else { + throw 'Unknown style "' + this.style + '"'; + } + }; + + Graph3d.prototype.getNumberOfRows = function (data) { + return data.length; + }; + + Graph3d.prototype.getNumberOfColumns = function (data) { + var counter = 0; + for (var column in data[0]) { + if (data[0].hasOwnProperty(column)) { + counter++; + } + } + return counter; + }; + + Graph3d.prototype.getDistinctValues = function (data, column) { + var distinctValues = []; + for (var i = 0; i < data.length; i++) { + if (distinctValues.indexOf(data[i][column]) == -1) { + distinctValues.push(data[i][column]); + } + } + return distinctValues; + }; + + Graph3d.prototype.getColumnRange = function (data, column) { + var minMax = { min: data[0][column], max: data[0][column] }; + for (var i = 0; i < data.length; i++) { + if (minMax.min > data[i][column]) { + minMax.min = data[i][column]; + } + if (minMax.max < data[i][column]) { + minMax.max = data[i][column]; + } + } + return minMax; + }; + + /** + * Initialize the data from the data table. Calculate minimum and maximum values + * and column index values + * @param {Array | DataSet | DataView} rawData The data containing the items for the Graph. + * @param {Number} style Style Number + */ + Graph3d.prototype._dataInitialize = function (rawData, style) { + var me = this; + + // unsubscribe from the dataTable + if (this.dataSet) { + this.dataSet.off('*', this._onChange); + } + + if (rawData === undefined) return; + + if (Array.isArray(rawData)) { + rawData = new DataSet(rawData); + } + + var data; + if (rawData instanceof DataSet || rawData instanceof DataView) { + data = rawData.get(); + } else { + throw new Error('Array, DataSet, or DataView expected'); + } + + if (data.length == 0) return; + + this.dataSet = rawData; + this.dataTable = data; + + // subscribe to changes in the dataset + this._onChange = function () { + me.setData(me.dataSet); + }; + this.dataSet.on('*', this._onChange); + + // _determineColumnIndexes + // getNumberOfRows (points) + // getNumberOfColumns (x,y,z,v,t,t1,t2...) + // getDistinctValues (unique values?) + // getColumnRange + + // determine the location of x,y,z,value,filter columns + this.colX = 'x'; + this.colY = 'y'; + this.colZ = 'z'; + this.colValue = 'style'; + this.colFilter = 'filter'; + + // check if a filter column is provided + if (data[0].hasOwnProperty('filter')) { + if (this.dataFilter === undefined) { + this.dataFilter = new Filter(rawData, this.colFilter, this); + this.dataFilter.setOnLoadCallback(function () { + me.redraw(); + }); + } + } + + var withBars = this.style == Graph3d.STYLE.BAR || this.style == Graph3d.STYLE.BARCOLOR || this.style == Graph3d.STYLE.BARSIZE; + + // determine barWidth from data + if (withBars) { + if (this.defaultXBarWidth !== undefined) { + this.xBarWidth = this.defaultXBarWidth; + } else { + var dataX = this.getDistinctValues(data, this.colX); + this.xBarWidth = dataX[1] - dataX[0] || 1; + } + + if (this.defaultYBarWidth !== undefined) { + this.yBarWidth = this.defaultYBarWidth; + } else { + var dataY = this.getDistinctValues(data, this.colY); + this.yBarWidth = dataY[1] - dataY[0] || 1; + } + } + + // calculate minimums and maximums + var xRange = this.getColumnRange(data, this.colX); + if (withBars) { + xRange.min -= this.xBarWidth / 2; + xRange.max += this.xBarWidth / 2; + } + this.xMin = this.defaultXMin !== undefined ? this.defaultXMin : xRange.min; + this.xMax = this.defaultXMax !== undefined ? this.defaultXMax : xRange.max; + if (this.xMax <= this.xMin) this.xMax = this.xMin + 1; + this.xStep = this.defaultXStep !== undefined ? this.defaultXStep : (this.xMax - this.xMin) / 5; + + var yRange = this.getColumnRange(data, this.colY); + if (withBars) { + yRange.min -= this.yBarWidth / 2; + yRange.max += this.yBarWidth / 2; + } + this.yMin = this.defaultYMin !== undefined ? this.defaultYMin : yRange.min; + this.yMax = this.defaultYMax !== undefined ? this.defaultYMax : yRange.max; + if (this.yMax <= this.yMin) this.yMax = this.yMin + 1; + this.yStep = this.defaultYStep !== undefined ? this.defaultYStep : (this.yMax - this.yMin) / 5; + + var zRange = this.getColumnRange(data, this.colZ); + this.zMin = this.defaultZMin !== undefined ? this.defaultZMin : zRange.min; + this.zMax = this.defaultZMax !== undefined ? this.defaultZMax : zRange.max; + if (this.zMax <= this.zMin) this.zMax = this.zMin + 1; + this.zStep = this.defaultZStep !== undefined ? this.defaultZStep : (this.zMax - this.zMin) / 5; + + if (this.colValue !== undefined) { + var valueRange = this.getColumnRange(data, this.colValue); + this.valueMin = this.defaultValueMin !== undefined ? this.defaultValueMin : valueRange.min; + this.valueMax = this.defaultValueMax !== undefined ? this.defaultValueMax : valueRange.max; + if (this.valueMax <= this.valueMin) this.valueMax = this.valueMin + 1; + } + + // set the scale dependent on the ranges. + this._setScale(); + }; + + /** + * Filter the data based on the current filter + * @param {Array} data + * @return {Array} dataPoints Array with point objects which can be drawn on screen + */ + Graph3d.prototype._getDataPoints = function (data) { + // TODO: store the created matrix dataPoints in the filters instead of reloading each time + var x, y, i, z, obj, point; + + var dataPoints = []; + + if (this.style === Graph3d.STYLE.GRID || this.style === Graph3d.STYLE.SURFACE) { + // copy all values from the google data table to a matrix + // the provided values are supposed to form a grid of (x,y) positions + + // create two lists with all present x and y values + var dataX = []; + var dataY = []; + for (i = 0; i < this.getNumberOfRows(data); i++) { + x = data[i][this.colX] || 0; + y = data[i][this.colY] || 0; + + if (dataX.indexOf(x) === -1) { + dataX.push(x); + } + if (dataY.indexOf(y) === -1) { + dataY.push(y); + } + } + + var sortNumber = function sortNumber(a, b) { + return a - b; + }; + dataX.sort(sortNumber); + dataY.sort(sortNumber); + + // create a grid, a 2d matrix, with all values. + var dataMatrix = []; // temporary data matrix + for (i = 0; i < data.length; i++) { + x = data[i][this.colX] || 0; + y = data[i][this.colY] || 0; + z = data[i][this.colZ] || 0; + + var xIndex = dataX.indexOf(x); // TODO: implement Array().indexOf() for Internet Explorer + var yIndex = dataY.indexOf(y); + + if (dataMatrix[xIndex] === undefined) { + dataMatrix[xIndex] = []; + } + + var point3d = new Point3d(); + point3d.x = x; + point3d.y = y; + point3d.z = z; + + obj = {}; + obj.point = point3d; + obj.trans = undefined; + obj.screen = undefined; + obj.bottom = new Point3d(x, y, this.zMin); + + dataMatrix[xIndex][yIndex] = obj; + + dataPoints.push(obj); + } + + // fill in the pointers to the neighbors. + for (x = 0; x < dataMatrix.length; x++) { + for (y = 0; y < dataMatrix[x].length; y++) { + if (dataMatrix[x][y]) { + dataMatrix[x][y].pointRight = x < dataMatrix.length - 1 ? dataMatrix[x + 1][y] : undefined; + dataMatrix[x][y].pointTop = y < dataMatrix[x].length - 1 ? dataMatrix[x][y + 1] : undefined; + dataMatrix[x][y].pointCross = x < dataMatrix.length - 1 && y < dataMatrix[x].length - 1 ? dataMatrix[x + 1][y + 1] : undefined; + } + } + } + } else { + // 'dot', 'dot-line', etc. + // copy all values from the google data table to a list with Point3d objects + for (i = 0; i < data.length; i++) { + point = new Point3d(); + point.x = data[i][this.colX] || 0; + point.y = data[i][this.colY] || 0; + point.z = data[i][this.colZ] || 0; + + if (this.colValue !== undefined) { + point.value = data[i][this.colValue] || 0; + } + + obj = {}; + obj.point = point; + obj.bottom = new Point3d(point.x, point.y, this.zMin); + obj.trans = undefined; + obj.screen = undefined; + + dataPoints.push(obj); + } + } + + return dataPoints; + }; + + /** + * Create the main frame for the Graph3d. + * This function is executed once when a Graph3d object is created. The frame + * contains a canvas, and this canvas contains all objects like the axis and + * nodes. + */ + Graph3d.prototype.create = function () { + // remove all elements from the container element. + while (this.containerElement.hasChildNodes()) { + this.containerElement.removeChild(this.containerElement.firstChild); + } + + this.frame = document.createElement('div'); + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; + + // create the graph canvas (HTML canvas element) + this.frame.canvas = document.createElement('canvas'); + this.frame.canvas.style.position = 'relative'; + this.frame.appendChild(this.frame.canvas); + //if (!this.frame.canvas.getContext) { + { + var noCanvas = document.createElement('DIV'); + noCanvas.style.color = 'red'; + noCanvas.style.fontWeight = 'bold'; + noCanvas.style.padding = '10px'; + noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; + this.frame.canvas.appendChild(noCanvas); + } + + this.frame.filter = document.createElement('div'); + this.frame.filter.style.position = 'absolute'; + this.frame.filter.style.bottom = '0px'; + this.frame.filter.style.left = '0px'; + this.frame.filter.style.width = '100%'; + this.frame.appendChild(this.frame.filter); + + // add event listeners to handle moving and zooming the contents + var me = this; + var onmousedown = function onmousedown(event) { + me._onMouseDown(event); + }; + var ontouchstart = function ontouchstart(event) { + me._onTouchStart(event); + }; + var onmousewheel = function onmousewheel(event) { + me._onWheel(event); + }; + var ontooltip = function ontooltip(event) { + me._onTooltip(event); + }; + // TODO: these events are never cleaned up... can give a 'memory leakage' + + util.addEventListener(this.frame.canvas, 'keydown', onkeydown); + util.addEventListener(this.frame.canvas, 'mousedown', onmousedown); + util.addEventListener(this.frame.canvas, 'touchstart', ontouchstart); + util.addEventListener(this.frame.canvas, 'mousewheel', onmousewheel); + util.addEventListener(this.frame.canvas, 'mousemove', ontooltip); + + // add the new graph to the container element + this.containerElement.appendChild(this.frame); + }; + + /** + * Set a new size for the graph + * @param {string} width Width in pixels or percentage (for example '800px' + * or '50%') + * @param {string} height Height in pixels or percentage (for example '400px' + * or '30%') + */ + Graph3d.prototype.setSize = function (width, height) { + this.frame.style.width = width; + this.frame.style.height = height; + + this._resizeCanvas(); + }; + + /** + * Resize the canvas to the current size of the frame + */ + Graph3d.prototype._resizeCanvas = function () { + this.frame.canvas.style.width = '100%'; + this.frame.canvas.style.height = '100%'; + + this.frame.canvas.width = this.frame.canvas.clientWidth; + this.frame.canvas.height = this.frame.canvas.clientHeight; + + // adjust with for margin + this.frame.filter.style.width = this.frame.canvas.clientWidth - 2 * 10 + 'px'; + }; + + /** + * Start animation + */ + Graph3d.prototype.animationStart = function () { + if (!this.frame.filter || !this.frame.filter.slider) throw 'No animation available'; + + this.frame.filter.slider.play(); + }; + + /** + * Stop animation + */ + Graph3d.prototype.animationStop = function () { + if (!this.frame.filter || !this.frame.filter.slider) return; + + this.frame.filter.slider.stop(); + }; + + /** + * Resize the center position based on the current values in this.defaultXCenter + * and this.defaultYCenter (which are strings with a percentage or a value + * in pixels). The center positions are the variables this.xCenter + * and this.yCenter + */ + Graph3d.prototype._resizeCenter = function () { + // calculate the horizontal center position + if (this.defaultXCenter.charAt(this.defaultXCenter.length - 1) === '%') { + this.xcenter = parseFloat(this.defaultXCenter) / 100 * this.frame.canvas.clientWidth; + } else { + this.xcenter = parseFloat(this.defaultXCenter); // supposed to be in px + } + + // calculate the vertical center position + if (this.defaultYCenter.charAt(this.defaultYCenter.length - 1) === '%') { + this.ycenter = parseFloat(this.defaultYCenter) / 100 * (this.frame.canvas.clientHeight - this.frame.filter.clientHeight); + } else { + this.ycenter = parseFloat(this.defaultYCenter); // supposed to be in px + } + }; + + /** + * Set the rotation and distance of the camera + * @param {Object} pos An object with the camera position. The object + * contains three parameters: + * - horizontal {Number} + * The horizontal rotation, between 0 and 2*PI. + * Optional, can be left undefined. + * - vertical {Number} + * The vertical rotation, between 0 and 0.5*PI + * if vertical=0.5*PI, the graph is shown from the + * top. Optional, can be left undefined. + * - distance {Number} + * The (normalized) distance of the camera to the + * center of the graph, a value between 0.71 and 5.0. + * Optional, can be left undefined. + */ + Graph3d.prototype.setCameraPosition = function (pos) { + if (pos === undefined) { + return; + } + + if (pos.horizontal !== undefined && pos.vertical !== undefined) { + this.camera.setArmRotation(pos.horizontal, pos.vertical); + } + + if (pos.distance !== undefined) { + this.camera.setArmLength(pos.distance); + } + + this.redraw(); + }; + + /** + * Retrieve the current camera rotation + * @return {object} An object with parameters horizontal, vertical, and + * distance + */ + Graph3d.prototype.getCameraPosition = function () { + var pos = this.camera.getArmRotation(); + pos.distance = this.camera.getArmLength(); + return pos; + }; + + /** + * Load data into the 3D Graph + */ + Graph3d.prototype._readData = function (data) { + // read the data + this._dataInitialize(data, this.style); + + if (this.dataFilter) { + // apply filtering + this.dataPoints = this.dataFilter._getDataPoints(); + } else { + // no filtering. load all data + this.dataPoints = this._getDataPoints(this.dataTable); + } + + // draw the filter + this._redrawFilter(); + }; + + /** + * Replace the dataset of the Graph3d + * @param {Array | DataSet | DataView} data + */ + Graph3d.prototype.setData = function (data) { + this._readData(data); + this.redraw(); + + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; + + /** + * Update the options. Options will be merged with current options + * @param {Object} options + */ + Graph3d.prototype.setOptions = function (options) { + var cameraPosition = undefined; + + this.animationStop(); + + if (options !== undefined) { + // retrieve parameter values + if (options.width !== undefined) this.width = options.width; + if (options.height !== undefined) this.height = options.height; + + if (options.xCenter !== undefined) this.defaultXCenter = options.xCenter; + if (options.yCenter !== undefined) this.defaultYCenter = options.yCenter; + + if (options.filterLabel !== undefined) this.filterLabel = options.filterLabel; + if (options.legendLabel !== undefined) this.legendLabel = options.legendLabel; + if (options.xLabel !== undefined) this.xLabel = options.xLabel; + if (options.yLabel !== undefined) this.yLabel = options.yLabel; + if (options.zLabel !== undefined) this.zLabel = options.zLabel; + + if (options.xValueLabel !== undefined) this.xValueLabel = options.xValueLabel; + if (options.yValueLabel !== undefined) this.yValueLabel = options.yValueLabel; + if (options.zValueLabel !== undefined) this.zValueLabel = options.zValueLabel; + + if (options.style !== undefined) { + var styleNumber = this._getStyleNumber(options.style); + if (styleNumber !== -1) { + this.style = styleNumber; + } + } + if (options.showGrid !== undefined) this.showGrid = options.showGrid; + if (options.showPerspective !== undefined) this.showPerspective = options.showPerspective; + if (options.showShadow !== undefined) this.showShadow = options.showShadow; + if (options.tooltip !== undefined) this.showTooltip = options.tooltip; + if (options.showAnimationControls !== undefined) this.showAnimationControls = options.showAnimationControls; + if (options.keepAspectRatio !== undefined) this.keepAspectRatio = options.keepAspectRatio; + if (options.verticalRatio !== undefined) this.verticalRatio = options.verticalRatio; + + if (options.animationInterval !== undefined) this.animationInterval = options.animationInterval; + if (options.animationPreload !== undefined) this.animationPreload = options.animationPreload; + if (options.animationAutoStart !== undefined) this.animationAutoStart = options.animationAutoStart; + + if (options.xBarWidth !== undefined) this.defaultXBarWidth = options.xBarWidth; + if (options.yBarWidth !== undefined) this.defaultYBarWidth = options.yBarWidth; + + if (options.xMin !== undefined) this.defaultXMin = options.xMin; + if (options.xStep !== undefined) this.defaultXStep = options.xStep; + if (options.xMax !== undefined) this.defaultXMax = options.xMax; + if (options.yMin !== undefined) this.defaultYMin = options.yMin; + if (options.yStep !== undefined) this.defaultYStep = options.yStep; + if (options.yMax !== undefined) this.defaultYMax = options.yMax; + if (options.zMin !== undefined) this.defaultZMin = options.zMin; + if (options.zStep !== undefined) this.defaultZStep = options.zStep; + if (options.zMax !== undefined) this.defaultZMax = options.zMax; + if (options.valueMin !== undefined) this.defaultValueMin = options.valueMin; + if (options.valueMax !== undefined) this.defaultValueMax = options.valueMax; + if (options.backgroundColor !== undefined) this._setBackgroundColor(options.backgroundColor); + + if (options.cameraPosition !== undefined) cameraPosition = options.cameraPosition; + + if (cameraPosition !== undefined) { + this.camera.setArmRotation(cameraPosition.horizontal, cameraPosition.vertical); + this.camera.setArmLength(cameraPosition.distance); + } + + // colors + if (options.axisColor !== undefined) this.axisColor = options.axisColor; + if (options.gridColor !== undefined) this.gridColor = options.gridColor; + if (options.dataColor) { + if (typeof options.dataColor === 'string') { + this.dataColor.fill = options.dataColor; + this.dataColor.stroke = options.dataColor; + } else { + if (options.dataColor.fill) { + this.dataColor.fill = options.dataColor.fill; + } + if (options.dataColor.stroke) { + this.dataColor.stroke = options.dataColor.stroke; + } + if (options.dataColor.strokeWidth !== undefined) { + this.dataColor.strokeWidth = options.dataColor.strokeWidth; + } + } + } + } + + this.setSize(this.width, this.height); + + // re-load the data + if (this.dataTable) { + this.setData(this.dataTable); + } + + // start animation when option is true + if (this.animationAutoStart && this.dataFilter) { + this.animationStart(); + } + }; + + /** + * Redraw the Graph. + */ + Graph3d.prototype.redraw = function () { + if (this.dataPoints === undefined) { + throw 'Error: graph data not initialized'; + } + + this._resizeCanvas(); + this._resizeCenter(); + this._redrawSlider(); + this._redrawClear(); + this._redrawAxis(); + + if (this.style === Graph3d.STYLE.GRID || this.style === Graph3d.STYLE.SURFACE) { + this._redrawDataGrid(); + } else if (this.style === Graph3d.STYLE.LINE) { + this._redrawDataLine(); + } else if (this.style === Graph3d.STYLE.BAR || this.style === Graph3d.STYLE.BARCOLOR || this.style === Graph3d.STYLE.BARSIZE) { + this._redrawDataBar(); + } else { + // style is DOT, DOTLINE, DOTCOLOR, DOTSIZE + this._redrawDataDot(); + } + + this._redrawInfo(); + this._redrawLegend(); + }; + + /** + * Clear the canvas before redrawing + */ + Graph3d.prototype._redrawClear = function () { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + + ctx.clearRect(0, 0, canvas.width, canvas.height); + }; + + /** + * Redraw the legend showing the colors + */ + Graph3d.prototype._redrawLegend = function () { + var y; + + if (this.style === Graph3d.STYLE.DOTCOLOR || this.style === Graph3d.STYLE.DOTSIZE) { + + var dotSize = this.frame.clientWidth * 0.02; + + var widthMin, widthMax; + if (this.style === Graph3d.STYLE.DOTSIZE) { + widthMin = dotSize / 2; // px + widthMax = dotSize / 2 + dotSize * 2; // Todo: put this in one function + } else { + widthMin = 20; // px + widthMax = 20; // px + } + + var height = Math.max(this.frame.clientHeight * 0.25, 100); + var top = this.margin; + var right = this.frame.clientWidth - this.margin; + var left = right - widthMax; + var bottom = top + height; + } + + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + ctx.lineWidth = 1; + ctx.font = '14px arial'; // TODO: put in options + + if (this.style === Graph3d.STYLE.DOTCOLOR) { + // draw the color bar + var ymin = 0; + var ymax = height; // Todo: make height customizable + for (y = ymin; y < ymax; y++) { + var f = (y - ymin) / (ymax - ymin); + + //var width = (dotSize / 2 + (1-f) * dotSize * 2); // Todo: put this in one function + var hue = f * 240; + var color = this._hsv2rgb(hue, 1, 1); + + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(left, top + y); + ctx.lineTo(right, top + y); + ctx.stroke(); + } + + ctx.strokeStyle = this.axisColor; + ctx.strokeRect(left, top, widthMax, height); + } + + if (this.style === Graph3d.STYLE.DOTSIZE) { + // draw border around color bar + ctx.strokeStyle = this.axisColor; + ctx.fillStyle = this.dataColor.fill; + ctx.beginPath(); + ctx.moveTo(left, top); + ctx.lineTo(right, top); + ctx.lineTo(right - widthMax + widthMin, bottom); + ctx.lineTo(left, bottom); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); + } + + if (this.style === Graph3d.STYLE.DOTCOLOR || this.style === Graph3d.STYLE.DOTSIZE) { + // print values along the color bar + var gridLineLen = 5; // px + var step = new StepNumber(this.valueMin, this.valueMax, (this.valueMax - this.valueMin) / 5, true); + step.start(); + if (step.getCurrent() < this.valueMin) { + step.next(); + } + while (!step.end()) { + y = bottom - (step.getCurrent() - this.valueMin) / (this.valueMax - this.valueMin) * height; + + ctx.beginPath(); + ctx.moveTo(left - gridLineLen, y); + ctx.lineTo(left, y); + ctx.stroke(); + + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.axisColor; + ctx.fillText(step.getCurrent(), left - 2 * gridLineLen, y); + + step.next(); + } + + ctx.textAlign = 'right'; + ctx.textBaseline = 'top'; + var label = this.legendLabel; + ctx.fillText(label, right, bottom + this.margin); + } + }; + + /** + * Redraw the filter + */ + Graph3d.prototype._redrawFilter = function () { + this.frame.filter.innerHTML = ''; + + if (this.dataFilter) { + var options = { + 'visible': this.showAnimationControls + }; + var slider = new Slider(this.frame.filter, options); + this.frame.filter.slider = slider; + + // TODO: css here is not nice here... + this.frame.filter.style.padding = '10px'; + //this.frame.filter.style.backgroundColor = '#EFEFEF'; + + slider.setValues(this.dataFilter.values); + slider.setPlayInterval(this.animationInterval); + + // create an event handler + var me = this; + var onchange = function onchange() { + var index = slider.getIndex(); + + me.dataFilter.selectValue(index); + me.dataPoints = me.dataFilter._getDataPoints(); + + me.redraw(); + }; + slider.setOnChangeCallback(onchange); + } else { + this.frame.filter.slider = undefined; + } + }; + + /** + * Redraw the slider + */ + Graph3d.prototype._redrawSlider = function () { + if (this.frame.filter.slider !== undefined) { + this.frame.filter.slider.redraw(); + } + }; + + /** + * Redraw common information + */ + Graph3d.prototype._redrawInfo = function () { + if (this.dataFilter) { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + + ctx.font = '14px arial'; // TODO: put in options + ctx.lineStyle = 'gray'; + ctx.fillStyle = 'gray'; + ctx.textAlign = 'left'; + ctx.textBaseline = 'top'; + + var x = this.margin; + var y = this.margin; + ctx.fillText(this.dataFilter.getLabel() + ': ' + this.dataFilter.getSelectedValue(), x, y); + } + }; + + /** + * Redraw the axis + */ + Graph3d.prototype._redrawAxis = function () { + var canvas = this.frame.canvas, + ctx = canvas.getContext('2d'), + from, + to, + step, + prettyStep, + text, + xText, + yText, + zText, + offset, + xOffset, + yOffset, + xMin2d, + xMax2d; + + // TODO: get the actual rendered style of the containerElement + //ctx.font = this.containerElement.style.font; + ctx.font = 24 / this.camera.getArmLength() + 'px arial'; + + // calculate the length for the short grid lines + var gridLenX = 0.025 / this.scale.x; + var gridLenY = 0.025 / this.scale.y; + var textMargin = 5 / this.camera.getArmLength(); // px + var armAngle = this.camera.getArmRotation().horizontal; + + // draw x-grid lines + ctx.lineWidth = 1; + prettyStep = this.defaultXStep === undefined; + step = new StepNumber(this.xMin, this.xMax, this.xStep, prettyStep); + step.start(); + if (step.getCurrent() < this.xMin) { + step.next(); + } + while (!step.end()) { + var x = step.getCurrent(); + + if (this.showGrid) { + from = this._convert3Dto2D(new Point3d(x, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(x, this.yMax, this.zMin)); + ctx.strokeStyle = this.gridColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + } else { + from = this._convert3Dto2D(new Point3d(x, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(x, this.yMin + gridLenX, this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + + from = this._convert3Dto2D(new Point3d(x, this.yMax, this.zMin)); + to = this._convert3Dto2D(new Point3d(x, this.yMax - gridLenX, this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + } + + yText = Math.cos(armAngle) > 0 ? this.yMin : this.yMax; + text = this._convert3Dto2D(new Point3d(x, yText, this.zMin)); + if (Math.cos(armAngle * 2) > 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + text.y += textMargin; + } else if (Math.sin(armAngle * 2) < 0) { + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.axisColor; + ctx.fillText(' ' + this.xValueLabel(step.getCurrent()) + ' ', text.x, text.y); + + step.next(); + } + + // draw y-grid lines + ctx.lineWidth = 1; + prettyStep = this.defaultYStep === undefined; + step = new StepNumber(this.yMin, this.yMax, this.yStep, prettyStep); + step.start(); + if (step.getCurrent() < this.yMin) { + step.next(); + } + while (!step.end()) { + if (this.showGrid) { + from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMax, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.gridColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + } else { + from = this._convert3Dto2D(new Point3d(this.xMin, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMin + gridLenY, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + + from = this._convert3Dto2D(new Point3d(this.xMax, step.getCurrent(), this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMax - gridLenY, step.getCurrent(), this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + } + + xText = Math.sin(armAngle) > 0 ? this.xMin : this.xMax; + text = this._convert3Dto2D(new Point3d(xText, step.getCurrent(), this.zMin)); + if (Math.cos(armAngle * 2) < 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + text.y += textMargin; + } else if (Math.sin(armAngle * 2) > 0) { + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.axisColor; + ctx.fillText(' ' + this.yValueLabel(step.getCurrent()) + ' ', text.x, text.y); + + step.next(); + } + + // draw z-grid lines and axis + ctx.lineWidth = 1; + prettyStep = this.defaultZStep === undefined; + step = new StepNumber(this.zMin, this.zMax, this.zStep, prettyStep); + step.start(); + if (step.getCurrent() < this.zMin) { + step.next(); + } + xText = Math.cos(armAngle) > 0 ? this.xMin : this.xMax; + yText = Math.sin(armAngle) < 0 ? this.yMin : this.yMax; + while (!step.end()) { + // TODO: make z-grid lines really 3d? + from = this._convert3Dto2D(new Point3d(xText, yText, step.getCurrent())); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(from.x - textMargin, from.y); + ctx.stroke(); + + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.axisColor; + ctx.fillText(this.zValueLabel(step.getCurrent()) + ' ', from.x - 5, from.y); + + step.next(); + } + ctx.lineWidth = 1; + from = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); + to = this._convert3Dto2D(new Point3d(xText, yText, this.zMax)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + + // draw x-axis + ctx.lineWidth = 1; + // line at yMin + xMin2d = this._convert3Dto2D(new Point3d(this.xMin, this.yMin, this.zMin)); + xMax2d = this._convert3Dto2D(new Point3d(this.xMax, this.yMin, this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(xMin2d.x, xMin2d.y); + ctx.lineTo(xMax2d.x, xMax2d.y); + ctx.stroke(); + // line at ymax + xMin2d = this._convert3Dto2D(new Point3d(this.xMin, this.yMax, this.zMin)); + xMax2d = this._convert3Dto2D(new Point3d(this.xMax, this.yMax, this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(xMin2d.x, xMin2d.y); + ctx.lineTo(xMax2d.x, xMax2d.y); + ctx.stroke(); + + // draw y-axis + ctx.lineWidth = 1; + // line at xMin + from = this._convert3Dto2D(new Point3d(this.xMin, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMin, this.yMax, this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + // line at xMax + from = this._convert3Dto2D(new Point3d(this.xMax, this.yMin, this.zMin)); + to = this._convert3Dto2D(new Point3d(this.xMax, this.yMax, this.zMin)); + ctx.strokeStyle = this.axisColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(to.x, to.y); + ctx.stroke(); + + // draw x-label + var xLabel = this.xLabel; + if (xLabel.length > 0) { + yOffset = 0.1 / this.scale.y; + xText = (this.xMin + this.xMax) / 2; + yText = Math.cos(armAngle) > 0 ? this.yMin - yOffset : this.yMax + yOffset; + text = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); + if (Math.cos(armAngle * 2) > 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + } else if (Math.sin(armAngle * 2) < 0) { + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.axisColor; + ctx.fillText(xLabel, text.x, text.y); + } + + // draw y-label + var yLabel = this.yLabel; + if (yLabel.length > 0) { + xOffset = 0.1 / this.scale.x; + xText = Math.sin(armAngle) > 0 ? this.xMin - xOffset : this.xMax + xOffset; + yText = (this.yMin + this.yMax) / 2; + text = this._convert3Dto2D(new Point3d(xText, yText, this.zMin)); + if (Math.cos(armAngle * 2) < 0) { + ctx.textAlign = 'center'; + ctx.textBaseline = 'top'; + } else if (Math.sin(armAngle * 2) > 0) { + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + } else { + ctx.textAlign = 'left'; + ctx.textBaseline = 'middle'; + } + ctx.fillStyle = this.axisColor; + ctx.fillText(yLabel, text.x, text.y); + } + + // draw z-label + var zLabel = this.zLabel; + if (zLabel.length > 0) { + offset = 30; // pixels. // TODO: relate to the max width of the values on the z axis? + xText = Math.cos(armAngle) > 0 ? this.xMin : this.xMax; + yText = Math.sin(armAngle) < 0 ? this.yMin : this.yMax; + zText = (this.zMin + this.zMax) / 2; + text = this._convert3Dto2D(new Point3d(xText, yText, zText)); + ctx.textAlign = 'right'; + ctx.textBaseline = 'middle'; + ctx.fillStyle = this.axisColor; + ctx.fillText(zLabel, text.x - offset, text.y); + } + }; + + /** + * Calculate the color based on the given value. + * @param {Number} H Hue, a value be between 0 and 360 + * @param {Number} S Saturation, a value between 0 and 1 + * @param {Number} V Value, a value between 0 and 1 + */ + Graph3d.prototype._hsv2rgb = function (H, S, V) { + var R, G, B, C, Hi, X; + + C = V * S; + Hi = Math.floor(H / 60); // hi = 0,1,2,3,4,5 + X = C * (1 - Math.abs(H / 60 % 2 - 1)); + + switch (Hi) { + case 0: + R = C;G = X;B = 0;break; + case 1: + R = X;G = C;B = 0;break; + case 2: + R = 0;G = C;B = X;break; + case 3: + R = 0;G = X;B = C;break; + case 4: + R = X;G = 0;B = C;break; + case 5: + R = C;G = 0;B = X;break; + + default: + R = 0;G = 0;B = 0;break; + } + + return 'RGB(' + parseInt(R * 255) + ',' + parseInt(G * 255) + ',' + parseInt(B * 255) + ')'; + }; + + /** + * Draw all datapoints as a grid + * This function can be used when the style is 'grid' + */ + Graph3d.prototype._redrawDataGrid = function () { + var canvas = this.frame.canvas, + ctx = canvas.getContext('2d'), + point, + right, + top, + cross, + i, + topSideVisible, + fillStyle, + strokeStyle, + lineWidth, + h, + s, + v, + zAvg; + + ctx.lineJoin = 'round'; + ctx.lineCap = 'round'; + + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + + // calculate the translations and screen position of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + + // calculate the translation of the point at the bottom (needed for sorting) + var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); + this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; + } + + // sort the points on depth of their (x,y) position (not on z) + var sortDepth = function sortDepth(a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); + + if (this.style === Graph3d.STYLE.SURFACE) { + for (i = 0; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + right = this.dataPoints[i].pointRight; + top = this.dataPoints[i].pointTop; + cross = this.dataPoints[i].pointCross; + + if (point !== undefined && right !== undefined && top !== undefined && cross !== undefined) { + + if (this.showGrayBottom || this.showShadow) { + // calculate the cross product of the two vectors from center + // to left and right, in order to know whether we are looking at the + // bottom or at the top side. We can also use the cross product + // for calculating light intensity + var aDiff = Point3d.subtract(cross.trans, point.trans); + var bDiff = Point3d.subtract(top.trans, right.trans); + var crossproduct = Point3d.crossProduct(aDiff, bDiff); + var len = crossproduct.length(); + // FIXME: there is a bug with determining the surface side (shadow or colored) + + topSideVisible = crossproduct.z > 0; + } else { + topSideVisible = true; + } + + if (topSideVisible) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + right.point.z + top.point.z + cross.point.z) / 4; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + s = 1; // saturation + + if (this.showShadow) { + v = Math.min(1 + crossproduct.x / len / 2, 1); // value. TODO: scale + fillStyle = this._hsv2rgb(h, s, v); + strokeStyle = fillStyle; + } else { + v = 1; + fillStyle = this._hsv2rgb(h, s, v); + strokeStyle = this.axisColor; // TODO: should be customizable + } + } else { + fillStyle = 'gray'; + strokeStyle = this.axisColor; + } + + ctx.lineWidth = this._getStrokeWidth(point); + ctx.fillStyle = fillStyle; + ctx.strokeStyle = strokeStyle; + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(right.screen.x, right.screen.y); + ctx.lineTo(cross.screen.x, cross.screen.y); + ctx.lineTo(top.screen.x, top.screen.y); + ctx.closePath(); + ctx.fill(); + ctx.stroke(); // TODO: only draw stroke when strokeWidth > 0 + } + } + } else { + // grid style + for (i = 0; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + right = this.dataPoints[i].pointRight; + top = this.dataPoints[i].pointTop; + + if (point !== undefined && right !== undefined) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + right.point.z) / 2; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + + ctx.lineWidth = this._getStrokeWidth(point) * 2; + ctx.strokeStyle = this._hsv2rgb(h, 1, 1); + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(right.screen.x, right.screen.y); + ctx.stroke(); + } + + if (point !== undefined && top !== undefined) { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + zAvg = (point.point.z + top.point.z) / 2; + h = (1 - (zAvg - this.zMin) * this.scale.z / this.verticalRatio) * 240; + + ctx.lineWidth = this._getStrokeWidth(point) * 2; + ctx.strokeStyle = this._hsv2rgb(h, 1, 1); + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + ctx.lineTo(top.screen.x, top.screen.y); + ctx.stroke(); + } + } + } + }; + + Graph3d.prototype._getStrokeWidth = function (point) { + if (point !== undefined) { + if (this.showPerspective) { + return 1 / -point.trans.z * this.dataColor.strokeWidth; + } else { + return -(this.eye.z / this.camera.getArmLength()) * this.dataColor.strokeWidth; + } + } + + return this.dataColor.strokeWidth; + }; + + /** + * Draw all datapoints as dots. + * This function can be used when the style is 'dot' or 'dot-line' + */ + Graph3d.prototype._redrawDataDot = function () { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + var i; + + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + + // calculate the distance from the point at the bottom to the camera + var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); + this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; + } + + // order the translated points by depth + var sortDepth = function sortDepth(a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); + + // draw the datapoints as colored circles + var dotSize = this.frame.clientWidth * 0.02; // px + for (i = 0; i < this.dataPoints.length; i++) { + var point = this.dataPoints[i]; + + if (this.style === Graph3d.STYLE.DOTLINE) { + // draw a vertical line from the bottom to the graph value + //var from = this._convert3Dto2D(new Point3d(point.point.x, point.point.y, this.zMin)); + var from = this._convert3Dto2D(point.bottom); + ctx.lineWidth = 1; + ctx.strokeStyle = this.gridColor; + ctx.beginPath(); + ctx.moveTo(from.x, from.y); + ctx.lineTo(point.screen.x, point.screen.y); + ctx.stroke(); + } + + // calculate radius for the circle + var size; + if (this.style === Graph3d.STYLE.DOTSIZE) { + size = dotSize / 2 + 2 * dotSize * (point.point.value - this.valueMin) / (this.valueMax - this.valueMin); + } else { + size = dotSize; + } + + var radius; + if (this.showPerspective) { + radius = size / -point.trans.z; + } else { + radius = size * -(this.eye.z / this.camera.getArmLength()); + } + if (radius < 0) { + radius = 0; + } + + var hue, color, borderColor; + if (this.style === Graph3d.STYLE.DOTCOLOR) { + // calculate the color based on the value + hue = (1 - (point.point.value - this.valueMin) * this.scale.value) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); + } else if (this.style === Graph3d.STYLE.DOTSIZE) { + color = this.dataColor.fill; + borderColor = this.dataColor.stroke; + } else { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + hue = (1 - (point.point.z - this.zMin) * this.scale.z / this.verticalRatio) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); + } + + // draw the circle + ctx.lineWidth = this._getStrokeWidth(point); + ctx.strokeStyle = borderColor; + ctx.fillStyle = color; + ctx.beginPath(); + ctx.arc(point.screen.x, point.screen.y, radius, 0, Math.PI * 2, true); + ctx.fill(); + ctx.stroke(); + } + }; + + /** + * Draw all datapoints as bars. + * This function can be used when the style is 'bar', 'bar-color', or 'bar-size' + */ + Graph3d.prototype._redrawDataBar = function () { + var canvas = this.frame.canvas; + var ctx = canvas.getContext('2d'); + var i, j, surface, corners; + + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + + // calculate the distance from the point at the bottom to the camera + var transBottom = this._convertPointToTranslation(this.dataPoints[i].bottom); + this.dataPoints[i].dist = this.showPerspective ? transBottom.length() : -transBottom.z; + } + + // order the translated points by depth + var sortDepth = function sortDepth(a, b) { + return b.dist - a.dist; + }; + this.dataPoints.sort(sortDepth); + + ctx.lineJoin = 'round'; + ctx.lineCap = 'round'; + + // draw the datapoints as bars + var xWidth = this.xBarWidth / 2; + var yWidth = this.yBarWidth / 2; + for (i = 0; i < this.dataPoints.length; i++) { + var point = this.dataPoints[i]; + + // determine color + var hue, color, borderColor; + if (this.style === Graph3d.STYLE.BARCOLOR) { + // calculate the color based on the value + hue = (1 - (point.point.value - this.valueMin) * this.scale.value) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); + } else if (this.style === Graph3d.STYLE.BARSIZE) { + color = this.dataColor.fill; + borderColor = this.dataColor.stroke; + } else { + // calculate Hue from the current value. At zMin the hue is 240, at zMax the hue is 0 + hue = (1 - (point.point.z - this.zMin) * this.scale.z / this.verticalRatio) * 240; + color = this._hsv2rgb(hue, 1, 1); + borderColor = this._hsv2rgb(hue, 1, 0.8); + } + + // calculate size for the bar + if (this.style === Graph3d.STYLE.BARSIZE) { + xWidth = this.xBarWidth / 2 * ((point.point.value - this.valueMin) / (this.valueMax - this.valueMin) * 0.8 + 0.2); + yWidth = this.yBarWidth / 2 * ((point.point.value - this.valueMin) / (this.valueMax - this.valueMin) * 0.8 + 0.2); + } + + // calculate all corner points + var me = this; + var point3d = point.point; + var top = [{ point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, point3d.z) }, { point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, point3d.z) }, { point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, point3d.z) }, { point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, point3d.z) }]; + var bottom = [{ point: new Point3d(point3d.x - xWidth, point3d.y - yWidth, this.zMin) }, { point: new Point3d(point3d.x + xWidth, point3d.y - yWidth, this.zMin) }, { point: new Point3d(point3d.x + xWidth, point3d.y + yWidth, this.zMin) }, { point: new Point3d(point3d.x - xWidth, point3d.y + yWidth, this.zMin) }]; + + // calculate screen location of the points + top.forEach(function (obj) { + obj.screen = me._convert3Dto2D(obj.point); + }); + bottom.forEach(function (obj) { + obj.screen = me._convert3Dto2D(obj.point); + }); + + // create five sides, calculate both corner points and center points + var surfaces = [{ corners: top, center: Point3d.avg(bottom[0].point, bottom[2].point) }, { corners: [top[0], top[1], bottom[1], bottom[0]], center: Point3d.avg(bottom[1].point, bottom[0].point) }, { corners: [top[1], top[2], bottom[2], bottom[1]], center: Point3d.avg(bottom[2].point, bottom[1].point) }, { corners: [top[2], top[3], bottom[3], bottom[2]], center: Point3d.avg(bottom[3].point, bottom[2].point) }, { corners: [top[3], top[0], bottom[0], bottom[3]], center: Point3d.avg(bottom[0].point, bottom[3].point) }]; + point.surfaces = surfaces; + + // calculate the distance of each of the surface centers to the camera + for (j = 0; j < surfaces.length; j++) { + surface = surfaces[j]; + var transCenter = this._convertPointToTranslation(surface.center); + surface.dist = this.showPerspective ? transCenter.length() : -transCenter.z; + // TODO: this dept calculation doesn't work 100% of the cases due to perspective, + // but the current solution is fast/simple and works in 99.9% of all cases + // the issue is visible in example 14, with graph.setCameraPosition({horizontal: 2.97, vertical: 0.5, distance: 0.9}) + } + + // order the surfaces by their (translated) depth + surfaces.sort(function (a, b) { + var diff = b.dist - a.dist; + if (diff) return diff; + + // if equal depth, sort the top surface last + if (a.corners === top) return 1; + if (b.corners === top) return -1; + + // both are equal + return 0; + }); + + // draw the ordered surfaces + ctx.lineWidth = this._getStrokeWidth(point); + ctx.strokeStyle = borderColor; + ctx.fillStyle = color; + // NOTE: we start at j=2 instead of j=0 as we don't need to draw the two surfaces at the backside + for (j = 2; j < surfaces.length; j++) { + surface = surfaces[j]; + corners = surface.corners; + ctx.beginPath(); + ctx.moveTo(corners[3].screen.x, corners[3].screen.y); + ctx.lineTo(corners[0].screen.x, corners[0].screen.y); + ctx.lineTo(corners[1].screen.x, corners[1].screen.y); + ctx.lineTo(corners[2].screen.x, corners[2].screen.y); + ctx.lineTo(corners[3].screen.x, corners[3].screen.y); + ctx.fill(); + ctx.stroke(); + } + } + }; + + /** + * Draw a line through all datapoints. + * This function can be used when the style is 'line' + */ + Graph3d.prototype._redrawDataLine = function () { + var canvas = this.frame.canvas, + ctx = canvas.getContext('2d'), + point, + i; + + if (this.dataPoints === undefined || this.dataPoints.length <= 0) return; // TODO: throw exception? + + // calculate the translations of all points + for (i = 0; i < this.dataPoints.length; i++) { + var trans = this._convertPointToTranslation(this.dataPoints[i].point); + var screen = this._convertTranslationToScreen(trans); + + this.dataPoints[i].trans = trans; + this.dataPoints[i].screen = screen; + } + + // start the line + if (this.dataPoints.length > 0) { + point = this.dataPoints[0]; + + ctx.lineWidth = this._getStrokeWidth(point); + ctx.lineJoin = 'round'; + ctx.lineCap = 'round'; + ctx.strokeStyle = this.dataColor.stroke; + ctx.beginPath(); + ctx.moveTo(point.screen.x, point.screen.y); + + // draw the datapoints as colored circles + for (i = 1; i < this.dataPoints.length; i++) { + point = this.dataPoints[i]; + ctx.lineTo(point.screen.x, point.screen.y); + } + + // finish the line + ctx.stroke(); + } + }; + + /** + * Start a moving operation inside the provided parent element + * @param {Event} event The event that occurred (required for + * retrieving the mouse position) + */ + Graph3d.prototype._onMouseDown = function (event) { + event = event || window.event; + + // check if mouse is still down (may be up when focus is lost for example + // in an iframe) + if (this.leftButtonDown) { + this._onMouseUp(event); + } + + // only react on left mouse button down + this.leftButtonDown = event.which ? event.which === 1 : event.button === 1; + if (!this.leftButtonDown && !this.touchDown) return; + + // get mouse position (different code for IE and all other browsers) + this.startMouseX = getMouseX(event); + this.startMouseY = getMouseY(event); + + this.startStart = new Date(this.start); + this.startEnd = new Date(this.end); + this.startArmRotation = this.camera.getArmRotation(); + + this.frame.style.cursor = 'move'; + + // add event listeners to handle moving the contents + // we store the function onmousemove and onmouseup in the graph, so we can + // remove the eventlisteners lateron in the function mouseUp() + var me = this; + this.onmousemove = function (event) { + me._onMouseMove(event); + }; + this.onmouseup = function (event) { + me._onMouseUp(event); + }; + util.addEventListener(document, 'mousemove', me.onmousemove); + util.addEventListener(document, 'mouseup', me.onmouseup); + util.preventDefault(event); + }; + + /** + * Perform moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {Event} event Well, eehh, the event + */ + Graph3d.prototype._onMouseMove = function (event) { + event = event || window.event; + + // calculate change in mouse position + var diffX = parseFloat(getMouseX(event)) - this.startMouseX; + var diffY = parseFloat(getMouseY(event)) - this.startMouseY; + + var horizontalNew = this.startArmRotation.horizontal + diffX / 200; + var verticalNew = this.startArmRotation.vertical + diffY / 200; + + var snapAngle = 4; // degrees + var snapValue = Math.sin(snapAngle / 360 * 2 * Math.PI); + + // snap horizontally to nice angles at 0pi, 0.5pi, 1pi, 1.5pi, etc... + // the -0.001 is to take care that the vertical axis is always drawn at the left front corner + if (Math.abs(Math.sin(horizontalNew)) < snapValue) { + horizontalNew = Math.round(horizontalNew / Math.PI) * Math.PI - 0.001; + } + if (Math.abs(Math.cos(horizontalNew)) < snapValue) { + horizontalNew = (Math.round(horizontalNew / Math.PI - 0.5) + 0.5) * Math.PI - 0.001; + } + + // snap vertically to nice angles + if (Math.abs(Math.sin(verticalNew)) < snapValue) { + verticalNew = Math.round(verticalNew / Math.PI) * Math.PI; + } + if (Math.abs(Math.cos(verticalNew)) < snapValue) { + verticalNew = (Math.round(verticalNew / Math.PI - 0.5) + 0.5) * Math.PI; + } + + this.camera.setArmRotation(horizontalNew, verticalNew); + this.redraw(); + + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); + + util.preventDefault(event); + }; + + /** + * Stop moving operating. + * This function activated from within the funcion Graph.mouseDown(). + * @param {event} event The event + */ + Graph3d.prototype._onMouseUp = function (event) { + this.frame.style.cursor = 'auto'; + this.leftButtonDown = false; + + // remove event listeners here + util.removeEventListener(document, 'mousemove', this.onmousemove); + util.removeEventListener(document, 'mouseup', this.onmouseup); + util.preventDefault(event); + }; + + /** + * After having moved the mouse, a tooltip should pop up when the mouse is resting on a data point + * @param {Event} event A mouse move event + */ + Graph3d.prototype._onTooltip = function (event) { + var delay = 300; // ms + var boundingRect = this.frame.getBoundingClientRect(); + var mouseX = getMouseX(event) - boundingRect.left; + var mouseY = getMouseY(event) - boundingRect.top; + + if (!this.showTooltip) { + return; + } + + if (this.tooltipTimeout) { + clearTimeout(this.tooltipTimeout); + } + + // (delayed) display of a tooltip only if no mouse button is down + if (this.leftButtonDown) { + this._hideTooltip(); + return; + } + + if (this.tooltip && this.tooltip.dataPoint) { + // tooltip is currently visible + var dataPoint = this._dataPointFromXY(mouseX, mouseY); + if (dataPoint !== this.tooltip.dataPoint) { + // datapoint changed + if (dataPoint) { + this._showTooltip(dataPoint); + } else { + this._hideTooltip(); + } + } + } else { + // tooltip is currently not visible + var me = this; + this.tooltipTimeout = setTimeout(function () { + me.tooltipTimeout = null; + + // show a tooltip if we have a data point + var dataPoint = me._dataPointFromXY(mouseX, mouseY); + if (dataPoint) { + me._showTooltip(dataPoint); + } + }, delay); + } + }; + + /** + * Event handler for touchstart event on mobile devices + */ + Graph3d.prototype._onTouchStart = function (event) { + this.touchDown = true; + + var me = this; + this.ontouchmove = function (event) { + me._onTouchMove(event); + }; + this.ontouchend = function (event) { + me._onTouchEnd(event); + }; + util.addEventListener(document, 'touchmove', me.ontouchmove); + util.addEventListener(document, 'touchend', me.ontouchend); + + this._onMouseDown(event); + }; + + /** + * Event handler for touchmove event on mobile devices + */ + Graph3d.prototype._onTouchMove = function (event) { + this._onMouseMove(event); + }; + + /** + * Event handler for touchend event on mobile devices + */ + Graph3d.prototype._onTouchEnd = function (event) { + this.touchDown = false; + + util.removeEventListener(document, 'touchmove', this.ontouchmove); + util.removeEventListener(document, 'touchend', this.ontouchend); + + this._onMouseUp(event); + }; + + /** + * Event handler for mouse wheel event, used to zoom the graph + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {event} event The event + */ + Graph3d.prototype._onWheel = function (event) { + if (!event) /* For IE. */ + event = window.event; + + // retrieve delta + var delta = 0; + if (event.wheelDelta) { + /* IE/Opera. */ + delta = event.wheelDelta / 120; + } else if (event.detail) { + /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail / 3; + } + + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + var oldLength = this.camera.getArmLength(); + var newLength = oldLength * (1 - delta / 10); + + this.camera.setArmLength(newLength); + this.redraw(); + + this._hideTooltip(); + } + + // fire a cameraPositionChange event + var parameters = this.getCameraPosition(); + this.emit('cameraPositionChange', parameters); + + // Prevent default actions caused by mouse wheel. + // That might be ugly, but we handle scrolls somehow + // anyway, so don't bother here.. + util.preventDefault(event); + }; + + /** + * Test whether a point lies inside given 2D triangle + * @param {Point2d} point + * @param {Point2d[]} triangle + * @return {boolean} Returns true if given point lies inside or on the edge of the triangle + * @private + */ + Graph3d.prototype._insideTriangle = function (point, triangle) { + var a = triangle[0], + b = triangle[1], + c = triangle[2]; + + function sign(x) { + return x > 0 ? 1 : x < 0 ? -1 : 0; + } + + var as = sign((b.x - a.x) * (point.y - a.y) - (b.y - a.y) * (point.x - a.x)); + var bs = sign((c.x - b.x) * (point.y - b.y) - (c.y - b.y) * (point.x - b.x)); + var cs = sign((a.x - c.x) * (point.y - c.y) - (a.y - c.y) * (point.x - c.x)); + + // each of the three signs must be either equal to each other or zero + return (as == 0 || bs == 0 || as == bs) && (bs == 0 || cs == 0 || bs == cs) && (as == 0 || cs == 0 || as == cs); + }; + + /** + * Find a data point close to given screen position (x, y) + * @param {Number} x + * @param {Number} y + * @return {Object | null} The closest data point or null if not close to any data point + * @private + */ + Graph3d.prototype._dataPointFromXY = function (x, y) { + var i, + distMax = 100, + // px + dataPoint = null, + closestDataPoint = null, + closestDist = null, + center = new Point2d(x, y); + + if (this.style === Graph3d.STYLE.BAR || this.style === Graph3d.STYLE.BARCOLOR || this.style === Graph3d.STYLE.BARSIZE) { + // the data points are ordered from far away to closest + for (i = this.dataPoints.length - 1; i >= 0; i--) { + dataPoint = this.dataPoints[i]; + var surfaces = dataPoint.surfaces; + if (surfaces) { + for (var s = surfaces.length - 1; s >= 0; s--) { + // split each surface in two triangles, and see if the center point is inside one of these + var surface = surfaces[s]; + var corners = surface.corners; + var triangle1 = [corners[0].screen, corners[1].screen, corners[2].screen]; + var triangle2 = [corners[2].screen, corners[3].screen, corners[0].screen]; + if (this._insideTriangle(center, triangle1) || this._insideTriangle(center, triangle2)) { + // return immediately at the first hit + return dataPoint; + } + } + } + } + } else { + // find the closest data point, using distance to the center of the point on 2d screen + for (i = 0; i < this.dataPoints.length; i++) { + dataPoint = this.dataPoints[i]; + var point = dataPoint.screen; + if (point) { + var distX = Math.abs(x - point.x); + var distY = Math.abs(y - point.y); + var dist = Math.sqrt(distX * distX + distY * distY); + + if ((closestDist === null || dist < closestDist) && dist < distMax) { + closestDist = dist; + closestDataPoint = dataPoint; + } + } + } + } + + return closestDataPoint; + }; + + /** + * Display a tooltip for given data point + * @param {Object} dataPoint + * @private + */ + Graph3d.prototype._showTooltip = function (dataPoint) { + var content, line, dot; + + if (!this.tooltip) { + content = document.createElement('div'); + content.style.position = 'absolute'; + content.style.padding = '10px'; + content.style.border = '1px solid #4d4d4d'; + content.style.color = '#1a1a1a'; + content.style.background = 'rgba(255,255,255,0.7)'; + content.style.borderRadius = '2px'; + content.style.boxShadow = '5px 5px 10px rgba(128,128,128,0.5)'; + + line = document.createElement('div'); + line.style.position = 'absolute'; + line.style.height = '40px'; + line.style.width = '0'; + line.style.borderLeft = '1px solid #4d4d4d'; + + dot = document.createElement('div'); + dot.style.position = 'absolute'; + dot.style.height = '0'; + dot.style.width = '0'; + dot.style.border = '5px solid #4d4d4d'; + dot.style.borderRadius = '5px'; + + this.tooltip = { + dataPoint: null, + dom: { + content: content, + line: line, + dot: dot + } + }; + } else { + content = this.tooltip.dom.content; + line = this.tooltip.dom.line; + dot = this.tooltip.dom.dot; + } + + this._hideTooltip(); + + this.tooltip.dataPoint = dataPoint; + if (typeof this.showTooltip === 'function') { + content.innerHTML = this.showTooltip(dataPoint.point); + } else { + content.innerHTML = '' + '' + '' + '' + '
x:' + dataPoint.point.x + '
y:' + dataPoint.point.y + '
z:' + dataPoint.point.z + '
'; + } + + content.style.left = '0'; + content.style.top = '0'; + this.frame.appendChild(content); + this.frame.appendChild(line); + this.frame.appendChild(dot); + + // calculate sizes + var contentWidth = content.offsetWidth; + var contentHeight = content.offsetHeight; + var lineHeight = line.offsetHeight; + var dotWidth = dot.offsetWidth; + var dotHeight = dot.offsetHeight; + + var left = dataPoint.screen.x - contentWidth / 2; + left = Math.min(Math.max(left, 10), this.frame.clientWidth - 10 - contentWidth); + + line.style.left = dataPoint.screen.x + 'px'; + line.style.top = dataPoint.screen.y - lineHeight + 'px'; + content.style.left = left + 'px'; + content.style.top = dataPoint.screen.y - lineHeight - contentHeight + 'px'; + dot.style.left = dataPoint.screen.x - dotWidth / 2 + 'px'; + dot.style.top = dataPoint.screen.y - dotHeight / 2 + 'px'; + }; + + /** + * Hide the tooltip when displayed + * @private + */ + Graph3d.prototype._hideTooltip = function () { + if (this.tooltip) { + this.tooltip.dataPoint = null; + + for (var prop in this.tooltip.dom) { + if (this.tooltip.dom.hasOwnProperty(prop)) { + var elem = this.tooltip.dom[prop]; + if (elem && elem.parentNode) { + elem.parentNode.removeChild(elem); + } + } + } + } + }; + + /**--------------------------------------------------------------------------**/ + + /** + * Get the horizontal mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse x + */ + function getMouseX(event) { + if ('clientX' in event) return event.clientX; + return event.targetTouches[0] && event.targetTouches[0].clientX || 0; + } + + /** + * Get the vertical mouse position from a mouse event + * @param {Event} event + * @return {Number} mouse y + */ + function getMouseY(event) { + if ('clientY' in event) return event.clientY; + return event.targetTouches[0] && event.targetTouches[0].clientY || 0; + } + + module.exports = Graph3d; + +/***/ }, +/* 12 */ +/***/ function(module, exports) { + + + /** + * Expose `Emitter`. + */ + + module.exports = Emitter; + + /** + * Initialize a new `Emitter`. + * + * @api public + */ + + function Emitter(obj) { + if (obj) return mixin(obj); + }; + + /** + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private + */ + + function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + return obj; + } + + /** + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + Emitter.prototype.on = + Emitter.prototype.addEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + (this._callbacks[event] = this._callbacks[event] || []) + .push(fn); + return this; + }; + + /** + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + Emitter.prototype.once = function(event, fn){ + var self = this; + this._callbacks = this._callbacks || {}; + + function on() { + self.off(event, on); + fn.apply(this, arguments); + } + + on.fn = fn; + this.on(event, on); + return this; + }; + + /** + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + Emitter.prototype.off = + Emitter.prototype.removeListener = + Emitter.prototype.removeAllListeners = + Emitter.prototype.removeEventListener = function(event, fn){ + this._callbacks = this._callbacks || {}; + + // all + if (0 == arguments.length) { + this._callbacks = {}; + return this; + } + + // specific event + var callbacks = this._callbacks[event]; + if (!callbacks) return this; + + // remove all handlers + if (1 == arguments.length) { + delete this._callbacks[event]; + return this; + } + + // remove specific handler + var cb; + for (var i = 0; i < callbacks.length; i++) { + cb = callbacks[i]; + if (cb === fn || cb.fn === fn) { + callbacks.splice(i, 1); + break; + } + } + return this; + }; + + /** + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} + */ + + Emitter.prototype.emit = function(event){ + this._callbacks = this._callbacks || {}; + var args = [].slice.call(arguments, 1) + , callbacks = this._callbacks[event]; + + if (callbacks) { + callbacks = callbacks.slice(0); + for (var i = 0, len = callbacks.length; i < len; ++i) { + callbacks[i].apply(this, args); + } + } + + return this; + }; + + /** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ + + Emitter.prototype.listeners = function(event){ + this._callbacks = this._callbacks || {}; + return this._callbacks[event] || []; + }; + + /** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public + */ + + Emitter.prototype.hasListeners = function(event){ + return !! this.listeners(event).length; + }; + + +/***/ }, +/* 13 */ +/***/ function(module, exports) { + + /** + * @prototype Point3d + * @param {Number} [x] + * @param {Number} [y] + * @param {Number} [z] + */ + "use strict"; + + function Point3d(x, y, z) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + this.z = z !== undefined ? z : 0; + }; + + /** + * Subtract the two provided points, returns a-b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a-b + */ + Point3d.subtract = function (a, b) { + var sub = new Point3d(); + sub.x = a.x - b.x; + sub.y = a.y - b.y; + sub.z = a.z - b.z; + return sub; + }; + + /** + * Add the two provided points, returns a+b + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} a+b + */ + Point3d.add = function (a, b) { + var sum = new Point3d(); + sum.x = a.x + b.x; + sum.y = a.y + b.y; + sum.z = a.z + b.z; + return sum; + }; + + /** + * Calculate the average of two 3d points + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} The average, (a+b)/2 + */ + Point3d.avg = function (a, b) { + return new Point3d((a.x + b.x) / 2, (a.y + b.y) / 2, (a.z + b.z) / 2); + }; + + /** + * Calculate the cross product of the two provided points, returns axb + * Documentation: http://en.wikipedia.org/wiki/Cross_product + * @param {Point3d} a + * @param {Point3d} b + * @return {Point3d} cross product axb + */ + Point3d.crossProduct = function (a, b) { + var crossproduct = new Point3d(); + + crossproduct.x = a.y * b.z - a.z * b.y; + crossproduct.y = a.z * b.x - a.x * b.z; + crossproduct.z = a.x * b.y - a.y * b.x; + + return crossproduct; + }; + + /** + * Rtrieve the length of the vector (or the distance from this point to the origin + * @return {Number} length + */ + Point3d.prototype.length = function () { + return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z); + }; + + module.exports = Point3d; + +/***/ }, +/* 14 */ +/***/ function(module, exports) { + + /** + * @prototype Point2d + * @param {Number} [x] + * @param {Number} [y] + */ + "use strict"; + + function Point2d(x, y) { + this.x = x !== undefined ? x : 0; + this.y = y !== undefined ? y : 0; + } + + module.exports = Point2d; + +/***/ }, +/* 15 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Point3d = __webpack_require__(13); + + /** + * @class Camera + * The camera is mounted on a (virtual) camera arm. The camera arm can rotate + * The camera is always looking in the direction of the origin of the arm. + * This way, the camera always rotates around one fixed point, the location + * of the camera arm. + * + * Documentation: + * http://en.wikipedia.org/wiki/3D_projection + */ + function Camera() { + this.armLocation = new Point3d(); + this.armRotation = {}; + this.armRotation.horizontal = 0; + this.armRotation.vertical = 0; + this.armLength = 1.7; + + this.cameraLocation = new Point3d(); + this.cameraRotation = new Point3d(0.5 * Math.PI, 0, 0); + + this.calculateCameraOrientation(); + } + + /** + * Set the location (origin) of the arm + * @param {Number} x Normalized value of x + * @param {Number} y Normalized value of y + * @param {Number} z Normalized value of z + */ + Camera.prototype.setArmLocation = function (x, y, z) { + this.armLocation.x = x; + this.armLocation.y = y; + this.armLocation.z = z; + + this.calculateCameraOrientation(); + }; + + /** + * Set the rotation of the camera arm + * @param {Number} horizontal The horizontal rotation, between 0 and 2*PI. + * Optional, can be left undefined. + * @param {Number} vertical The vertical rotation, between 0 and 0.5*PI + * if vertical=0.5*PI, the graph is shown from the + * top. Optional, can be left undefined. + */ + Camera.prototype.setArmRotation = function (horizontal, vertical) { + if (horizontal !== undefined) { + this.armRotation.horizontal = horizontal; + } + + if (vertical !== undefined) { + this.armRotation.vertical = vertical; + if (this.armRotation.vertical < 0) this.armRotation.vertical = 0; + if (this.armRotation.vertical > 0.5 * Math.PI) this.armRotation.vertical = 0.5 * Math.PI; + } + + if (horizontal !== undefined || vertical !== undefined) { + this.calculateCameraOrientation(); + } + }; + + /** + * Retrieve the current arm rotation + * @return {object} An object with parameters horizontal and vertical + */ + Camera.prototype.getArmRotation = function () { + var rot = {}; + rot.horizontal = this.armRotation.horizontal; + rot.vertical = this.armRotation.vertical; + + return rot; + }; + + /** + * Set the (normalized) length of the camera arm. + * @param {Number} length A length between 0.71 and 5.0 + */ + Camera.prototype.setArmLength = function (length) { + if (length === undefined) return; + + this.armLength = length; + + // Radius must be larger than the corner of the graph, + // which has a distance of sqrt(0.5^2+0.5^2) = 0.71 from the center of the + // graph + if (this.armLength < 0.71) this.armLength = 0.71; + if (this.armLength > 5.0) this.armLength = 5.0; + + this.calculateCameraOrientation(); + }; + + /** + * Retrieve the arm length + * @return {Number} length + */ + Camera.prototype.getArmLength = function () { + return this.armLength; + }; + + /** + * Retrieve the camera location + * @return {Point3d} cameraLocation + */ + Camera.prototype.getCameraLocation = function () { + return this.cameraLocation; + }; + + /** + * Retrieve the camera rotation + * @return {Point3d} cameraRotation + */ + Camera.prototype.getCameraRotation = function () { + return this.cameraRotation; + }; + + /** + * Calculate the location and rotation of the camera based on the + * position and orientation of the camera arm + */ + Camera.prototype.calculateCameraOrientation = function () { + // calculate location of the camera + this.cameraLocation.x = this.armLocation.x - this.armLength * Math.sin(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); + this.cameraLocation.y = this.armLocation.y - this.armLength * Math.cos(this.armRotation.horizontal) * Math.cos(this.armRotation.vertical); + this.cameraLocation.z = this.armLocation.z + this.armLength * Math.sin(this.armRotation.vertical); + + // calculate rotation of the camera + this.cameraRotation.x = Math.PI / 2 - this.armRotation.vertical; + this.cameraRotation.y = 0; + this.cameraRotation.z = -this.armRotation.horizontal; + }; + + module.exports = Camera; + +/***/ }, +/* 16 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var DataView = __webpack_require__(10); + + /** + * @class Filter + * + * @param {DataSet} data The google data table + * @param {Number} column The index of the column to be filtered + * @param {Graph} graph The graph + */ + function Filter(data, column, graph) { + this.data = data; + this.column = column; + this.graph = graph; // the parent graph + + this.index = undefined; + this.value = undefined; + + // read all distinct values and select the first one + this.values = graph.getDistinctValues(data.get(), this.column); + + // sort both numeric and string values correctly + this.values.sort(function (a, b) { + return a > b ? 1 : a < b ? -1 : 0; + }); + + if (this.values.length > 0) { + this.selectValue(0); + } + + // create an array with the filtered datapoints. this will be loaded afterwards + this.dataPoints = []; + + this.loaded = false; + this.onLoadCallback = undefined; + + if (graph.animationPreload) { + this.loaded = false; + this.loadInBackground(); + } else { + this.loaded = true; + } + }; + + /** + * Return the label + * @return {string} label + */ + Filter.prototype.isLoaded = function () { + return this.loaded; + }; + + /** + * Return the loaded progress + * @return {Number} percentage between 0 and 100 + */ + Filter.prototype.getLoadedProgress = function () { + var len = this.values.length; + + var i = 0; + while (this.dataPoints[i]) { + i++; + } + + return Math.round(i / len * 100); + }; + + /** + * Return the label + * @return {string} label + */ + Filter.prototype.getLabel = function () { + return this.graph.filterLabel; + }; + + /** + * Return the columnIndex of the filter + * @return {Number} columnIndex + */ + Filter.prototype.getColumn = function () { + return this.column; + }; + + /** + * Return the currently selected value. Returns undefined if there is no selection + * @return {*} value + */ + Filter.prototype.getSelectedValue = function () { + if (this.index === undefined) return undefined; + + return this.values[this.index]; + }; + + /** + * Retrieve all values of the filter + * @return {Array} values + */ + Filter.prototype.getValues = function () { + return this.values; + }; + + /** + * Retrieve one value of the filter + * @param {Number} index + * @return {*} value + */ + Filter.prototype.getValue = function (index) { + if (index >= this.values.length) throw 'Error: index out of range'; + + return this.values[index]; + }; + + /** + * Retrieve the (filtered) dataPoints for the currently selected filter index + * @param {Number} [index] (optional) + * @return {Array} dataPoints + */ + Filter.prototype._getDataPoints = function (index) { + if (index === undefined) index = this.index; + + if (index === undefined) return []; + + var dataPoints; + if (this.dataPoints[index]) { + dataPoints = this.dataPoints[index]; + } else { + var f = {}; + f.column = this.column; + f.value = this.values[index]; + + var dataView = new DataView(this.data, { filter: function filter(item) { + return item[f.column] == f.value; + } }).get(); + dataPoints = this.graph._getDataPoints(dataView); + + this.dataPoints[index] = dataPoints; + } + + return dataPoints; + }; + + /** + * Set a callback function when the filter is fully loaded. + */ + Filter.prototype.setOnLoadCallback = function (callback) { + this.onLoadCallback = callback; + }; + + /** + * Add a value to the list with available values for this filter + * No double entries will be created. + * @param {Number} index + */ + Filter.prototype.selectValue = function (index) { + if (index >= this.values.length) throw 'Error: index out of range'; + + this.index = index; + this.value = this.values[index]; + }; + + /** + * Load all filtered rows in the background one by one + * Start this method without providing an index! + */ + Filter.prototype.loadInBackground = function (index) { + if (index === undefined) index = 0; + + var frame = this.graph.frame; + + if (index < this.values.length) { + var dataPointsTemp = this._getDataPoints(index); + //this.graph.redrawInfo(); // TODO: not neat + + // create a progress box + if (frame.progress === undefined) { + frame.progress = document.createElement('DIV'); + frame.progress.style.position = 'absolute'; + frame.progress.style.color = 'gray'; + frame.appendChild(frame.progress); + } + var progress = this.getLoadedProgress(); + frame.progress.innerHTML = 'Loading animation... ' + progress + '%'; + // TODO: this is no nice solution... + frame.progress.style.bottom = 60 + 'px'; // TODO: use height of slider + frame.progress.style.left = 10 + 'px'; + + var me = this; + setTimeout(function () { + me.loadInBackground(index + 1); + }, 10); + this.loaded = false; + } else { + this.loaded = true; + + // remove the progress box + if (frame.progress !== undefined) { + frame.removeChild(frame.progress); + frame.progress = undefined; + } + + if (this.onLoadCallback) this.onLoadCallback(); + } + }; + + module.exports = Filter; + +/***/ }, +/* 17 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + + /** + * @constructor Slider + * + * An html slider control with start/stop/prev/next buttons + * @param {Element} container The element where the slider will be created + * @param {Object} options Available options: + * {boolean} visible If true (default) the + * slider is visible. + */ + function Slider(container, options) { + if (container === undefined) { + throw 'Error: No container element defined'; + } + this.container = container; + this.visible = options && options.visible != undefined ? options.visible : true; + + if (this.visible) { + this.frame = document.createElement('DIV'); + //this.frame.style.backgroundColor = '#E5E5E5'; + this.frame.style.width = '100%'; + this.frame.style.position = 'relative'; + this.container.appendChild(this.frame); + + this.frame.prev = document.createElement('INPUT'); + this.frame.prev.type = 'BUTTON'; + this.frame.prev.value = 'Prev'; + this.frame.appendChild(this.frame.prev); + + this.frame.play = document.createElement('INPUT'); + this.frame.play.type = 'BUTTON'; + this.frame.play.value = 'Play'; + this.frame.appendChild(this.frame.play); + + this.frame.next = document.createElement('INPUT'); + this.frame.next.type = 'BUTTON'; + this.frame.next.value = 'Next'; + this.frame.appendChild(this.frame.next); + + this.frame.bar = document.createElement('INPUT'); + this.frame.bar.type = 'BUTTON'; + this.frame.bar.style.position = 'absolute'; + this.frame.bar.style.border = '1px solid red'; + this.frame.bar.style.width = '100px'; + this.frame.bar.style.height = '6px'; + this.frame.bar.style.borderRadius = '2px'; + this.frame.bar.style.MozBorderRadius = '2px'; + this.frame.bar.style.border = '1px solid #7F7F7F'; + this.frame.bar.style.backgroundColor = '#E5E5E5'; + this.frame.appendChild(this.frame.bar); + + this.frame.slide = document.createElement('INPUT'); + this.frame.slide.type = 'BUTTON'; + this.frame.slide.style.margin = '0px'; + this.frame.slide.value = ' '; + this.frame.slide.style.position = 'relative'; + this.frame.slide.style.left = '-100px'; + this.frame.appendChild(this.frame.slide); + + // create events + var me = this; + this.frame.slide.onmousedown = function (event) { + me._onMouseDown(event); + }; + this.frame.prev.onclick = function (event) { + me.prev(event); + }; + this.frame.play.onclick = function (event) { + me.togglePlay(event); + }; + this.frame.next.onclick = function (event) { + me.next(event); + }; + } + + this.onChangeCallback = undefined; + + this.values = []; + this.index = undefined; + + this.playTimeout = undefined; + this.playInterval = 1000; // milliseconds + this.playLoop = true; + } + + /** + * Select the previous index + */ + Slider.prototype.prev = function () { + var index = this.getIndex(); + if (index > 0) { + index--; + this.setIndex(index); + } + }; + + /** + * Select the next index + */ + Slider.prototype.next = function () { + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); + } + }; + + /** + * Select the next index + */ + Slider.prototype.playNext = function () { + var start = new Date(); + + var index = this.getIndex(); + if (index < this.values.length - 1) { + index++; + this.setIndex(index); + } else if (this.playLoop) { + // jump to the start + index = 0; + this.setIndex(index); + } + + var end = new Date(); + var diff = end - start; + + // calculate how much time it to to set the index and to execute the callback + // function. + var interval = Math.max(this.playInterval - diff, 0); + // document.title = diff // TODO: cleanup + + var me = this; + this.playTimeout = setTimeout(function () { + me.playNext(); + }, interval); + }; + + /** + * Toggle start or stop playing + */ + Slider.prototype.togglePlay = function () { + if (this.playTimeout === undefined) { + this.play(); + } else { + this.stop(); + } + }; + + /** + * Start playing + */ + Slider.prototype.play = function () { + // Test whether already playing + if (this.playTimeout) return; + + this.playNext(); + + if (this.frame) { + this.frame.play.value = 'Stop'; + } + }; + + /** + * Stop playing + */ + Slider.prototype.stop = function () { + clearInterval(this.playTimeout); + this.playTimeout = undefined; + + if (this.frame) { + this.frame.play.value = 'Play'; + } + }; + + /** + * Set a callback function which will be triggered when the value of the + * slider bar has changed. + */ + Slider.prototype.setOnChangeCallback = function (callback) { + this.onChangeCallback = callback; + }; + + /** + * Set the interval for playing the list + * @param {Number} interval The interval in milliseconds + */ + Slider.prototype.setPlayInterval = function (interval) { + this.playInterval = interval; + }; + + /** + * Retrieve the current play interval + * @return {Number} interval The interval in milliseconds + */ + Slider.prototype.getPlayInterval = function (interval) { + return this.playInterval; + }; + + /** + * Set looping on or off + * @pararm {boolean} doLoop If true, the slider will jump to the start when + * the end is passed, and will jump to the end + * when the start is passed. + */ + Slider.prototype.setPlayLoop = function (doLoop) { + this.playLoop = doLoop; + }; + + /** + * Execute the onchange callback function + */ + Slider.prototype.onChange = function () { + if (this.onChangeCallback !== undefined) { + this.onChangeCallback(); + } + }; + + /** + * redraw the slider on the correct place + */ + Slider.prototype.redraw = function () { + if (this.frame) { + // resize the bar + this.frame.bar.style.top = this.frame.clientHeight / 2 - this.frame.bar.offsetHeight / 2 + 'px'; + this.frame.bar.style.width = this.frame.clientWidth - this.frame.prev.clientWidth - this.frame.play.clientWidth - this.frame.next.clientWidth - 30 + 'px'; + + // position the slider button + var left = this.indexToLeft(this.index); + this.frame.slide.style.left = left + 'px'; + } + }; + + /** + * Set the list with values for the slider + * @param {Array} values A javascript array with values (any type) + */ + Slider.prototype.setValues = function (values) { + this.values = values; + + if (this.values.length > 0) this.setIndex(0);else this.index = undefined; + }; + + /** + * Select a value by its index + * @param {Number} index + */ + Slider.prototype.setIndex = function (index) { + if (index < this.values.length) { + this.index = index; + + this.redraw(); + this.onChange(); + } else { + throw 'Error: index out of range'; + } + }; + + /** + * retrieve the index of the currently selected vaue + * @return {Number} index + */ + Slider.prototype.getIndex = function () { + return this.index; + }; + + /** + * retrieve the currently selected value + * @return {*} value + */ + Slider.prototype.get = function () { + return this.values[this.index]; + }; + + Slider.prototype._onMouseDown = function (event) { + // only react on left mouse button down + var leftButtonDown = event.which ? event.which === 1 : event.button === 1; + if (!leftButtonDown) return; + + this.startClientX = event.clientX; + this.startSlideX = parseFloat(this.frame.slide.style.left); + + this.frame.style.cursor = 'move'; + + // add event listeners to handle moving the contents + // we store the function onmousemove and onmouseup in the graph, so we can + // remove the eventlisteners lateron in the function mouseUp() + var me = this; + this.onmousemove = function (event) { + me._onMouseMove(event); + }; + this.onmouseup = function (event) { + me._onMouseUp(event); + }; + util.addEventListener(document, 'mousemove', this.onmousemove); + util.addEventListener(document, 'mouseup', this.onmouseup); + util.preventDefault(event); + }; + + Slider.prototype.leftToIndex = function (left) { + var width = parseFloat(this.frame.bar.style.width) - this.frame.slide.clientWidth - 10; + var x = left - 3; + + var index = Math.round(x / width * (this.values.length - 1)); + if (index < 0) index = 0; + if (index > this.values.length - 1) index = this.values.length - 1; + + return index; + }; + + Slider.prototype.indexToLeft = function (index) { + var width = parseFloat(this.frame.bar.style.width) - this.frame.slide.clientWidth - 10; + + var x = index / (this.values.length - 1) * width; + var left = x + 3; + + return left; + }; + + Slider.prototype._onMouseMove = function (event) { + var diff = event.clientX - this.startClientX; + var x = this.startSlideX + diff; + + var index = this.leftToIndex(x); + + this.setIndex(index); + + util.preventDefault(); + }; + + Slider.prototype._onMouseUp = function (event) { + this.frame.style.cursor = 'auto'; + + // remove event listeners + util.removeEventListener(document, 'mousemove', this.onmousemove); + util.removeEventListener(document, 'mouseup', this.onmouseup); + + util.preventDefault(); + }; + + module.exports = Slider; + +/***/ }, +/* 18 */ +/***/ function(module, exports) { + + /** + * @prototype StepNumber + * The class StepNumber is an iterator for Numbers. You provide a start and end + * value, and a best step size. StepNumber itself rounds to fixed values and + * a finds the step that best fits the provided step. + * + * If prettyStep is true, the step size is chosen as close as possible to the + * provided step, but being a round value like 1, 2, 5, 10, 20, 50, .... + * + * Example usage: + * var step = new StepNumber(0, 10, 2.5, true); + * step.start(); + * while (!step.end()) { + * alert(step.getCurrent()); + * step.next(); + * } + * + * Version: 1.0 + * + * @param {Number} start The start value + * @param {Number} end The end value + * @param {Number} step Optional. Step size. Must be a positive value. + * @param {boolean} prettyStep Optional. If true, the step size is rounded + * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) + */ + "use strict"; + + function StepNumber(start, end, step, prettyStep) { + // set default values + this._start = 0; + this._end = 0; + this._step = 1; + this.prettyStep = true; + this.precision = 5; + + this._current = 0; + this.setRange(start, end, step, prettyStep); + }; + + /** + * Set a new range: start, end and step. + * + * @param {Number} start The start value + * @param {Number} end The end value + * @param {Number} step Optional. Step size. Must be a positive value. + * @param {boolean} prettyStep Optional. If true, the step size is rounded + * To a pretty step size (like 1, 2, 5, 10, 20, 50, ...) + */ + StepNumber.prototype.setRange = function (start, end, step, prettyStep) { + this._start = start ? start : 0; + this._end = end ? end : 0; + + this.setStep(step, prettyStep); + }; + + /** + * Set a new step size + * @param {Number} step New step size. Must be a positive value + * @param {boolean} prettyStep Optional. If true, the provided step is rounded + * to a pretty step size (like 1, 2, 5, 10, 20, 50, ...) + */ + StepNumber.prototype.setStep = function (step, prettyStep) { + if (step === undefined || step <= 0) return; + + if (prettyStep !== undefined) this.prettyStep = prettyStep; + + if (this.prettyStep === true) this._step = StepNumber.calculatePrettyStep(step);else this._step = step; + }; + + /** + * Calculate a nice step size, closest to the desired step size. + * Returns a value in one of the ranges 1*10^n, 2*10^n, or 5*10^n, where n is an + * integer Number. For example 1, 2, 5, 10, 20, 50, etc... + * @param {Number} step Desired step size + * @return {Number} Nice step size + */ + StepNumber.calculatePrettyStep = function (step) { + var log10 = function log10(x) { + return Math.log(x) / Math.LN10; + }; + + // try three steps (multiple of 1, 2, or 5 + var step1 = Math.pow(10, Math.round(log10(step))), + step2 = 2 * Math.pow(10, Math.round(log10(step / 2))), + step5 = 5 * Math.pow(10, Math.round(log10(step / 5))); + + // choose the best step (closest to minimum step) + var prettyStep = step1; + if (Math.abs(step2 - step) <= Math.abs(prettyStep - step)) prettyStep = step2; + if (Math.abs(step5 - step) <= Math.abs(prettyStep - step)) prettyStep = step5; + + // for safety + if (prettyStep <= 0) { + prettyStep = 1; + } + + return prettyStep; + }; + + /** + * returns the current value of the step + * @return {Number} current value + */ + StepNumber.prototype.getCurrent = function () { + return parseFloat(this._current.toPrecision(this.precision)); + }; + + /** + * returns the current step size + * @return {Number} current step size + */ + StepNumber.prototype.getStep = function () { + return this._step; + }; + + /** + * Set the current value to the largest value smaller than start, which + * is a multiple of the step size + */ + StepNumber.prototype.start = function () { + this._current = this._start - this._start % this._step; + }; + + /** + * Do a step, add the step size to the current value + */ + StepNumber.prototype.next = function () { + this._current += this._step; + }; + + /** + * Returns true whether the end is reached + * @return {boolean} True if the current value has passed the end value. + */ + StepNumber.prototype.end = function () { + return this._current > this._end; + }; + + module.exports = StepNumber; + +/***/ }, +/* 19 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Emitter = __webpack_require__(12); + var Hammer = __webpack_require__(20); + var moment = __webpack_require__(2); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + var Range = __webpack_require__(24); + var Core = __webpack_require__(28); + var TimeAxis = __webpack_require__(39); + var CurrentTime = __webpack_require__(44); + var CustomTime = __webpack_require__(42); + var ItemSet = __webpack_require__(29); + + var Configurator = __webpack_require__(45); + var Validator = __webpack_require__(47)['default']; + var printStyle = __webpack_require__(47).printStyle; + var allOptions = __webpack_require__(48).allOptions; + var configureOptions = __webpack_require__(48).configureOptions; + + /** + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | vis.DataView | Array} [items] + * @param {vis.DataSet | vis.DataView | Array} [groups] + * @param {Object} [options] See Timeline.setOptions for the available options. + * @constructor + * @extends Core + */ + function Timeline(container, items, groups, options) { + if (!(this instanceof Timeline)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } + + // if the third element is options, the forth is groups (optionally); + if (!(Array.isArray(groups) || groups instanceof DataSet || groups instanceof DataView) && groups instanceof Object) { + var forthArgument = options; + options = groups; + groups = forthArgument; + } + + var me = this; + this.defaultOptions = { + start: null, + end: null, + + autoResize: true, + throttleRedraw: 0, // ms + + orientation: { + axis: 'bottom', // axis orientation: 'bottom', 'top', or 'both' + item: 'bottom' // not relevant + }, + + moment: moment, + + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); + + // Create the DOM, props, and emitter + this._create(container); + + // all components listed here will be repainted automatically + this.components = []; + + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this) + }, + hiddenDates: [], + util: { + getScale: function getScale() { + return me.timeAxis.step.scale; + }, + getStep: function getStep() { + return me.timeAxis.step.step; + }, + + toScreen: me._toScreen.bind(me), + toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width + toTime: me._toTime.bind(me), + toGlobalTime: me._toGlobalTime.bind(me) + } + }; + + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; + + // time axis + this.timeAxis = new TimeAxis(this.body); + this.timeAxis2 = null; // used in case of orientation option 'both' + this.components.push(this.timeAxis); + + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); + + // item set + this.itemSet = new ItemSet(this.body); + this.components.push(this.itemSet); + + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet + + this.on('tap', function (event) { + me.emit('click', me.getEventProperties(event)); + }); + this.on('doubletap', function (event) { + me.emit('doubleClick', me.getEventProperties(event)); + }); + this.dom.root.oncontextmenu = function (event) { + me.emit('contextmenu', me.getEventProperties(event)); + }; + + // apply options + if (options) { + this.setOptions(options); + } + + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); + } + + // create itemset + if (items) { + this.setItems(items); + } else { + this._redraw(); + } + } + + // Extend the functionality from Core + Timeline.prototype = new Core(); + + /** + * Load a configurator + * @return {Object} + * @private + */ + Timeline.prototype._createConfigurator = function () { + return new Configurator(this, this.dom.container, configureOptions); + }; + + /** + * Force a redraw. The size of all items will be recalculated. + * Can be useful to manually redraw when option autoResize=false and the window + * has been resized, or when the items CSS has been changed. + * + * Note: this function will be overridden on construction with a trottled version + */ + Timeline.prototype.redraw = function () { + this.itemSet && this.itemSet.markDirty({ refreshItems: true }); + this._redraw(); + }; + + Timeline.prototype.setOptions = function (options) { + // validate options + var errorFound = Validator.validate(options, allOptions); + if (errorFound === true) { + console.log('%cErrors have been found in the supplied options object.', printStyle); + } + + Core.prototype.setOptions.call(this, options); + + if ('type' in options) { + if (options.type !== this.options.type) { + this.options.type = options.type; + + // force recreation of all items + var itemsData = this.itemsData; + if (itemsData) { + var selection = this.getSelection(); + this.setItems(null); // remove all + this.setItems(itemsData); // add all + this.setSelection(selection); // restore selection + } + } + } + }; + + /** + * Set items + * @param {vis.DataSet | Array | null} items + */ + Timeline.prototype.setItems = function (items) { + var initialLoad = this.itemsData == null; + + // convert to type DataSet when needed + var newDataSet; + if (!items) { + newDataSet = null; + } else if (items instanceof DataSet || items instanceof DataView) { + newDataSet = items; + } else { + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: 'Date', + end: 'Date' + } + }); + } + + // set items + this.itemsData = newDataSet; + this.itemSet && this.itemSet.setItems(newDataSet); + + if (initialLoad) { + if (this.options.start != undefined || this.options.end != undefined) { + if (this.options.start == undefined || this.options.end == undefined) { + var range = this.getItemRange(); + } + + var start = this.options.start != undefined ? this.options.start : range.min; + var end = this.options.end != undefined ? this.options.end : range.max; + + this.setWindow(start, end, { animation: false }); + } else { + this.fit({ animation: false }); + } + } + }; + + /** + * Set groups + * @param {vis.DataSet | Array} groups + */ + Timeline.prototype.setGroups = function (groups) { + // convert to type DataSet when needed + var newDataSet; + if (!groups) { + newDataSet = null; + } else if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = groups; + } else { + // turn an array into a dataset + newDataSet = new DataSet(groups); + } + + this.groupsData = newDataSet; + this.itemSet.setGroups(newDataSet); + }; + + /** + * Set both items and groups in one go + * @param {{items: Array | vis.DataSet, groups: Array | vis.DataSet}} data + */ + Timeline.prototype.setData = function (data) { + if (data && data.groups) { + this.setGroups(data.groups); + } + + if (data && data.items) { + this.setItems(data.items); + } + }; + + /** + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {string[] | string} [ids] An array with zero or more id's of the items to be + * selected. If ids is an empty array, all items will be + * unselected. + * @param {Object} [options] Available options: + * `focus: boolean` + * If true, focus will be set to the selected item(s) + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * Only applicable when option focus is true. + */ + Timeline.prototype.setSelection = function (ids, options) { + this.itemSet && this.itemSet.setSelection(ids); + + if (options && options.focus) { + this.focus(ids, options); + } + }; + + /** + * Get the selected items by their id + * @return {Array} ids The ids of the selected items + */ + Timeline.prototype.getSelection = function () { + return this.itemSet && this.itemSet.getSelection() || []; + }; + + /** + * Adjust the visible window such that the selected item (or multiple items) + * are centered on screen. + * @param {String | String[]} id An item id or array with item ids + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + */ + Timeline.prototype.focus = function (id, options) { + if (!this.itemsData || id == undefined) return; + + var ids = Array.isArray(id) ? id : [id]; + + // get the specified item(s) + var itemsData = this.itemsData.getDataSet().get(ids, { + type: { + start: 'Date', + end: 'Date' + } + }); + + // calculate minimum start and maximum end of specified items + var start = null; + var end = null; + itemsData.forEach(function (itemData) { + var s = itemData.start.valueOf(); + var e = 'end' in itemData ? itemData.end.valueOf() : itemData.start.valueOf(); + + if (start === null || s < start) { + start = s; + } + + if (end === null || e > end) { + end = e; + } + }); + + if (start !== null && end !== null) { + // calculate the new middle and interval for the window + var middle = (start + end) / 2; + var interval = Math.max(this.range.end - this.range.start, (end - start) * 1.1); + + var animation = options && options.animation !== undefined ? options.animation : true; + this.range.setRange(middle - interval / 2, middle + interval / 2, animation); + } + }; + + /** + * Set Timeline window such that it fits all items + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + */ + Timeline.prototype.fit = function (options) { + var animation = options && options.animation !== undefined ? options.animation : true; + var range = this.getItemRange(); + this.range.setRange(range.min, range.max, animation); + }; + + /** + * Determine the range of the items, taking into account their actual width + * and a margin of 10 pixels on both sides. + * @return {{min: Date | null, max: Date | null}} + */ + Timeline.prototype.getItemRange = function () { + var _this = this; + + // get a rough approximation for the range based on the items start and end dates + var range = this.getDataRange(); + var min = range.min; + var max = range.max; + var minItem = null; + var maxItem = null; + + if (min != null && max != null) { + var interval; + var factor; + var lhs; + var rhs; + var delta; + + (function () { + var getStart = function getStart(item) { + return util.convert(item.data.start, 'Date').valueOf(); + }; + + var getEnd = function getEnd(item) { + var end = item.data.end != undefined ? item.data.end : item.data.start; + return util.convert(end, 'Date').valueOf(); + } + + // calculate the date of the left side and right side of the items given + ; + + interval = max - min; + // ms + if (interval <= 0) { + interval = 10; + } + factor = interval / _this.props.center.width; + util.forEach(_this.itemSet.items, (function (item) { + item.show(); + + var start = getStart(item); + var end = getEnd(item); + + var left = new Date(start - (item.getWidthLeft() + 10) * factor); + var right = new Date(end + (item.getWidthRight() + 10) * factor); + + if (left < min) { + min = left; + minItem = item; + } + if (right > max) { + max = right; + maxItem = item; + } + }).bind(_this)); + + if (minItem && maxItem) { + lhs = minItem.getWidthLeft() + 10; + rhs = maxItem.getWidthRight() + 10; + delta = _this.props.center.width - lhs - rhs; + // px + + if (delta > 0) { + min = getStart(minItem) - lhs * interval / delta; // ms + max = getEnd(maxItem) + rhs * interval / delta; // ms + } + } + })(); + } + + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; + }; + + /** + * Calculate the data range of the items start and end dates + * @returns {{min: Date | null, max: Date | null}} + */ + Timeline.prototype.getDataRange = function () { + var min = null; + var max = null; + + var dataset = this.itemsData && this.itemsData.getDataSet(); + if (dataset) { + dataset.forEach(function (item) { + var start = util.convert(item.start, 'Date').valueOf(); + var end = util.convert(item.end != undefined ? item.end : item.start, 'Date').valueOf(); + if (min === null || start < min) { + min = start; + } + if (max === null || end > max) { + max = start; + } + }); + } + + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; + }; + + /** + * Generate Timeline related information from an event + * @param {Event} event + * @return {Object} An object with related information, like on which area + * The event happened, whether clicked on an item, etc. + */ + Timeline.prototype.getEventProperties = function (event) { + var clientX = event.center ? event.center.x : event.clientX; + var clientY = event.center ? event.center.y : event.clientY; + var x = clientX - util.getAbsoluteLeft(this.dom.centerContainer); + var y = clientY - util.getAbsoluteTop(this.dom.centerContainer); + + var item = this.itemSet.itemFromTarget(event); + var group = this.itemSet.groupFromTarget(event); + var customTime = CustomTime.customTimeFromTarget(event); + + var snap = this.itemSet.options.snap || null; + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); + var time = this._toTime(x); + var snappedTime = snap ? snap(time, scale, step) : time; + + var element = util.getTarget(event); + var what = null; + if (item != null) { + what = 'item'; + } else if (customTime != null) { + what = 'custom-time'; + } else if (util.hasParent(element, this.timeAxis.dom.foreground)) { + what = 'axis'; + } else if (this.timeAxis2 && util.hasParent(element, this.timeAxis2.dom.foreground)) { + what = 'axis'; + } else if (util.hasParent(element, this.itemSet.dom.labelSet)) { + what = 'group-label'; + } else if (util.hasParent(element, this.currentTime.bar)) { + what = 'current-time'; + } else if (util.hasParent(element, this.dom.center)) { + what = 'background'; + } + + return { + event: event, + item: item ? item.id : null, + group: group ? group.groupId : null, + what: what, + pageX: event.srcEvent ? event.srcEvent.pageX : event.pageX, + pageY: event.srcEvent ? event.srcEvent.pageY : event.pageY, + x: x, + y: y, + time: time, + snappedTime: snappedTime + }; + }; + + module.exports = Timeline; + +/***/ }, +/* 20 */ +/***/ function(module, exports, __webpack_require__) { + + // Only load hammer.js when in a browser environment + // (loading hammer.js in a node.js environment gives errors) + 'use strict'; + + if (typeof window !== 'undefined') { + var propagating = __webpack_require__(21); + var Hammer = window['Hammer'] || __webpack_require__(22); + module.exports = propagating(Hammer, { + preventDefault: 'mouse' + }); + } else { + module.exports = function () { + throw Error('hammer.js is only available in a browser, not in node.js.'); + }; + } + +/***/ }, +/* 21 */ +/***/ function(module, exports, __webpack_require__) { + + var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;'use strict'; + + (function (factory) { + if (true) { + // AMD. Register as an anonymous module. + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else if (typeof exports === 'object') { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(); + } else { + // Browser globals (root is window) + window.propagating = factory(); + } + }(function () { + var _firstTarget = null; // singleton, will contain the target element where the touch event started + var _processing = false; // singleton, true when a touch event is being handled + + /** + * Extend an Hammer.js instance with event propagation. + * + * Features: + * - Events emitted by hammer will propagate in order from child to parent + * elements. + * - Events are extended with a function `event.stopPropagation()` to stop + * propagation to parent elements. + * - An option `preventDefault` to stop all default browser behavior. + * + * Usage: + * var hammer = propagatingHammer(new Hammer(element)); + * var hammer = propagatingHammer(new Hammer(element), {preventDefault: true}); + * + * @param {Hammer.Manager} hammer An hammer instance. + * @param {Object} [options] Available options: + * - `preventDefault: true | 'mouse' | 'touch' | 'pen'`. + * Enforce preventing the default browser behavior. + * Cannot be set to `false`. + * @return {Hammer.Manager} Returns the same hammer instance with extended + * functionality + */ + return function propagating(hammer, options) { + var _options = options || { + preventDefault: false + }; + + if (hammer.Manager) { + // This looks like the Hammer constructor. + // Overload the constructors with our own. + var Hammer = hammer; + + var PropagatingHammer = function(element, options) { + var o = Object.create(_options); + if (options) Hammer.extend(o, options); + return propagating(new Hammer(element, o), o); + }; + Hammer.extend(PropagatingHammer, Hammer); + + PropagatingHammer.Manager = function (element, options) { + var o = Object.create(_options); + if (options) Hammer.extend(o, options); + return propagating(new Hammer.Manager(element, o), o); + }; + + return PropagatingHammer; + } + + // create a wrapper object which will override the functions + // `on`, `off`, `destroy`, and `emit` of the hammer instance + var wrapper = Object.create(hammer); + + // attach to DOM element + var element = hammer.element; + element.hammer = wrapper; + + // register an event to catch the start of a gesture and store the + // target in a singleton + hammer.on('hammer.input', function (event) { + if (_options.preventDefault === true || (_options.preventDefault === event.pointerType)) { + event.preventDefault(); + } + if (event.isFirst) { + _firstTarget = event.target; + } + }); + + /** @type {Object.>} */ + wrapper._handlers = {}; + + /** + * Register a handler for one or multiple events + * @param {String} events A space separated string with events + * @param {function} handler A callback function, called as handler(event) + * @returns {Hammer.Manager} Returns the hammer instance + */ + wrapper.on = function (events, handler) { + // register the handler + split(events).forEach(function (event) { + var _handlers = wrapper._handlers[event]; + if (!_handlers) { + wrapper._handlers[event] = _handlers = []; + + // register the static, propagated handler + hammer.on(event, propagatedHandler); + } + _handlers.push(handler); + }); + + return wrapper; + }; + + /** + * Unregister a handler for one or multiple events + * @param {String} events A space separated string with events + * @param {function} [handler] Optional. The registered handler. If not + * provided, all handlers for given events + * are removed. + * @returns {Hammer.Manager} Returns the hammer instance + */ + wrapper.off = function (events, handler) { + // unregister the handler + split(events).forEach(function (event) { + var _handlers = wrapper._handlers[event]; + if (_handlers) { + _handlers = handler ? _handlers.filter(function (h) { + return h !== handler; + }) : []; + + if (_handlers.length > 0) { + wrapper._handlers[event] = _handlers; + } + else { + // remove static, propagated handler + hammer.off(event, propagatedHandler); + delete wrapper._handlers[event]; + } + } + }); + + return wrapper; + }; + + /** + * Emit to the event listeners + * @param {string} eventType + * @param {Event} event + */ + wrapper.emit = function(eventType, event) { + _firstTarget = event.target; + hammer.emit(eventType, event); + }; + + wrapper.destroy = function () { + // Detach from DOM element + delete hammer.element.hammer; + + // clear all handlers + wrapper._handlers = {}; + + // call original hammer destroy + hammer.destroy(); + }; + + // split a string with space separated words + function split(events) { + return events.match(/[^ ]+/g); + } + + /** + * A static event handler, applying event propagation. + * @param {Object} event + */ + function propagatedHandler(event) { + // let only a single hammer instance handle this event + if (event.type !== 'hammer.input') { + // it is possible that the same srcEvent is used with multiple hammer events, + // we keep track on which events are handled in an object _handled + if (!event.srcEvent._handled) { + event.srcEvent._handled = {}; + } + + if (event.srcEvent._handled[event.type]) { + return; + } + else { + event.srcEvent._handled[event.type] = true; + } + } + + // attach a stopPropagation function to the event + var stopped = false; + event.stopPropagation = function () { + stopped = true; + }; + + // attach firstTarget property to the event + event.firstTarget = _firstTarget; + + // propagate over all elements (until stopped) + var elem = _firstTarget; + while (elem && !stopped) { + var _handlers = elem.hammer && elem.hammer._handlers[event.type]; + if (_handlers) { + for (var i = 0; i < _handlers.length && !stopped; i++) { + _handlers[i](event); + } + } + + elem = elem.parentNode; + } + } + + return wrapper; + }; + })); + + +/***/ }, +/* 22 */ +/***/ function(module, exports, __webpack_require__) { + + var __WEBPACK_AMD_DEFINE_RESULT__;/*! Hammer.JS - v2.0.4 - 2014-09-28 + * http://hammerjs.github.io/ + * + * Copyright (c) 2014 Jorik Tangelder; + * Licensed under the MIT license */ + (function(window, document, exportName, undefined) { + 'use strict'; + + var VENDOR_PREFIXES = ['', 'webkit', 'moz', 'MS', 'ms', 'o']; + var TEST_ELEMENT = document.createElement('div'); + + var TYPE_FUNCTION = 'function'; + + var round = Math.round; + var abs = Math.abs; + var now = Date.now; + + /** + * set a timeout with a given scope + * @param {Function} fn + * @param {Number} timeout + * @param {Object} context + * @returns {number} + */ + function setTimeoutContext(fn, timeout, context) { + return setTimeout(bindFn(fn, context), timeout); + } + + /** + * if the argument is an array, we want to execute the fn on each entry + * if it aint an array we don't want to do a thing. + * this is used by all the methods that accept a single and array argument. + * @param {*|Array} arg + * @param {String} fn + * @param {Object} [context] + * @returns {Boolean} + */ + function invokeArrayArg(arg, fn, context) { + if (Array.isArray(arg)) { + each(arg, context[fn], context); + return true; + } + return false; + } + + /** + * walk objects and arrays + * @param {Object} obj + * @param {Function} iterator + * @param {Object} context + */ + function each(obj, iterator, context) { + var i; + + if (!obj) { + return; + } + + if (obj.forEach) { + obj.forEach(iterator, context); + } else if (obj.length !== undefined) { + i = 0; + while (i < obj.length) { + iterator.call(context, obj[i], i, obj); + i++; + } + } else { + for (i in obj) { + obj.hasOwnProperty(i) && iterator.call(context, obj[i], i, obj); + } + } + } + + /** + * extend object. + * means that properties in dest will be overwritten by the ones in src. + * @param {Object} dest + * @param {Object} src + * @param {Boolean} [merge] + * @returns {Object} dest + */ + function extend(dest, src, merge) { + var keys = Object.keys(src); + var i = 0; + while (i < keys.length) { + if (!merge || (merge && dest[keys[i]] === undefined)) { + dest[keys[i]] = src[keys[i]]; + } + i++; + } + return dest; + } + + /** + * merge the values from src in the dest. + * means that properties that exist in dest will not be overwritten by src + * @param {Object} dest + * @param {Object} src + * @returns {Object} dest + */ + function merge(dest, src) { + return extend(dest, src, true); + } + + /** + * simple class inheritance + * @param {Function} child + * @param {Function} base + * @param {Object} [properties] + */ + function inherit(child, base, properties) { + var baseP = base.prototype, + childP; + + childP = child.prototype = Object.create(baseP); + childP.constructor = child; + childP._super = baseP; + + if (properties) { + extend(childP, properties); + } + } + + /** + * simple function bind + * @param {Function} fn + * @param {Object} context + * @returns {Function} + */ + function bindFn(fn, context) { + return function boundFn() { + return fn.apply(context, arguments); + }; + } + + /** + * let a boolean value also be a function that must return a boolean + * this first item in args will be used as the context + * @param {Boolean|Function} val + * @param {Array} [args] + * @returns {Boolean} + */ + function boolOrFn(val, args) { + if (typeof val == TYPE_FUNCTION) { + return val.apply(args ? args[0] || undefined : undefined, args); + } + return val; + } + + /** + * use the val2 when val1 is undefined + * @param {*} val1 + * @param {*} val2 + * @returns {*} + */ + function ifUndefined(val1, val2) { + return (val1 === undefined) ? val2 : val1; + } + + /** + * addEventListener with multiple events at once + * @param {EventTarget} target + * @param {String} types + * @param {Function} handler + */ + function addEventListeners(target, types, handler) { + each(splitStr(types), function(type) { + target.addEventListener(type, handler, false); + }); + } + + /** + * removeEventListener with multiple events at once + * @param {EventTarget} target + * @param {String} types + * @param {Function} handler + */ + function removeEventListeners(target, types, handler) { + each(splitStr(types), function(type) { + target.removeEventListener(type, handler, false); + }); + } + + /** + * find if a node is in the given parent + * @method hasParent + * @param {HTMLElement} node + * @param {HTMLElement} parent + * @return {Boolean} found + */ + function hasParent(node, parent) { + while (node) { + if (node == parent) { + return true; + } + node = node.parentNode; + } + return false; + } + + /** + * small indexOf wrapper + * @param {String} str + * @param {String} find + * @returns {Boolean} found + */ + function inStr(str, find) { + return str.indexOf(find) > -1; + } + + /** + * split string on whitespace + * @param {String} str + * @returns {Array} words + */ + function splitStr(str) { + return str.trim().split(/\s+/g); + } + + /** + * find if a array contains the object using indexOf or a simple polyFill + * @param {Array} src + * @param {String} find + * @param {String} [findByKey] + * @return {Boolean|Number} false when not found, or the index + */ + function inArray(src, find, findByKey) { + if (src.indexOf && !findByKey) { + return src.indexOf(find); + } else { + var i = 0; + while (i < src.length) { + if ((findByKey && src[i][findByKey] == find) || (!findByKey && src[i] === find)) { + return i; + } + i++; + } + return -1; + } + } + + /** + * convert array-like objects to real arrays + * @param {Object} obj + * @returns {Array} + */ + function toArray(obj) { + return Array.prototype.slice.call(obj, 0); + } + + /** + * unique array with objects based on a key (like 'id') or just by the array's value + * @param {Array} src [{id:1},{id:2},{id:1}] + * @param {String} [key] + * @param {Boolean} [sort=False] + * @returns {Array} [{id:1},{id:2}] + */ + function uniqueArray(src, key, sort) { + var results = []; + var values = []; + var i = 0; + + while (i < src.length) { + var val = key ? src[i][key] : src[i]; + if (inArray(values, val) < 0) { + results.push(src[i]); + } + values[i] = val; + i++; + } + + if (sort) { + if (!key) { + results = results.sort(); + } else { + results = results.sort(function sortUniqueArray(a, b) { + return a[key] > b[key]; + }); + } + } + + return results; + } + + /** + * get the prefixed property + * @param {Object} obj + * @param {String} property + * @returns {String|Undefined} prefixed + */ + function prefixed(obj, property) { + var prefix, prop; + var camelProp = property[0].toUpperCase() + property.slice(1); + + var i = 0; + while (i < VENDOR_PREFIXES.length) { + prefix = VENDOR_PREFIXES[i]; + prop = (prefix) ? prefix + camelProp : property; + + if (prop in obj) { + return prop; + } + i++; + } + return undefined; + } + + /** + * get a unique id + * @returns {number} uniqueId + */ + var _uniqueId = 1; + function uniqueId() { + return _uniqueId++; + } + + /** + * get the window object of an element + * @param {HTMLElement} element + * @returns {DocumentView|Window} + */ + function getWindowForElement(element) { + var doc = element.ownerDocument; + return (doc.defaultView || doc.parentWindow); + } + + var MOBILE_REGEX = /mobile|tablet|ip(ad|hone|od)|android/i; + + var SUPPORT_TOUCH = ('ontouchstart' in window); + var SUPPORT_POINTER_EVENTS = prefixed(window, 'PointerEvent') !== undefined; + var SUPPORT_ONLY_TOUCH = SUPPORT_TOUCH && MOBILE_REGEX.test(navigator.userAgent); + + var INPUT_TYPE_TOUCH = 'touch'; + var INPUT_TYPE_PEN = 'pen'; + var INPUT_TYPE_MOUSE = 'mouse'; + var INPUT_TYPE_KINECT = 'kinect'; + + var COMPUTE_INTERVAL = 25; + + var INPUT_START = 1; + var INPUT_MOVE = 2; + var INPUT_END = 4; + var INPUT_CANCEL = 8; + + var DIRECTION_NONE = 1; + var DIRECTION_LEFT = 2; + var DIRECTION_RIGHT = 4; + var DIRECTION_UP = 8; + var DIRECTION_DOWN = 16; + + var DIRECTION_HORIZONTAL = DIRECTION_LEFT | DIRECTION_RIGHT; + var DIRECTION_VERTICAL = DIRECTION_UP | DIRECTION_DOWN; + var DIRECTION_ALL = DIRECTION_HORIZONTAL | DIRECTION_VERTICAL; + + var PROPS_XY = ['x', 'y']; + var PROPS_CLIENT_XY = ['clientX', 'clientY']; + + /** + * create new input type manager + * @param {Manager} manager + * @param {Function} callback + * @returns {Input} + * @constructor + */ + function Input(manager, callback) { + var self = this; + this.manager = manager; + this.callback = callback; + this.element = manager.element; + this.target = manager.options.inputTarget; + + // smaller wrapper around the handler, for the scope and the enabled state of the manager, + // so when disabled the input events are completely bypassed. + this.domHandler = function(ev) { + if (boolOrFn(manager.options.enable, [manager])) { + self.handler(ev); + } + }; + + this.init(); + + } + + Input.prototype = { + /** + * should handle the inputEvent data and trigger the callback + * @virtual + */ + handler: function() { }, + + /** + * bind the events + */ + init: function() { + this.evEl && addEventListeners(this.element, this.evEl, this.domHandler); + this.evTarget && addEventListeners(this.target, this.evTarget, this.domHandler); + this.evWin && addEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); + }, + + /** + * unbind the events + */ + destroy: function() { + this.evEl && removeEventListeners(this.element, this.evEl, this.domHandler); + this.evTarget && removeEventListeners(this.target, this.evTarget, this.domHandler); + this.evWin && removeEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); + } + }; + + /** + * create new input type manager + * called by the Manager constructor + * @param {Hammer} manager + * @returns {Input} + */ + function createInputInstance(manager) { + var Type; + var inputClass = manager.options.inputClass; + + if (inputClass) { + Type = inputClass; + } else if (SUPPORT_POINTER_EVENTS) { + Type = PointerEventInput; + } else if (SUPPORT_ONLY_TOUCH) { + Type = TouchInput; + } else if (!SUPPORT_TOUCH) { + Type = MouseInput; + } else { + Type = TouchMouseInput; + } + return new (Type)(manager, inputHandler); + } + + /** + * handle input events + * @param {Manager} manager + * @param {String} eventType + * @param {Object} input + */ + function inputHandler(manager, eventType, input) { + var pointersLen = input.pointers.length; + var changedPointersLen = input.changedPointers.length; + var isFirst = (eventType & INPUT_START && (pointersLen - changedPointersLen === 0)); + var isFinal = (eventType & (INPUT_END | INPUT_CANCEL) && (pointersLen - changedPointersLen === 0)); + + input.isFirst = !!isFirst; + input.isFinal = !!isFinal; + + if (isFirst) { + manager.session = {}; + } + + // source event is the normalized value of the domEvents + // like 'touchstart, mouseup, pointerdown' + input.eventType = eventType; + + // compute scale, rotation etc + computeInputData(manager, input); + + // emit secret event + manager.emit('hammer.input', input); + + manager.recognize(input); + manager.session.prevInput = input; + } + + /** + * extend the data with some usable properties like scale, rotate, velocity etc + * @param {Object} manager + * @param {Object} input + */ + function computeInputData(manager, input) { + var session = manager.session; + var pointers = input.pointers; + var pointersLength = pointers.length; + + // store the first input to calculate the distance and direction + if (!session.firstInput) { + session.firstInput = simpleCloneInputData(input); + } + + // to compute scale and rotation we need to store the multiple touches + if (pointersLength > 1 && !session.firstMultiple) { + session.firstMultiple = simpleCloneInputData(input); + } else if (pointersLength === 1) { + session.firstMultiple = false; + } + + var firstInput = session.firstInput; + var firstMultiple = session.firstMultiple; + var offsetCenter = firstMultiple ? firstMultiple.center : firstInput.center; + + var center = input.center = getCenter(pointers); + input.timeStamp = now(); + input.deltaTime = input.timeStamp - firstInput.timeStamp; + + input.angle = getAngle(offsetCenter, center); + input.distance = getDistance(offsetCenter, center); + + computeDeltaXY(session, input); + input.offsetDirection = getDirection(input.deltaX, input.deltaY); + + input.scale = firstMultiple ? getScale(firstMultiple.pointers, pointers) : 1; + input.rotation = firstMultiple ? getRotation(firstMultiple.pointers, pointers) : 0; + + computeIntervalInputData(session, input); + + // find the correct target + var target = manager.element; + if (hasParent(input.srcEvent.target, target)) { + target = input.srcEvent.target; + } + input.target = target; + } + + function computeDeltaXY(session, input) { + var center = input.center; + var offset = session.offsetDelta || {}; + var prevDelta = session.prevDelta || {}; + var prevInput = session.prevInput || {}; + + if (input.eventType === INPUT_START || prevInput.eventType === INPUT_END) { + prevDelta = session.prevDelta = { + x: prevInput.deltaX || 0, + y: prevInput.deltaY || 0 + }; + + offset = session.offsetDelta = { + x: center.x, + y: center.y + }; + } + + input.deltaX = prevDelta.x + (center.x - offset.x); + input.deltaY = prevDelta.y + (center.y - offset.y); + } + + /** + * velocity is calculated every x ms + * @param {Object} session + * @param {Object} input + */ + function computeIntervalInputData(session, input) { + var last = session.lastInterval || input, + deltaTime = input.timeStamp - last.timeStamp, + velocity, velocityX, velocityY, direction; + + if (input.eventType != INPUT_CANCEL && (deltaTime > COMPUTE_INTERVAL || last.velocity === undefined)) { + var deltaX = last.deltaX - input.deltaX; + var deltaY = last.deltaY - input.deltaY; + + var v = getVelocity(deltaTime, deltaX, deltaY); + velocityX = v.x; + velocityY = v.y; + velocity = (abs(v.x) > abs(v.y)) ? v.x : v.y; + direction = getDirection(deltaX, deltaY); + + session.lastInterval = input; + } else { + // use latest velocity info if it doesn't overtake a minimum period + velocity = last.velocity; + velocityX = last.velocityX; + velocityY = last.velocityY; + direction = last.direction; + } + + input.velocity = velocity; + input.velocityX = velocityX; + input.velocityY = velocityY; + input.direction = direction; + } + + /** + * create a simple clone from the input used for storage of firstInput and firstMultiple + * @param {Object} input + * @returns {Object} clonedInputData + */ + function simpleCloneInputData(input) { + // make a simple copy of the pointers because we will get a reference if we don't + // we only need clientXY for the calculations + var pointers = []; + var i = 0; + while (i < input.pointers.length) { + pointers[i] = { + clientX: round(input.pointers[i].clientX), + clientY: round(input.pointers[i].clientY) + }; + i++; + } + + return { + timeStamp: now(), + pointers: pointers, + center: getCenter(pointers), + deltaX: input.deltaX, + deltaY: input.deltaY + }; + } + + /** + * get the center of all the pointers + * @param {Array} pointers + * @return {Object} center contains `x` and `y` properties + */ + function getCenter(pointers) { + var pointersLength = pointers.length; + + // no need to loop when only one touch + if (pointersLength === 1) { + return { + x: round(pointers[0].clientX), + y: round(pointers[0].clientY) + }; + } + + var x = 0, y = 0, i = 0; + while (i < pointersLength) { + x += pointers[i].clientX; + y += pointers[i].clientY; + i++; + } + + return { + x: round(x / pointersLength), + y: round(y / pointersLength) + }; + } + + /** + * calculate the velocity between two points. unit is in px per ms. + * @param {Number} deltaTime + * @param {Number} x + * @param {Number} y + * @return {Object} velocity `x` and `y` + */ + function getVelocity(deltaTime, x, y) { + return { + x: x / deltaTime || 0, + y: y / deltaTime || 0 + }; + } + + /** + * get the direction between two points + * @param {Number} x + * @param {Number} y + * @return {Number} direction + */ + function getDirection(x, y) { + if (x === y) { + return DIRECTION_NONE; + } + + if (abs(x) >= abs(y)) { + return x > 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + return y > 0 ? DIRECTION_UP : DIRECTION_DOWN; + } + + /** + * calculate the absolute distance between two points + * @param {Object} p1 {x, y} + * @param {Object} p2 {x, y} + * @param {Array} [props] containing x and y keys + * @return {Number} distance + */ + function getDistance(p1, p2, props) { + if (!props) { + props = PROPS_XY; + } + var x = p2[props[0]] - p1[props[0]], + y = p2[props[1]] - p1[props[1]]; + + return Math.sqrt((x * x) + (y * y)); + } + + /** + * calculate the angle between two coordinates + * @param {Object} p1 + * @param {Object} p2 + * @param {Array} [props] containing x and y keys + * @return {Number} angle + */ + function getAngle(p1, p2, props) { + if (!props) { + props = PROPS_XY; + } + var x = p2[props[0]] - p1[props[0]], + y = p2[props[1]] - p1[props[1]]; + return Math.atan2(y, x) * 180 / Math.PI; + } + + /** + * calculate the rotation degrees between two pointersets + * @param {Array} start array of pointers + * @param {Array} end array of pointers + * @return {Number} rotation + */ + function getRotation(start, end) { + return getAngle(end[1], end[0], PROPS_CLIENT_XY) - getAngle(start[1], start[0], PROPS_CLIENT_XY); + } + + /** + * calculate the scale factor between two pointersets + * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out + * @param {Array} start array of pointers + * @param {Array} end array of pointers + * @return {Number} scale + */ + function getScale(start, end) { + return getDistance(end[0], end[1], PROPS_CLIENT_XY) / getDistance(start[0], start[1], PROPS_CLIENT_XY); + } + + var MOUSE_INPUT_MAP = { + mousedown: INPUT_START, + mousemove: INPUT_MOVE, + mouseup: INPUT_END + }; + + var MOUSE_ELEMENT_EVENTS = 'mousedown'; + var MOUSE_WINDOW_EVENTS = 'mousemove mouseup'; + + /** + * Mouse events input + * @constructor + * @extends Input + */ + function MouseInput() { + this.evEl = MOUSE_ELEMENT_EVENTS; + this.evWin = MOUSE_WINDOW_EVENTS; + + this.allow = true; // used by Input.TouchMouse to disable mouse events + this.pressed = false; // mousedown state + + Input.apply(this, arguments); + } + + inherit(MouseInput, Input, { + /** + * handle mouse events + * @param {Object} ev + */ + handler: function MEhandler(ev) { + var eventType = MOUSE_INPUT_MAP[ev.type]; + + // on start we want to have the left mouse button down + if (eventType & INPUT_START && ev.button === 0) { + this.pressed = true; + } + + if (eventType & INPUT_MOVE && ev.which !== 1) { + eventType = INPUT_END; + } + + // mouse must be down, and mouse events are allowed (see the TouchMouse input) + if (!this.pressed || !this.allow) { + return; + } + + if (eventType & INPUT_END) { + this.pressed = false; + } + + this.callback(this.manager, eventType, { + pointers: [ev], + changedPointers: [ev], + pointerType: INPUT_TYPE_MOUSE, + srcEvent: ev + }); + } + }); + + var POINTER_INPUT_MAP = { + pointerdown: INPUT_START, + pointermove: INPUT_MOVE, + pointerup: INPUT_END, + pointercancel: INPUT_CANCEL, + pointerout: INPUT_CANCEL + }; + + // in IE10 the pointer types is defined as an enum + var IE10_POINTER_TYPE_ENUM = { + 2: INPUT_TYPE_TOUCH, + 3: INPUT_TYPE_PEN, + 4: INPUT_TYPE_MOUSE, + 5: INPUT_TYPE_KINECT // see https://twitter.com/jacobrossi/status/480596438489890816 + }; + + var POINTER_ELEMENT_EVENTS = 'pointerdown'; + var POINTER_WINDOW_EVENTS = 'pointermove pointerup pointercancel'; + + // IE10 has prefixed support, and case-sensitive + if (window.MSPointerEvent) { + POINTER_ELEMENT_EVENTS = 'MSPointerDown'; + POINTER_WINDOW_EVENTS = 'MSPointerMove MSPointerUp MSPointerCancel'; + } + + /** + * Pointer events input + * @constructor + * @extends Input + */ + function PointerEventInput() { + this.evEl = POINTER_ELEMENT_EVENTS; + this.evWin = POINTER_WINDOW_EVENTS; + + Input.apply(this, arguments); + + this.store = (this.manager.session.pointerEvents = []); + } + + inherit(PointerEventInput, Input, { + /** + * handle mouse events + * @param {Object} ev + */ + handler: function PEhandler(ev) { + var store = this.store; + var removePointer = false; + + var eventTypeNormalized = ev.type.toLowerCase().replace('ms', ''); + var eventType = POINTER_INPUT_MAP[eventTypeNormalized]; + var pointerType = IE10_POINTER_TYPE_ENUM[ev.pointerType] || ev.pointerType; + + var isTouch = (pointerType == INPUT_TYPE_TOUCH); + + // get index of the event in the store + var storeIndex = inArray(store, ev.pointerId, 'pointerId'); + + // start and mouse must be down + if (eventType & INPUT_START && (ev.button === 0 || isTouch)) { + if (storeIndex < 0) { + store.push(ev); + storeIndex = store.length - 1; + } + } else if (eventType & (INPUT_END | INPUT_CANCEL)) { + removePointer = true; + } + + // it not found, so the pointer hasn't been down (so it's probably a hover) + if (storeIndex < 0) { + return; + } + + // update the event in the store + store[storeIndex] = ev; + + this.callback(this.manager, eventType, { + pointers: store, + changedPointers: [ev], + pointerType: pointerType, + srcEvent: ev + }); + + if (removePointer) { + // remove from the store + store.splice(storeIndex, 1); + } + } + }); + + var SINGLE_TOUCH_INPUT_MAP = { + touchstart: INPUT_START, + touchmove: INPUT_MOVE, + touchend: INPUT_END, + touchcancel: INPUT_CANCEL + }; + + var SINGLE_TOUCH_TARGET_EVENTS = 'touchstart'; + var SINGLE_TOUCH_WINDOW_EVENTS = 'touchstart touchmove touchend touchcancel'; + + /** + * Touch events input + * @constructor + * @extends Input + */ + function SingleTouchInput() { + this.evTarget = SINGLE_TOUCH_TARGET_EVENTS; + this.evWin = SINGLE_TOUCH_WINDOW_EVENTS; + this.started = false; + + Input.apply(this, arguments); + } + + inherit(SingleTouchInput, Input, { + handler: function TEhandler(ev) { + var type = SINGLE_TOUCH_INPUT_MAP[ev.type]; + + // should we handle the touch events? + if (type === INPUT_START) { + this.started = true; + } + + if (!this.started) { + return; + } + + var touches = normalizeSingleTouches.call(this, ev, type); + + // when done, reset the started state + if (type & (INPUT_END | INPUT_CANCEL) && touches[0].length - touches[1].length === 0) { + this.started = false; + } + + this.callback(this.manager, type, { + pointers: touches[0], + changedPointers: touches[1], + pointerType: INPUT_TYPE_TOUCH, + srcEvent: ev + }); + } + }); + + /** + * @this {TouchInput} + * @param {Object} ev + * @param {Number} type flag + * @returns {undefined|Array} [all, changed] + */ + function normalizeSingleTouches(ev, type) { + var all = toArray(ev.touches); + var changed = toArray(ev.changedTouches); + + if (type & (INPUT_END | INPUT_CANCEL)) { + all = uniqueArray(all.concat(changed), 'identifier', true); + } + + return [all, changed]; + } + + var TOUCH_INPUT_MAP = { + touchstart: INPUT_START, + touchmove: INPUT_MOVE, + touchend: INPUT_END, + touchcancel: INPUT_CANCEL + }; + + var TOUCH_TARGET_EVENTS = 'touchstart touchmove touchend touchcancel'; + + /** + * Multi-user touch events input + * @constructor + * @extends Input + */ + function TouchInput() { + this.evTarget = TOUCH_TARGET_EVENTS; + this.targetIds = {}; + + Input.apply(this, arguments); + } + + inherit(TouchInput, Input, { + handler: function MTEhandler(ev) { + var type = TOUCH_INPUT_MAP[ev.type]; + var touches = getTouches.call(this, ev, type); + if (!touches) { + return; + } + + this.callback(this.manager, type, { + pointers: touches[0], + changedPointers: touches[1], + pointerType: INPUT_TYPE_TOUCH, + srcEvent: ev + }); + } + }); + + /** + * @this {TouchInput} + * @param {Object} ev + * @param {Number} type flag + * @returns {undefined|Array} [all, changed] + */ + function getTouches(ev, type) { + var allTouches = toArray(ev.touches); + var targetIds = this.targetIds; + + // when there is only one touch, the process can be simplified + if (type & (INPUT_START | INPUT_MOVE) && allTouches.length === 1) { + targetIds[allTouches[0].identifier] = true; + return [allTouches, allTouches]; + } + + var i, + targetTouches, + changedTouches = toArray(ev.changedTouches), + changedTargetTouches = [], + target = this.target; + + // get target touches from touches + targetTouches = allTouches.filter(function(touch) { + return hasParent(touch.target, target); + }); + + // collect touches + if (type === INPUT_START) { + i = 0; + while (i < targetTouches.length) { + targetIds[targetTouches[i].identifier] = true; + i++; + } + } + + // filter changed touches to only contain touches that exist in the collected target ids + i = 0; + while (i < changedTouches.length) { + if (targetIds[changedTouches[i].identifier]) { + changedTargetTouches.push(changedTouches[i]); + } + + // cleanup removed touches + if (type & (INPUT_END | INPUT_CANCEL)) { + delete targetIds[changedTouches[i].identifier]; + } + i++; + } + + if (!changedTargetTouches.length) { + return; + } + + return [ + // merge targetTouches with changedTargetTouches so it contains ALL touches, including 'end' and 'cancel' + uniqueArray(targetTouches.concat(changedTargetTouches), 'identifier', true), + changedTargetTouches + ]; + } + + /** + * Combined touch and mouse input + * + * Touch has a higher priority then mouse, and while touching no mouse events are allowed. + * This because touch devices also emit mouse events while doing a touch. + * + * @constructor + * @extends Input + */ + function TouchMouseInput() { + Input.apply(this, arguments); + + var handler = bindFn(this.handler, this); + this.touch = new TouchInput(this.manager, handler); + this.mouse = new MouseInput(this.manager, handler); + } + + inherit(TouchMouseInput, Input, { + /** + * handle mouse and touch events + * @param {Hammer} manager + * @param {String} inputEvent + * @param {Object} inputData + */ + handler: function TMEhandler(manager, inputEvent, inputData) { + var isTouch = (inputData.pointerType == INPUT_TYPE_TOUCH), + isMouse = (inputData.pointerType == INPUT_TYPE_MOUSE); + + // when we're in a touch event, so block all upcoming mouse events + // most mobile browser also emit mouseevents, right after touchstart + if (isTouch) { + this.mouse.allow = false; + } else if (isMouse && !this.mouse.allow) { + return; + } + + // reset the allowMouse when we're done + if (inputEvent & (INPUT_END | INPUT_CANCEL)) { + this.mouse.allow = true; + } + + this.callback(manager, inputEvent, inputData); + }, + + /** + * remove the event listeners + */ + destroy: function destroy() { + this.touch.destroy(); + this.mouse.destroy(); + } + }); + + var PREFIXED_TOUCH_ACTION = prefixed(TEST_ELEMENT.style, 'touchAction'); + var NATIVE_TOUCH_ACTION = PREFIXED_TOUCH_ACTION !== undefined; + + // magical touchAction value + var TOUCH_ACTION_COMPUTE = 'compute'; + var TOUCH_ACTION_AUTO = 'auto'; + var TOUCH_ACTION_MANIPULATION = 'manipulation'; // not implemented + var TOUCH_ACTION_NONE = 'none'; + var TOUCH_ACTION_PAN_X = 'pan-x'; + var TOUCH_ACTION_PAN_Y = 'pan-y'; + + /** + * Touch Action + * sets the touchAction property or uses the js alternative + * @param {Manager} manager + * @param {String} value + * @constructor + */ + function TouchAction(manager, value) { + this.manager = manager; + this.set(value); + } + + TouchAction.prototype = { + /** + * set the touchAction value on the element or enable the polyfill + * @param {String} value + */ + set: function(value) { + // find out the touch-action by the event handlers + if (value == TOUCH_ACTION_COMPUTE) { + value = this.compute(); + } + + if (NATIVE_TOUCH_ACTION) { + this.manager.element.style[PREFIXED_TOUCH_ACTION] = value; + } + this.actions = value.toLowerCase().trim(); + }, + + /** + * just re-set the touchAction value + */ + update: function() { + this.set(this.manager.options.touchAction); + }, + + /** + * compute the value for the touchAction property based on the recognizer's settings + * @returns {String} value + */ + compute: function() { + var actions = []; + each(this.manager.recognizers, function(recognizer) { + if (boolOrFn(recognizer.options.enable, [recognizer])) { + actions = actions.concat(recognizer.getTouchAction()); + } + }); + return cleanTouchActions(actions.join(' ')); + }, + + /** + * this method is called on each input cycle and provides the preventing of the browser behavior + * @param {Object} input + */ + preventDefaults: function(input) { + // not needed with native support for the touchAction property + if (NATIVE_TOUCH_ACTION) { + return; + } + + var srcEvent = input.srcEvent; + var direction = input.offsetDirection; + + // if the touch action did prevented once this session + if (this.manager.session.prevented) { + srcEvent.preventDefault(); + return; + } + + var actions = this.actions; + var hasNone = inStr(actions, TOUCH_ACTION_NONE); + var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y); + var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X); + + if (hasNone || + (hasPanY && direction & DIRECTION_HORIZONTAL) || + (hasPanX && direction & DIRECTION_VERTICAL)) { + return this.preventSrc(srcEvent); + } + }, + + /** + * call preventDefault to prevent the browser's default behavior (scrolling in most cases) + * @param {Object} srcEvent + */ + preventSrc: function(srcEvent) { + this.manager.session.prevented = true; + srcEvent.preventDefault(); + } + }; + + /** + * when the touchActions are collected they are not a valid value, so we need to clean things up. * + * @param {String} actions + * @returns {*} + */ + function cleanTouchActions(actions) { + // none + if (inStr(actions, TOUCH_ACTION_NONE)) { + return TOUCH_ACTION_NONE; + } + + var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X); + var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y); + + // pan-x and pan-y can be combined + if (hasPanX && hasPanY) { + return TOUCH_ACTION_PAN_X + ' ' + TOUCH_ACTION_PAN_Y; + } + + // pan-x OR pan-y + if (hasPanX || hasPanY) { + return hasPanX ? TOUCH_ACTION_PAN_X : TOUCH_ACTION_PAN_Y; + } + + // manipulation + if (inStr(actions, TOUCH_ACTION_MANIPULATION)) { + return TOUCH_ACTION_MANIPULATION; + } + + return TOUCH_ACTION_AUTO; + } + + /** + * Recognizer flow explained; * + * All recognizers have the initial state of POSSIBLE when a input session starts. + * The definition of a input session is from the first input until the last input, with all it's movement in it. * + * Example session for mouse-input: mousedown -> mousemove -> mouseup + * + * On each recognizing cycle (see Manager.recognize) the .recognize() method is executed + * which determines with state it should be. + * + * If the recognizer has the state FAILED, CANCELLED or RECOGNIZED (equals ENDED), it is reset to + * POSSIBLE to give it another change on the next cycle. + * + * Possible + * | + * +-----+---------------+ + * | | + * +-----+-----+ | + * | | | + * Failed Cancelled | + * +-------+------+ + * | | + * Recognized Began + * | + * Changed + * | + * Ended/Recognized + */ + var STATE_POSSIBLE = 1; + var STATE_BEGAN = 2; + var STATE_CHANGED = 4; + var STATE_ENDED = 8; + var STATE_RECOGNIZED = STATE_ENDED; + var STATE_CANCELLED = 16; + var STATE_FAILED = 32; + + /** + * Recognizer + * Every recognizer needs to extend from this class. + * @constructor + * @param {Object} options + */ + function Recognizer(options) { + this.id = uniqueId(); + + this.manager = null; + this.options = merge(options || {}, this.defaults); + + // default is enable true + this.options.enable = ifUndefined(this.options.enable, true); + + this.state = STATE_POSSIBLE; + + this.simultaneous = {}; + this.requireFail = []; + } + + Recognizer.prototype = { + /** + * @virtual + * @type {Object} + */ + defaults: {}, + + /** + * set options + * @param {Object} options + * @return {Recognizer} + */ + set: function(options) { + extend(this.options, options); + + // also update the touchAction, in case something changed about the directions/enabled state + this.manager && this.manager.touchAction.update(); + return this; + }, + + /** + * recognize simultaneous with an other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + recognizeWith: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'recognizeWith', this)) { + return this; + } + + var simultaneous = this.simultaneous; + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + if (!simultaneous[otherRecognizer.id]) { + simultaneous[otherRecognizer.id] = otherRecognizer; + otherRecognizer.recognizeWith(this); + } + return this; + }, + + /** + * drop the simultaneous link. it doesnt remove the link on the other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + dropRecognizeWith: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'dropRecognizeWith', this)) { + return this; + } + + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + delete this.simultaneous[otherRecognizer.id]; + return this; + }, + + /** + * recognizer can only run when an other is failing + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + requireFailure: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'requireFailure', this)) { + return this; + } + + var requireFail = this.requireFail; + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + if (inArray(requireFail, otherRecognizer) === -1) { + requireFail.push(otherRecognizer); + otherRecognizer.requireFailure(this); + } + return this; + }, + + /** + * drop the requireFailure link. it does not remove the link on the other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + dropRequireFailure: function(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'dropRequireFailure', this)) { + return this; + } + + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + var index = inArray(this.requireFail, otherRecognizer); + if (index > -1) { + this.requireFail.splice(index, 1); + } + return this; + }, + + /** + * has require failures boolean + * @returns {boolean} + */ + hasRequireFailures: function() { + return this.requireFail.length > 0; + }, + + /** + * if the recognizer can recognize simultaneous with an other recognizer + * @param {Recognizer} otherRecognizer + * @returns {Boolean} + */ + canRecognizeWith: function(otherRecognizer) { + return !!this.simultaneous[otherRecognizer.id]; + }, + + /** + * You should use `tryEmit` instead of `emit` directly to check + * that all the needed recognizers has failed before emitting. + * @param {Object} input + */ + emit: function(input) { + var self = this; + var state = this.state; + + function emit(withState) { + self.manager.emit(self.options.event + (withState ? stateStr(state) : ''), input); + } + + // 'panstart' and 'panmove' + if (state < STATE_ENDED) { + emit(true); + } + + emit(); // simple 'eventName' events + + // panend and pancancel + if (state >= STATE_ENDED) { + emit(true); + } + }, + + /** + * Check that all the require failure recognizers has failed, + * if true, it emits a gesture event, + * otherwise, setup the state to FAILED. + * @param {Object} input + */ + tryEmit: function(input) { + if (this.canEmit()) { + return this.emit(input); + } + // it's failing anyway + this.state = STATE_FAILED; + }, + + /** + * can we emit? + * @returns {boolean} + */ + canEmit: function() { + var i = 0; + while (i < this.requireFail.length) { + if (!(this.requireFail[i].state & (STATE_FAILED | STATE_POSSIBLE))) { + return false; + } + i++; + } + return true; + }, + + /** + * update the recognizer + * @param {Object} inputData + */ + recognize: function(inputData) { + // make a new copy of the inputData + // so we can change the inputData without messing up the other recognizers + var inputDataClone = extend({}, inputData); + + // is is enabled and allow recognizing? + if (!boolOrFn(this.options.enable, [this, inputDataClone])) { + this.reset(); + this.state = STATE_FAILED; + return; + } + + // reset when we've reached the end + if (this.state & (STATE_RECOGNIZED | STATE_CANCELLED | STATE_FAILED)) { + this.state = STATE_POSSIBLE; + } + + this.state = this.process(inputDataClone); + + // the recognizer has recognized a gesture + // so trigger an event + if (this.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED | STATE_CANCELLED)) { + this.tryEmit(inputDataClone); + } + }, + + /** + * return the state of the recognizer + * the actual recognizing happens in this method + * @virtual + * @param {Object} inputData + * @returns {Const} STATE + */ + process: function(inputData) { }, // jshint ignore:line + + /** + * return the preferred touch-action + * @virtual + * @returns {Array} + */ + getTouchAction: function() { }, + + /** + * called when the gesture isn't allowed to recognize + * like when another is being recognized or it is disabled + * @virtual + */ + reset: function() { } + }; + + /** + * get a usable string, used as event postfix + * @param {Const} state + * @returns {String} state + */ + function stateStr(state) { + if (state & STATE_CANCELLED) { + return 'cancel'; + } else if (state & STATE_ENDED) { + return 'end'; + } else if (state & STATE_CHANGED) { + return 'move'; + } else if (state & STATE_BEGAN) { + return 'start'; + } + return ''; + } + + /** + * direction cons to string + * @param {Const} direction + * @returns {String} + */ + function directionStr(direction) { + if (direction == DIRECTION_DOWN) { + return 'down'; + } else if (direction == DIRECTION_UP) { + return 'up'; + } else if (direction == DIRECTION_LEFT) { + return 'left'; + } else if (direction == DIRECTION_RIGHT) { + return 'right'; + } + return ''; + } + + /** + * get a recognizer by name if it is bound to a manager + * @param {Recognizer|String} otherRecognizer + * @param {Recognizer} recognizer + * @returns {Recognizer} + */ + function getRecognizerByNameIfManager(otherRecognizer, recognizer) { + var manager = recognizer.manager; + if (manager) { + return manager.get(otherRecognizer); + } + return otherRecognizer; + } + + /** + * This recognizer is just used as a base for the simple attribute recognizers. + * @constructor + * @extends Recognizer + */ + function AttrRecognizer() { + Recognizer.apply(this, arguments); + } + + inherit(AttrRecognizer, Recognizer, { + /** + * @namespace + * @memberof AttrRecognizer + */ + defaults: { + /** + * @type {Number} + * @default 1 + */ + pointers: 1 + }, + + /** + * Used to check if it the recognizer receives valid input, like input.distance > 10. + * @memberof AttrRecognizer + * @param {Object} input + * @returns {Boolean} recognized + */ + attrTest: function(input) { + var optionPointers = this.options.pointers; + return optionPointers === 0 || input.pointers.length === optionPointers; + }, + + /** + * Process the input and return the state for the recognizer + * @memberof AttrRecognizer + * @param {Object} input + * @returns {*} State + */ + process: function(input) { + var state = this.state; + var eventType = input.eventType; + + var isRecognized = state & (STATE_BEGAN | STATE_CHANGED); + var isValid = this.attrTest(input); + + // on cancel input and we've recognized before, return STATE_CANCELLED + if (isRecognized && (eventType & INPUT_CANCEL || !isValid)) { + return state | STATE_CANCELLED; + } else if (isRecognized || isValid) { + if (eventType & INPUT_END) { + return state | STATE_ENDED; + } else if (!(state & STATE_BEGAN)) { + return STATE_BEGAN; + } + return state | STATE_CHANGED; + } + return STATE_FAILED; + } + }); + + /** + * Pan + * Recognized when the pointer is down and moved in the allowed direction. + * @constructor + * @extends AttrRecognizer + */ + function PanRecognizer() { + AttrRecognizer.apply(this, arguments); + + this.pX = null; + this.pY = null; + } + + inherit(PanRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof PanRecognizer + */ + defaults: { + event: 'pan', + threshold: 10, + pointers: 1, + direction: DIRECTION_ALL + }, + + getTouchAction: function() { + var direction = this.options.direction; + var actions = []; + if (direction & DIRECTION_HORIZONTAL) { + actions.push(TOUCH_ACTION_PAN_Y); + } + if (direction & DIRECTION_VERTICAL) { + actions.push(TOUCH_ACTION_PAN_X); + } + return actions; + }, + + directionTest: function(input) { + var options = this.options; + var hasMoved = true; + var distance = input.distance; + var direction = input.direction; + var x = input.deltaX; + var y = input.deltaY; + + // lock to axis? + if (!(direction & options.direction)) { + if (options.direction & DIRECTION_HORIZONTAL) { + direction = (x === 0) ? DIRECTION_NONE : (x < 0) ? DIRECTION_LEFT : DIRECTION_RIGHT; + hasMoved = x != this.pX; + distance = Math.abs(input.deltaX); + } else { + direction = (y === 0) ? DIRECTION_NONE : (y < 0) ? DIRECTION_UP : DIRECTION_DOWN; + hasMoved = y != this.pY; + distance = Math.abs(input.deltaY); + } + } + input.direction = direction; + return hasMoved && distance > options.threshold && direction & options.direction; + }, + + attrTest: function(input) { + return AttrRecognizer.prototype.attrTest.call(this, input) && + (this.state & STATE_BEGAN || (!(this.state & STATE_BEGAN) && this.directionTest(input))); + }, + + emit: function(input) { + this.pX = input.deltaX; + this.pY = input.deltaY; + + var direction = directionStr(input.direction); + if (direction) { + this.manager.emit(this.options.event + direction, input); + } + + this._super.emit.call(this, input); + } + }); + + /** + * Pinch + * Recognized when two or more pointers are moving toward (zoom-in) or away from each other (zoom-out). + * @constructor + * @extends AttrRecognizer + */ + function PinchRecognizer() { + AttrRecognizer.apply(this, arguments); + } + + inherit(PinchRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof PinchRecognizer + */ + defaults: { + event: 'pinch', + threshold: 0, + pointers: 2 + }, + + getTouchAction: function() { + return [TOUCH_ACTION_NONE]; + }, + + attrTest: function(input) { + return this._super.attrTest.call(this, input) && + (Math.abs(input.scale - 1) > this.options.threshold || this.state & STATE_BEGAN); + }, + + emit: function(input) { + this._super.emit.call(this, input); + if (input.scale !== 1) { + var inOut = input.scale < 1 ? 'in' : 'out'; + this.manager.emit(this.options.event + inOut, input); + } + } + }); + + /** + * Press + * Recognized when the pointer is down for x ms without any movement. + * @constructor + * @extends Recognizer + */ + function PressRecognizer() { + Recognizer.apply(this, arguments); + + this._timer = null; + this._input = null; + } + + inherit(PressRecognizer, Recognizer, { + /** + * @namespace + * @memberof PressRecognizer + */ + defaults: { + event: 'press', + pointers: 1, + time: 500, // minimal time of the pointer to be pressed + threshold: 5 // a minimal movement is ok, but keep it low + }, + + getTouchAction: function() { + return [TOUCH_ACTION_AUTO]; + }, + + process: function(input) { + var options = this.options; + var validPointers = input.pointers.length === options.pointers; + var validMovement = input.distance < options.threshold; + var validTime = input.deltaTime > options.time; + + this._input = input; + + // we only allow little movement + // and we've reached an end event, so a tap is possible + if (!validMovement || !validPointers || (input.eventType & (INPUT_END | INPUT_CANCEL) && !validTime)) { + this.reset(); + } else if (input.eventType & INPUT_START) { + this.reset(); + this._timer = setTimeoutContext(function() { + this.state = STATE_RECOGNIZED; + this.tryEmit(); + }, options.time, this); + } else if (input.eventType & INPUT_END) { + return STATE_RECOGNIZED; + } + return STATE_FAILED; + }, + + reset: function() { + clearTimeout(this._timer); + }, + + emit: function(input) { + if (this.state !== STATE_RECOGNIZED) { + return; + } + + if (input && (input.eventType & INPUT_END)) { + this.manager.emit(this.options.event + 'up', input); + } else { + this._input.timeStamp = now(); + this.manager.emit(this.options.event, this._input); + } + } + }); + + /** + * Rotate + * Recognized when two or more pointer are moving in a circular motion. + * @constructor + * @extends AttrRecognizer + */ + function RotateRecognizer() { + AttrRecognizer.apply(this, arguments); + } + + inherit(RotateRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof RotateRecognizer + */ + defaults: { + event: 'rotate', + threshold: 0, + pointers: 2 + }, + + getTouchAction: function() { + return [TOUCH_ACTION_NONE]; + }, + + attrTest: function(input) { + return this._super.attrTest.call(this, input) && + (Math.abs(input.rotation) > this.options.threshold || this.state & STATE_BEGAN); + } + }); + + /** + * Swipe + * Recognized when the pointer is moving fast (velocity), with enough distance in the allowed direction. + * @constructor + * @extends AttrRecognizer + */ + function SwipeRecognizer() { + AttrRecognizer.apply(this, arguments); + } + + inherit(SwipeRecognizer, AttrRecognizer, { + /** + * @namespace + * @memberof SwipeRecognizer + */ + defaults: { + event: 'swipe', + threshold: 10, + velocity: 0.65, + direction: DIRECTION_HORIZONTAL | DIRECTION_VERTICAL, + pointers: 1 + }, + + getTouchAction: function() { + return PanRecognizer.prototype.getTouchAction.call(this); + }, + + attrTest: function(input) { + var direction = this.options.direction; + var velocity; + + if (direction & (DIRECTION_HORIZONTAL | DIRECTION_VERTICAL)) { + velocity = input.velocity; + } else if (direction & DIRECTION_HORIZONTAL) { + velocity = input.velocityX; + } else if (direction & DIRECTION_VERTICAL) { + velocity = input.velocityY; + } + + return this._super.attrTest.call(this, input) && + direction & input.direction && + input.distance > this.options.threshold && + abs(velocity) > this.options.velocity && input.eventType & INPUT_END; + }, + + emit: function(input) { + var direction = directionStr(input.direction); + if (direction) { + this.manager.emit(this.options.event + direction, input); + } + + this.manager.emit(this.options.event, input); + } + }); + + /** + * A tap is ecognized when the pointer is doing a small tap/click. Multiple taps are recognized if they occur + * between the given interval and position. The delay option can be used to recognize multi-taps without firing + * a single tap. + * + * The eventData from the emitted event contains the property `tapCount`, which contains the amount of + * multi-taps being recognized. + * @constructor + * @extends Recognizer + */ + function TapRecognizer() { + Recognizer.apply(this, arguments); + + // previous time and center, + // used for tap counting + this.pTime = false; + this.pCenter = false; + + this._timer = null; + this._input = null; + this.count = 0; + } + + inherit(TapRecognizer, Recognizer, { + /** + * @namespace + * @memberof PinchRecognizer + */ + defaults: { + event: 'tap', + pointers: 1, + taps: 1, + interval: 300, // max time between the multi-tap taps + time: 250, // max time of the pointer to be down (like finger on the screen) + threshold: 2, // a minimal movement is ok, but keep it low + posThreshold: 10 // a multi-tap can be a bit off the initial position + }, + + getTouchAction: function() { + return [TOUCH_ACTION_MANIPULATION]; + }, + + process: function(input) { + var options = this.options; + + var validPointers = input.pointers.length === options.pointers; + var validMovement = input.distance < options.threshold; + var validTouchTime = input.deltaTime < options.time; + + this.reset(); + + if ((input.eventType & INPUT_START) && (this.count === 0)) { + return this.failTimeout(); + } + + // we only allow little movement + // and we've reached an end event, so a tap is possible + if (validMovement && validTouchTime && validPointers) { + if (input.eventType != INPUT_END) { + return this.failTimeout(); + } + + var validInterval = this.pTime ? (input.timeStamp - this.pTime < options.interval) : true; + var validMultiTap = !this.pCenter || getDistance(this.pCenter, input.center) < options.posThreshold; + + this.pTime = input.timeStamp; + this.pCenter = input.center; + + if (!validMultiTap || !validInterval) { + this.count = 1; + } else { + this.count += 1; + } + + this._input = input; + + // if tap count matches we have recognized it, + // else it has began recognizing... + var tapCount = this.count % options.taps; + if (tapCount === 0) { + // no failing requirements, immediately trigger the tap event + // or wait as long as the multitap interval to trigger + if (!this.hasRequireFailures()) { + return STATE_RECOGNIZED; + } else { + this._timer = setTimeoutContext(function() { + this.state = STATE_RECOGNIZED; + this.tryEmit(); + }, options.interval, this); + return STATE_BEGAN; + } + } + } + return STATE_FAILED; + }, + + failTimeout: function() { + this._timer = setTimeoutContext(function() { + this.state = STATE_FAILED; + }, this.options.interval, this); + return STATE_FAILED; + }, + + reset: function() { + clearTimeout(this._timer); + }, + + emit: function() { + if (this.state == STATE_RECOGNIZED ) { + this._input.tapCount = this.count; + this.manager.emit(this.options.event, this._input); + } + } + }); + + /** + * Simple way to create an manager with a default set of recognizers. + * @param {HTMLElement} element + * @param {Object} [options] + * @constructor + */ + function Hammer(element, options) { + options = options || {}; + options.recognizers = ifUndefined(options.recognizers, Hammer.defaults.preset); + return new Manager(element, options); + } + + /** + * @const {string} + */ + Hammer.VERSION = '2.0.4'; + + /** + * default settings + * @namespace + */ + Hammer.defaults = { + /** + * set if DOM events are being triggered. + * But this is slower and unused by simple implementations, so disabled by default. + * @type {Boolean} + * @default false + */ + domEvents: false, + + /** + * The value for the touchAction property/fallback. + * When set to `compute` it will magically set the correct value based on the added recognizers. + * @type {String} + * @default compute + */ + touchAction: TOUCH_ACTION_COMPUTE, + + /** + * @type {Boolean} + * @default true + */ + enable: true, + + /** + * EXPERIMENTAL FEATURE -- can be removed/changed + * Change the parent input target element. + * If Null, then it is being set the to main element. + * @type {Null|EventTarget} + * @default null + */ + inputTarget: null, + + /** + * force an input class + * @type {Null|Function} + * @default null + */ + inputClass: null, + + /** + * Default recognizer setup when calling `Hammer()` + * When creating a new Manager these will be skipped. + * @type {Array} + */ + preset: [ + // RecognizerClass, options, [recognizeWith, ...], [requireFailure, ...] + [RotateRecognizer, { enable: false }], + [PinchRecognizer, { enable: false }, ['rotate']], + [SwipeRecognizer,{ direction: DIRECTION_HORIZONTAL }], + [PanRecognizer, { direction: DIRECTION_HORIZONTAL }, ['swipe']], + [TapRecognizer], + [TapRecognizer, { event: 'doubletap', taps: 2 }, ['tap']], + [PressRecognizer] + ], + + /** + * Some CSS properties can be used to improve the working of Hammer. + * Add them to this method and they will be set when creating a new Manager. + * @namespace + */ + cssProps: { + /** + * Disables text selection to improve the dragging gesture. Mainly for desktop browsers. + * @type {String} + * @default 'none' + */ + userSelect: 'none', + + /** + * Disable the Windows Phone grippers when pressing an element. + * @type {String} + * @default 'none' + */ + touchSelect: 'none', + + /** + * Disables the default callout shown when you touch and hold a touch target. + * On iOS, when you touch and hold a touch target such as a link, Safari displays + * a callout containing information about the link. This property allows you to disable that callout. + * @type {String} + * @default 'none' + */ + touchCallout: 'none', + + /** + * Specifies whether zooming is enabled. Used by IE10> + * @type {String} + * @default 'none' + */ + contentZooming: 'none', + + /** + * Specifies that an entire element should be draggable instead of its contents. Mainly for desktop browsers. + * @type {String} + * @default 'none' + */ + userDrag: 'none', + + /** + * Overrides the highlight color shown when the user taps a link or a JavaScript + * clickable element in iOS. This property obeys the alpha value, if specified. + * @type {String} + * @default 'rgba(0,0,0,0)' + */ + tapHighlightColor: 'rgba(0,0,0,0)' + } + }; + + var STOP = 1; + var FORCED_STOP = 2; + + /** + * Manager + * @param {HTMLElement} element + * @param {Object} [options] + * @constructor + */ + function Manager(element, options) { + options = options || {}; + + this.options = merge(options, Hammer.defaults); + this.options.inputTarget = this.options.inputTarget || element; + + this.handlers = {}; + this.session = {}; + this.recognizers = []; + + this.element = element; + this.input = createInputInstance(this); + this.touchAction = new TouchAction(this, this.options.touchAction); + + toggleCssProps(this, true); + + each(options.recognizers, function(item) { + var recognizer = this.add(new (item[0])(item[1])); + item[2] && recognizer.recognizeWith(item[2]); + item[3] && recognizer.requireFailure(item[3]); + }, this); + } + + Manager.prototype = { + /** + * set options + * @param {Object} options + * @returns {Manager} + */ + set: function(options) { + extend(this.options, options); + + // Options that need a little more setup + if (options.touchAction) { + this.touchAction.update(); + } + if (options.inputTarget) { + // Clean up existing event listeners and reinitialize + this.input.destroy(); + this.input.target = options.inputTarget; + this.input.init(); + } + return this; + }, + + /** + * stop recognizing for this session. + * This session will be discarded, when a new [input]start event is fired. + * When forced, the recognizer cycle is stopped immediately. + * @param {Boolean} [force] + */ + stop: function(force) { + this.session.stopped = force ? FORCED_STOP : STOP; + }, + + /** + * run the recognizers! + * called by the inputHandler function on every movement of the pointers (touches) + * it walks through all the recognizers and tries to detect the gesture that is being made + * @param {Object} inputData + */ + recognize: function(inputData) { + var session = this.session; + if (session.stopped) { + return; + } + + // run the touch-action polyfill + this.touchAction.preventDefaults(inputData); + + var recognizer; + var recognizers = this.recognizers; + + // this holds the recognizer that is being recognized. + // so the recognizer's state needs to be BEGAN, CHANGED, ENDED or RECOGNIZED + // if no recognizer is detecting a thing, it is set to `null` + var curRecognizer = session.curRecognizer; + + // reset when the last recognizer is recognized + // or when we're in a new session + if (!curRecognizer || (curRecognizer && curRecognizer.state & STATE_RECOGNIZED)) { + curRecognizer = session.curRecognizer = null; + } + + var i = 0; + while (i < recognizers.length) { + recognizer = recognizers[i]; + + // find out if we are allowed try to recognize the input for this one. + // 1. allow if the session is NOT forced stopped (see the .stop() method) + // 2. allow if we still haven't recognized a gesture in this session, or the this recognizer is the one + // that is being recognized. + // 3. allow if the recognizer is allowed to run simultaneous with the current recognized recognizer. + // this can be setup with the `recognizeWith()` method on the recognizer. + if (session.stopped !== FORCED_STOP && ( // 1 + !curRecognizer || recognizer == curRecognizer || // 2 + recognizer.canRecognizeWith(curRecognizer))) { // 3 + recognizer.recognize(inputData); + } else { + recognizer.reset(); + } + + // if the recognizer has been recognizing the input as a valid gesture, we want to store this one as the + // current active recognizer. but only if we don't already have an active recognizer + if (!curRecognizer && recognizer.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED)) { + curRecognizer = session.curRecognizer = recognizer; + } + i++; + } + }, + + /** + * get a recognizer by its event name. + * @param {Recognizer|String} recognizer + * @returns {Recognizer|Null} + */ + get: function(recognizer) { + if (recognizer instanceof Recognizer) { + return recognizer; + } + + var recognizers = this.recognizers; + for (var i = 0; i < recognizers.length; i++) { + if (recognizers[i].options.event == recognizer) { + return recognizers[i]; + } + } + return null; + }, + + /** + * add a recognizer to the manager + * existing recognizers with the same event name will be removed + * @param {Recognizer} recognizer + * @returns {Recognizer|Manager} + */ + add: function(recognizer) { + if (invokeArrayArg(recognizer, 'add', this)) { + return this; + } + + // remove existing + var existing = this.get(recognizer.options.event); + if (existing) { + this.remove(existing); + } + + this.recognizers.push(recognizer); + recognizer.manager = this; + + this.touchAction.update(); + return recognizer; + }, + + /** + * remove a recognizer by name or instance + * @param {Recognizer|String} recognizer + * @returns {Manager} + */ + remove: function(recognizer) { + if (invokeArrayArg(recognizer, 'remove', this)) { + return this; + } + + var recognizers = this.recognizers; + recognizer = this.get(recognizer); + recognizers.splice(inArray(recognizers, recognizer), 1); + + this.touchAction.update(); + return this; + }, + + /** + * bind event + * @param {String} events + * @param {Function} handler + * @returns {EventEmitter} this + */ + on: function(events, handler) { + var handlers = this.handlers; + each(splitStr(events), function(event) { + handlers[event] = handlers[event] || []; + handlers[event].push(handler); + }); + return this; + }, + + /** + * unbind event, leave emit blank to remove all handlers + * @param {String} events + * @param {Function} [handler] + * @returns {EventEmitter} this + */ + off: function(events, handler) { + var handlers = this.handlers; + each(splitStr(events), function(event) { + if (!handler) { + delete handlers[event]; + } else { + handlers[event].splice(inArray(handlers[event], handler), 1); + } + }); + return this; + }, + + /** + * emit event to the listeners + * @param {String} event + * @param {Object} data + */ + emit: function(event, data) { + // we also want to trigger dom events + if (this.options.domEvents) { + triggerDomEvent(event, data); + } + + // no handlers, so skip it all + var handlers = this.handlers[event] && this.handlers[event].slice(); + if (!handlers || !handlers.length) { + return; + } + + data.type = event; + data.preventDefault = function() { + data.srcEvent.preventDefault(); + }; + + var i = 0; + while (i < handlers.length) { + handlers[i](data); + i++; + } + }, + + /** + * destroy the manager and unbinds all events + * it doesn't unbind dom events, that is the user own responsibility + */ + destroy: function() { + this.element && toggleCssProps(this, false); + + this.handlers = {}; + this.session = {}; + this.input.destroy(); + this.element = null; + } + }; + + /** + * add/remove the css properties as defined in manager.options.cssProps + * @param {Manager} manager + * @param {Boolean} add + */ + function toggleCssProps(manager, add) { + var element = manager.element; + each(manager.options.cssProps, function(value, name) { + element.style[prefixed(element.style, name)] = add ? value : ''; + }); + } + + /** + * trigger dom event + * @param {String} event + * @param {Object} data + */ + function triggerDomEvent(event, data) { + var gestureEvent = document.createEvent('Event'); + gestureEvent.initEvent(event, true, true); + gestureEvent.gesture = data; + data.target.dispatchEvent(gestureEvent); + } + + extend(Hammer, { + INPUT_START: INPUT_START, + INPUT_MOVE: INPUT_MOVE, + INPUT_END: INPUT_END, + INPUT_CANCEL: INPUT_CANCEL, + + STATE_POSSIBLE: STATE_POSSIBLE, + STATE_BEGAN: STATE_BEGAN, + STATE_CHANGED: STATE_CHANGED, + STATE_ENDED: STATE_ENDED, + STATE_RECOGNIZED: STATE_RECOGNIZED, + STATE_CANCELLED: STATE_CANCELLED, + STATE_FAILED: STATE_FAILED, + + DIRECTION_NONE: DIRECTION_NONE, + DIRECTION_LEFT: DIRECTION_LEFT, + DIRECTION_RIGHT: DIRECTION_RIGHT, + DIRECTION_UP: DIRECTION_UP, + DIRECTION_DOWN: DIRECTION_DOWN, + DIRECTION_HORIZONTAL: DIRECTION_HORIZONTAL, + DIRECTION_VERTICAL: DIRECTION_VERTICAL, + DIRECTION_ALL: DIRECTION_ALL, + + Manager: Manager, + Input: Input, + TouchAction: TouchAction, + + TouchInput: TouchInput, + MouseInput: MouseInput, + PointerEventInput: PointerEventInput, + TouchMouseInput: TouchMouseInput, + SingleTouchInput: SingleTouchInput, + + Recognizer: Recognizer, + AttrRecognizer: AttrRecognizer, + Tap: TapRecognizer, + Pan: PanRecognizer, + Swipe: SwipeRecognizer, + Pinch: PinchRecognizer, + Rotate: RotateRecognizer, + Press: PressRecognizer, + + on: addEventListeners, + off: removeEventListeners, + each: each, + merge: merge, + extend: extend, + inherit: inherit, + bindFn: bindFn, + prefixed: prefixed + }); + + if ("function" == TYPE_FUNCTION && __webpack_require__(23)) { + !(__WEBPACK_AMD_DEFINE_RESULT__ = function() { + return Hammer; + }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else if (typeof module != 'undefined' && module.exports) { + module.exports = Hammer; + } else { + window[exportName] = Hammer; + } + + })(window, document, 'Hammer'); + + +/***/ }, +/* 23 */ +/***/ function(module, exports) { + + /* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {module.exports = __webpack_amd_options__; + + /* WEBPACK VAR INJECTION */}.call(exports, {})) + +/***/ }, +/* 24 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var hammerUtil = __webpack_require__(25); + var moment = __webpack_require__(2); + var Component = __webpack_require__(26); + var DateUtil = __webpack_require__(27); + + /** + * @constructor Range + * A Range controls a numeric range with a start and end value. + * The Range adjusts the range based on mouse events or programmatic changes, + * and triggers events when the range is changing or has been changed. + * @param {{dom: Object, domProps: Object, emitter: Emitter}} body + * @param {Object} [options] See description at Range.setOptions + */ + function Range(body, options) { + var now = moment().hours(0).minutes(0).seconds(0).milliseconds(0); + this.start = now.clone().add(-3, 'days').valueOf(); // Number + this.end = now.clone().add(4, 'days').valueOf(); // Number + + this.body = body; + this.deltaDifference = 0; + this.scaleOffset = 0; + this.startToFront = false; + this.endToFront = true; + + // default options + this.defaultOptions = { + start: null, + end: null, + moment: moment, + direction: 'horizontal', // 'horizontal' or 'vertical' + moveable: true, + zoomable: true, + min: null, + max: null, + zoomMin: 10, // milliseconds + zoomMax: 1000 * 60 * 60 * 24 * 365 * 10000 // milliseconds + }; + this.options = util.extend({}, this.defaultOptions); + + this.props = { + touch: {} + }; + this.animationTimer = null; + + // drag listeners for dragging + this.body.emitter.on('panstart', this._onDragStart.bind(this)); + this.body.emitter.on('panmove', this._onDrag.bind(this)); + this.body.emitter.on('panend', this._onDragEnd.bind(this)); + + // mouse wheel for zooming + this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this)); + + // pinch to zoom + this.body.emitter.on('touch', this._onTouch.bind(this)); + this.body.emitter.on('pinch', this._onPinch.bind(this)); + + this.setOptions(options); + } + + Range.prototype = new Component(); + + /** + * Set options for the range controller + * @param {Object} options Available options: + * {Number | Date | String} start Start date for the range + * {Number | Date | String} end End date for the range + * {Number} min Minimum value for start + * {Number} max Maximum value for end + * {Number} zoomMin Set a minimum value for + * (end - start). + * {Number} zoomMax Set a maximum value for + * (end - start). + * {Boolean} moveable Enable moving of the range + * by dragging. True by default + * {Boolean} zoomable Enable zooming of the range + * by pinching/scrolling. True by default + */ + Range.prototype.setOptions = function (options) { + if (options) { + // copy the options that we know + var fields = ['direction', 'min', 'max', 'zoomMin', 'zoomMax', 'moveable', 'zoomable', 'moment', 'activate', 'hiddenDates', 'zoomKey']; + util.selectiveExtend(fields, this.options, options); + + if ('start' in options || 'end' in options) { + // apply a new range. both start and end are optional + this.setRange(options.start, options.end); + } + } + }; + + /** + * Test whether direction has a valid value + * @param {String} direction 'horizontal' or 'vertical' + */ + function validateDirection(direction) { + if (direction != 'horizontal' && direction != 'vertical') { + throw new TypeError('Unknown direction "' + direction + '". ' + 'Choose "horizontal" or "vertical".'); + } + } + + /** + * Set a new start and end range + * @param {Date | Number | String} [start] + * @param {Date | Number | String} [end] + * @param {boolean | {duration: number, easingFunction: string}} [animation=false] + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * @param {Boolean} [byUser=false] + * + */ + Range.prototype.setRange = function (start, end, animation, byUser) { + if (byUser !== true) { + byUser = false; + } + var finalStart = start != undefined ? util.convert(start, 'Date').valueOf() : null; + var finalEnd = end != undefined ? util.convert(end, 'Date').valueOf() : null; + this._cancelAnimation(); + + if (animation) { + // true or an Object + var me = this; + var initStart = this.start; + var initEnd = this.end; + var duration = typeof animation === 'object' && 'duration' in animation ? animation.duration : 500; + var easingName = typeof animation === 'object' && 'easingFunction' in animation ? animation.easingFunction : 'easeInOutQuad'; + var easingFunction = util.easingFunctions[easingName]; + if (!easingFunction) { + throw new Error('Unknown easing function ' + JSON.stringify(easingName) + '. ' + 'Choose from: ' + Object.keys(util.easingFunctions).join(', ')); + } + + var initTime = new Date().valueOf(); + var anyChanged = false; + + var next = function next() { + if (!me.props.touch.dragging) { + var now = new Date().valueOf(); + var time = now - initTime; + var ease = easingFunction(time / duration); + var done = time > duration; + var s = done || finalStart === null ? finalStart : initStart + (finalStart - initStart) * ease; + var e = done || finalEnd === null ? finalEnd : initEnd + (finalEnd - initEnd) * ease; + + changed = me._applyRange(s, e); + DateUtil.updateHiddenDates(me.options.moment, me.body, me.options.hiddenDates); + anyChanged = anyChanged || changed; + if (changed) { + me.body.emitter.emit('rangechange', { start: new Date(me.start), end: new Date(me.end), byUser: byUser }); + } + + if (done) { + if (anyChanged) { + me.body.emitter.emit('rangechanged', { start: new Date(me.start), end: new Date(me.end), byUser: byUser }); + } + } else { + // animate with as high as possible frame rate, leave 20 ms in between + // each to prevent the browser from blocking + me.animationTimer = setTimeout(next, 20); + } + } + }; + + return next(); + } else { + var changed = this._applyRange(finalStart, finalEnd); + DateUtil.updateHiddenDates(this.options.moment, this.body, this.options.hiddenDates); + if (changed) { + var params = { start: new Date(this.start), end: new Date(this.end), byUser: byUser }; + this.body.emitter.emit('rangechange', params); + this.body.emitter.emit('rangechanged', params); + } + } + }; + + /** + * Stop an animation + * @private + */ + Range.prototype._cancelAnimation = function () { + if (this.animationTimer) { + clearTimeout(this.animationTimer); + this.animationTimer = null; + } + }; + + /** + * Set a new start and end range. This method is the same as setRange, but + * does not trigger a range change and range changed event, and it returns + * true when the range is changed + * @param {Number} [start] + * @param {Number} [end] + * @return {Boolean} changed + * @private + */ + Range.prototype._applyRange = function (start, end) { + var newStart = start != null ? util.convert(start, 'Date').valueOf() : this.start, + newEnd = end != null ? util.convert(end, 'Date').valueOf() : this.end, + max = this.options.max != null ? util.convert(this.options.max, 'Date').valueOf() : null, + min = this.options.min != null ? util.convert(this.options.min, 'Date').valueOf() : null, + diff; + + // check for valid number + if (isNaN(newStart) || newStart === null) { + throw new Error('Invalid start "' + start + '"'); + } + if (isNaN(newEnd) || newEnd === null) { + throw new Error('Invalid end "' + end + '"'); + } + + // prevent start < end + if (newEnd < newStart) { + newEnd = newStart; + } + + // prevent start < min + if (min !== null) { + if (newStart < min) { + diff = min - newStart; + newStart += diff; + newEnd += diff; + + // prevent end > max + if (max != null) { + if (newEnd > max) { + newEnd = max; + } + } + } + } + + // prevent end > max + if (max !== null) { + if (newEnd > max) { + diff = newEnd - max; + newStart -= diff; + newEnd -= diff; + + // prevent start < min + if (min != null) { + if (newStart < min) { + newStart = min; + } + } + } + } + + // prevent (end-start) < zoomMin + if (this.options.zoomMin !== null) { + var zoomMin = parseFloat(this.options.zoomMin); + if (zoomMin < 0) { + zoomMin = 0; + } + if (newEnd - newStart < zoomMin) { + if (this.end - this.start === zoomMin && newStart > this.start && newEnd < this.end) { + // ignore this action, we are already zoomed to the minimum + newStart = this.start; + newEnd = this.end; + } else { + // zoom to the minimum + diff = zoomMin - (newEnd - newStart); + newStart -= diff / 2; + newEnd += diff / 2; + } + } + } + + // prevent (end-start) > zoomMax + if (this.options.zoomMax !== null) { + var zoomMax = parseFloat(this.options.zoomMax); + if (zoomMax < 0) { + zoomMax = 0; + } + + if (newEnd - newStart > zoomMax) { + if (this.end - this.start === zoomMax && newStart < this.start && newEnd > this.end) { + // ignore this action, we are already zoomed to the maximum + newStart = this.start; + newEnd = this.end; + } else { + // zoom to the maximum + diff = newEnd - newStart - zoomMax; + newStart += diff / 2; + newEnd -= diff / 2; + } + } + } + + var changed = this.start != newStart || this.end != newEnd; + + // if the new range does NOT overlap with the old range, emit checkRangedItems to avoid not showing ranged items (ranged meaning has end time, not necessarily of type Range) + if (!(newStart >= this.start && newStart <= this.end || newEnd >= this.start && newEnd <= this.end) && !(this.start >= newStart && this.start <= newEnd || this.end >= newStart && this.end <= newEnd)) { + this.body.emitter.emit('checkRangedItems'); + } + + this.start = newStart; + this.end = newEnd; + return changed; + }; + + /** + * Retrieve the current range. + * @return {Object} An object with start and end properties + */ + Range.prototype.getRange = function () { + return { + start: this.start, + end: this.end + }; + }; + + /** + * Calculate the conversion offset and scale for current range, based on + * the provided width + * @param {Number} width + * @returns {{offset: number, scale: number}} conversion + */ + Range.prototype.conversion = function (width, totalHidden) { + return Range.conversion(this.start, this.end, width, totalHidden); + }; + + /** + * Static method to calculate the conversion offset and scale for a range, + * based on the provided start, end, and width + * @param {Number} start + * @param {Number} end + * @param {Number} width + * @returns {{offset: number, scale: number}} conversion + */ + Range.conversion = function (start, end, width, totalHidden) { + if (totalHidden === undefined) { + totalHidden = 0; + } + if (width != 0 && end - start != 0) { + return { + offset: start, + scale: width / (end - start - totalHidden) + }; + } else { + return { + offset: 0, + scale: 1 + }; + } + }; + + /** + * Start dragging horizontally or vertically + * @param {Event} event + * @private + */ + Range.prototype._onDragStart = function (event) { + this.deltaDifference = 0; + this.previousDelta = 0; + + // only allow dragging when configured as movable + if (!this.options.moveable) return; + + // only start dragging when the mouse is inside the current range + if (!this._isInsideRange(event)) return; + + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + + this.props.touch.start = this.start; + this.props.touch.end = this.end; + this.props.touch.dragging = true; + + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'move'; + } + }; + + /** + * Perform dragging operation + * @param {Event} event + * @private + */ + Range.prototype._onDrag = function (event) { + if (!this.props.touch.dragging) return; + + // only allow dragging when configured as movable + if (!this.options.moveable) return; + + // TODO: this may be redundant in hammerjs2 + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + + var direction = this.options.direction; + validateDirection(direction); + var delta = direction == 'horizontal' ? event.deltaX : event.deltaY; + delta -= this.deltaDifference; + var interval = this.props.touch.end - this.props.touch.start; + + // normalize dragging speed if cutout is in between. + var duration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + interval -= duration; + + var width = direction == 'horizontal' ? this.body.domProps.center.width : this.body.domProps.center.height; + var diffRange = -delta / width * interval; + var newStart = this.props.touch.start + diffRange; + var newEnd = this.props.touch.end + diffRange; + + // snapping times away from hidden zones + var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, this.previousDelta - delta, true); + var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, this.previousDelta - delta, true); + if (safeStart != newStart || safeEnd != newEnd) { + this.deltaDifference += delta; + this.props.touch.start = safeStart; + this.props.touch.end = safeEnd; + this._onDrag(event); + return; + } + + this.previousDelta = delta; + this._applyRange(newStart, newEnd); + + // fire a rangechange event + this.body.emitter.emit('rangechange', { + start: new Date(this.start), + end: new Date(this.end), + byUser: true + }); + }; + + /** + * Stop dragging operation + * @param {event} event + * @private + */ + Range.prototype._onDragEnd = function (event) { + if (!this.props.touch.dragging) return; + + // only allow dragging when configured as movable + if (!this.options.moveable) return; + + // TODO: this may be redundant in hammerjs2 + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.props.touch.allowDragging) return; + + this.props.touch.dragging = false; + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'auto'; + } + + // fire a rangechanged event + this.body.emitter.emit('rangechanged', { + start: new Date(this.start), + end: new Date(this.end), + byUser: true + }); + }; + + /** + * Event handler for mouse wheel event, used to zoom + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {Event} event + * @private + */ + Range.prototype._onMouseWheel = function (event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; + + // only zoom when the mouse is inside the current range + if (!this._isInsideRange(event)) return; + + // only zoom when the according key is pressed and the zoomKey option is set + if (this.options.zoomKey && !event[this.options.zoomKey]) return; + + // retrieve delta + var delta = 0; + if (event.wheelDelta) { + /* IE/Opera. */ + delta = event.wheelDelta / 120; + } else if (event.detail) { + /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail / 3; + } + + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta) { + // perform the zoom action. Delta is normally 1 or -1 + + // adjust a negative delta such that zooming in with delta 0.1 + // equals zooming out with a delta -0.1 + var scale; + if (delta < 0) { + scale = 1 - delta / 5; + } else { + scale = 1 / (1 + delta / 5); + } + + // calculate center, the date to zoom around + var pointer = getPointer({ x: event.clientX, y: event.clientY }, this.body.dom.center); + var pointerDate = this._pointerToDate(pointer); + + this.zoom(scale, pointerDate, delta); + } + + // Prevent default actions caused by mouse wheel + // (else the page and timeline both zoom and scroll) + event.preventDefault(); + }; + + /** + * Start of a touch gesture + * @private + */ + Range.prototype._onTouch = function (event) { + this.props.touch.start = this.start; + this.props.touch.end = this.end; + this.props.touch.allowDragging = true; + this.props.touch.center = null; + this.scaleOffset = 0; + this.deltaDifference = 0; + }; + + /** + * Handle pinch event + * @param {Event} event + * @private + */ + Range.prototype._onPinch = function (event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; + + this.props.touch.allowDragging = false; + + if (!this.props.touch.center) { + this.props.touch.center = getPointer(event.center, this.body.dom.center); + } + + var scale = 1 / (event.scale + this.scaleOffset); + var centerDate = this._pointerToDate(this.props.touch.center); + + var hiddenDuration = DateUtil.getHiddenDurationBetween(this.options.moment, this.body.hiddenDates, this.start, this.end); + var hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this, centerDate); + var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; + + // calculate new start and end + var newStart = centerDate - hiddenDurationBefore + (this.props.touch.start - (centerDate - hiddenDurationBefore)) * scale; + var newEnd = centerDate + hiddenDurationAfter + (this.props.touch.end - (centerDate + hiddenDurationAfter)) * scale; + + // snapping times away from hidden zones + this.startToFront = 1 - scale <= 0; // used to do the right auto correction with periodic hidden times + this.endToFront = scale - 1 <= 0; // used to do the right auto correction with periodic hidden times + + var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, 1 - scale, true); + var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, scale - 1, true); + if (safeStart != newStart || safeEnd != newEnd) { + this.props.touch.start = safeStart; + this.props.touch.end = safeEnd; + this.scaleOffset = 1 - event.scale; + newStart = safeStart; + newEnd = safeEnd; + } + + this.setRange(newStart, newEnd, false, true); + + this.startToFront = false; // revert to default + this.endToFront = true; // revert to default + }; + + /** + * Test whether the mouse from a mouse event is inside the visible window, + * between the current start and end date + * @param {Object} event + * @return {boolean} Returns true when inside the visible window + * @private + */ + Range.prototype._isInsideRange = function (event) { + // calculate the time where the mouse is, check whether inside + // and no scroll action should happen. + var clientX = event.center ? event.center.x : event.clientX; + var x = clientX - util.getAbsoluteLeft(this.body.dom.centerContainer); + var time = this.body.util.toTime(x); + + return time >= this.start && time <= this.end; + }; + + /** + * Helper function to calculate the center date for zooming + * @param {{x: Number, y: Number}} pointer + * @return {number} date + * @private + */ + Range.prototype._pointerToDate = function (pointer) { + var conversion; + var direction = this.options.direction; + + validateDirection(direction); + + if (direction == 'horizontal') { + return this.body.util.toTime(pointer.x).valueOf(); + } else { + var height = this.body.domProps.center.height; + conversion = this.conversion(height); + return pointer.y / conversion.scale + conversion.offset; + } + }; + + /** + * Get the pointer location relative to the location of the dom element + * @param {{x: Number, y: Number}} touch + * @param {Element} element HTML DOM element + * @return {{x: Number, y: Number}} pointer + * @private + */ + function getPointer(touch, element) { + return { + x: touch.x - util.getAbsoluteLeft(element), + y: touch.y - util.getAbsoluteTop(element) + }; + } + + /** + * Zoom the range the given scale in or out. Start and end date will + * be adjusted, and the timeline will be redrawn. You can optionally give a + * date around which to zoom. + * For example, try scale = 0.9 or 1.1 + * @param {Number} scale Scaling factor. Values above 1 will zoom out, + * values below 1 will zoom in. + * @param {Number} [center] Value representing a date around which will + * be zoomed. + */ + Range.prototype.zoom = function (scale, center, delta) { + // if centerDate is not provided, take it half between start Date and end Date + if (center == null) { + center = (this.start + this.end) / 2; + } + + var hiddenDuration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + var hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this, center); + var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; + + // calculate new start and end + var newStart = center - hiddenDurationBefore + (this.start - (center - hiddenDurationBefore)) * scale; + var newEnd = center + hiddenDurationAfter + (this.end - (center + hiddenDurationAfter)) * scale; + + // snapping times away from hidden zones + this.startToFront = delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times + this.endToFront = -delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times + var safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, delta, true); + var safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, -delta, true); + if (safeStart != newStart || safeEnd != newEnd) { + newStart = safeStart; + newEnd = safeEnd; + } + + this.setRange(newStart, newEnd, false, true); + + this.startToFront = false; // revert to default + this.endToFront = true; // revert to default + }; + + /** + * Move the range with a given delta to the left or right. Start and end + * value will be adjusted. For example, try delta = 0.1 or -0.1 + * @param {Number} delta Moving amount. Positive value will move right, + * negative value will move left + */ + Range.prototype.move = function (delta) { + // zoom start Date and end Date relative to the centerDate + var diff = this.end - this.start; + + // apply new values + var newStart = this.start + diff * delta; + var newEnd = this.end + diff * delta; + + // TODO: reckon with min and max range + + this.start = newStart; + this.end = newEnd; + }; + + /** + * Move the range to a new center point + * @param {Number} moveTo New center point of the range + */ + Range.prototype.moveTo = function (moveTo) { + var center = (this.start + this.end) / 2; + + var diff = center - moveTo; + + // calculate new start and end + var newStart = this.start - diff; + var newEnd = this.end - diff; + + this.setRange(newStart, newEnd); + }; + + module.exports = Range; + +/***/ }, +/* 25 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Hammer = __webpack_require__(20); + + /** + * Register a touch event, taking place before a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) + */ + exports.onTouch = function (hammer, callback) { + callback.inputHandler = function (event) { + if (event.isFirst && !isTouching) { + callback(event); + + isTouching = true; + setTimeout(function () { + isTouching = false; + }, 0); + } + }; + + hammer.on('hammer.input', callback.inputHandler); + }; + + // isTouching is true while a touch action is being emitted + // this is a hack to prevent `touch` from being fired twice + var isTouching = false; + + /** + * Register a release event, taking place after a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) + */ + exports.onRelease = function (hammer, callback) { + callback.inputHandler = function (event) { + if (event.isFinal && !isReleasing) { + callback(event); + + isReleasing = true; + setTimeout(function () { + isReleasing = false; + }, 0); + } + }; + + return hammer.on('hammer.input', callback.inputHandler); + }; + + // isReleasing is true while a release action is being emitted + // this is a hack to prevent `release` from being fired twice + var isReleasing = false; + + /** + * Unregister a touch event, taking place before a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) + */ + exports.offTouch = function (hammer, callback) { + hammer.off('hammer.input', callback.inputHandler); + }; + + /** + * Unregister a release event, taking place before a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) + */ + exports.offRelease = exports.offTouch; + +/***/ }, +/* 26 */ +/***/ function(module, exports) { + + /** + * Prototype for visual components + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] + * @param {Object} [options] + */ + "use strict"; + + function Component(body, options) { + this.options = null; + this.props = null; + } + + /** + * Set options for the component. The new options will be merged into the + * current options. + * @param {Object} options + */ + Component.prototype.setOptions = function (options) { + if (options) { + util.extend(this.options, options); + } + }; + + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + Component.prototype.redraw = function () { + // should be implemented by the component + return false; + }; + + /** + * Destroy the component. Cleanup DOM and event listeners + */ + Component.prototype.destroy = function () { + // should be implemented by the component + }; + + /** + * Test whether the component is resized since the last time _isResized() was + * called. + * @return {Boolean} Returns true if the component is resized + * @protected + */ + Component.prototype._isResized = function () { + var resized = this.props._previousWidth !== this.props.width || this.props._previousHeight !== this.props.height; + + this.props._previousWidth = this.props.width; + this.props._previousHeight = this.props.height; + + return resized; + }; + + module.exports = Component; + +/***/ }, +/* 27 */ +/***/ function(module, exports) { + + + /** + * used in Core to convert the options into a volatile variable + * + * @param {function} moment + * @param {Object} body + * @param {Array} hiddenDates + */ + "use strict"; + + exports.convertHiddenOptions = function (moment, body, hiddenDates) { + body.hiddenDates = []; + if (hiddenDates) { + if (Array.isArray(hiddenDates) == true) { + for (var i = 0; i < hiddenDates.length; i++) { + if (hiddenDates[i].repeat === undefined) { + var dateItem = {}; + dateItem.start = moment(hiddenDates[i].start).toDate().valueOf(); + dateItem.end = moment(hiddenDates[i].end).toDate().valueOf(); + body.hiddenDates.push(dateItem); + } + } + body.hiddenDates.sort(function (a, b) { + return a.start - b.start; + }); // sort by start time + } + } + }; + + /** + * create new entrees for the repeating hidden dates + * @param {function} moment + * @param {Object} body + * @param {Array} hiddenDates + */ + exports.updateHiddenDates = function (moment, body, hiddenDates) { + if (hiddenDates && body.domProps.centerContainer.width !== undefined) { + exports.convertHiddenOptions(moment, body, hiddenDates); + + var start = moment(body.range.start); + var end = moment(body.range.end); + + var totalRange = body.range.end - body.range.start; + var pixelTime = totalRange / body.domProps.centerContainer.width; + + for (var i = 0; i < hiddenDates.length; i++) { + if (hiddenDates[i].repeat !== undefined) { + var startDate = moment(hiddenDates[i].start); + var endDate = moment(hiddenDates[i].end); + + if (startDate._d == "Invalid Date") { + throw new Error("Supplied start date is not valid: " + hiddenDates[i].start); + } + if (endDate._d == "Invalid Date") { + throw new Error("Supplied end date is not valid: " + hiddenDates[i].end); + } + + var duration = endDate - startDate; + if (duration >= 4 * pixelTime) { + + var offset = 0; + var runUntil = end.clone(); + switch (hiddenDates[i].repeat) { + case "daily": + // case of time + if (startDate.day() != endDate.day()) { + offset = 1; + } + startDate.dayOfYear(start.dayOfYear()); + startDate.year(start.year()); + startDate.subtract(7, 'days'); + + endDate.dayOfYear(start.dayOfYear()); + endDate.year(start.year()); + endDate.subtract(7 - offset, 'days'); + + runUntil.add(1, 'weeks'); + break; + case "weekly": + var dayOffset = endDate.diff(startDate, 'days'); + var day = startDate.day(); + + // set the start date to the range.start + startDate.date(start.date()); + startDate.month(start.month()); + startDate.year(start.year()); + endDate = startDate.clone(); + + // force + startDate.day(day); + endDate.day(day); + endDate.add(dayOffset, 'days'); + + startDate.subtract(1, 'weeks'); + endDate.subtract(1, 'weeks'); + + runUntil.add(1, 'weeks'); + break; + case "monthly": + if (startDate.month() != endDate.month()) { + offset = 1; + } + startDate.month(start.month()); + startDate.year(start.year()); + startDate.subtract(1, 'months'); + + endDate.month(start.month()); + endDate.year(start.year()); + endDate.subtract(1, 'months'); + endDate.add(offset, 'months'); + + runUntil.add(1, 'months'); + break; + case "yearly": + if (startDate.year() != endDate.year()) { + offset = 1; + } + startDate.year(start.year()); + startDate.subtract(1, 'years'); + endDate.year(start.year()); + endDate.subtract(1, 'years'); + endDate.add(offset, 'years'); + + runUntil.add(1, 'years'); + break; + default: + console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", hiddenDates[i].repeat); + return; + } + while (startDate < runUntil) { + body.hiddenDates.push({ start: startDate.valueOf(), end: endDate.valueOf() }); + switch (hiddenDates[i].repeat) { + case "daily": + startDate.add(1, 'days'); + endDate.add(1, 'days'); + break; + case "weekly": + startDate.add(1, 'weeks'); + endDate.add(1, 'weeks'); + break; + case "monthly": + startDate.add(1, 'months'); + endDate.add(1, 'months'); + break; + case "yearly": + startDate.add(1, 'y'); + endDate.add(1, 'y'); + break; + default: + console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", hiddenDates[i].repeat); + return; + } + } + body.hiddenDates.push({ start: startDate.valueOf(), end: endDate.valueOf() }); + } + } + } + // remove duplicates, merge where possible + exports.removeDuplicates(body); + // ensure the new positions are not on hidden dates + var startHidden = exports.isHidden(body.range.start, body.hiddenDates); + var endHidden = exports.isHidden(body.range.end, body.hiddenDates); + var rangeStart = body.range.start; + var rangeEnd = body.range.end; + if (startHidden.hidden == true) { + rangeStart = body.range.startToFront == true ? startHidden.startDate - 1 : startHidden.endDate + 1; + } + if (endHidden.hidden == true) { + rangeEnd = body.range.endToFront == true ? endHidden.startDate - 1 : endHidden.endDate + 1; + } + if (startHidden.hidden == true || endHidden.hidden == true) { + body.range._applyRange(rangeStart, rangeEnd); + } + } + }; + + /** + * remove duplicates from the hidden dates list. Duplicates are evil. They mess everything up. + * Scales with N^2 + * @param body + */ + exports.removeDuplicates = function (body) { + var hiddenDates = body.hiddenDates; + var safeDates = []; + for (var i = 0; i < hiddenDates.length; i++) { + for (var j = 0; j < hiddenDates.length; j++) { + if (i != j && hiddenDates[j].remove != true && hiddenDates[i].remove != true) { + // j inside i + if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { + hiddenDates[j].remove = true; + } + // j start inside i + else if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].start <= hiddenDates[i].end) { + hiddenDates[i].end = hiddenDates[j].end; + hiddenDates[j].remove = true; + } + // j end inside i + else if (hiddenDates[j].end >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { + hiddenDates[i].start = hiddenDates[j].start; + hiddenDates[j].remove = true; + } + } + } + } + + for (var i = 0; i < hiddenDates.length; i++) { + if (hiddenDates[i].remove !== true) { + safeDates.push(hiddenDates[i]); + } + } + + body.hiddenDates = safeDates; + body.hiddenDates.sort(function (a, b) { + return a.start - b.start; + }); // sort by start time + }; + + exports.printDates = function (dates) { + for (var i = 0; i < dates.length; i++) { + console.log(i, new Date(dates[i].start), new Date(dates[i].end), dates[i].start, dates[i].end, dates[i].remove); + } + }; + + /** + * Used in TimeStep to avoid the hidden times. + * @param {function} moment + * @param {TimeStep} timeStep + * @param previousTime + */ + exports.stepOverHiddenDates = function (moment, timeStep, previousTime) { + var stepInHidden = false; + var currentValue = timeStep.current.valueOf(); + for (var i = 0; i < timeStep.hiddenDates.length; i++) { + var startDate = timeStep.hiddenDates[i].start; + var endDate = timeStep.hiddenDates[i].end; + if (currentValue >= startDate && currentValue < endDate) { + stepInHidden = true; + break; + } + } + + if (stepInHidden == true && currentValue < timeStep._end.valueOf() && currentValue != previousTime) { + var prevValue = moment(previousTime); + var newValue = moment(endDate); + //check if the next step should be major + if (prevValue.year() != newValue.year()) { + timeStep.switchedYear = true; + } else if (prevValue.month() != newValue.month()) { + timeStep.switchedMonth = true; + } else if (prevValue.dayOfYear() != newValue.dayOfYear()) { + timeStep.switchedDay = true; + } + + timeStep.current = newValue; + } + }; + + ///** + // * Used in TimeStep to avoid the hidden times. + // * @param timeStep + // * @param previousTime + // */ + //exports.checkFirstStep = function(timeStep) { + // var stepInHidden = false; + // var currentValue = timeStep.current.valueOf(); + // for (var i = 0; i < timeStep.hiddenDates.length; i++) { + // var startDate = timeStep.hiddenDates[i].start; + // var endDate = timeStep.hiddenDates[i].end; + // if (currentValue >= startDate && currentValue < endDate) { + // stepInHidden = true; + // break; + // } + // } + // + // if (stepInHidden == true && currentValue <= timeStep._end.valueOf()) { + // var newValue = moment(endDate); + // timeStep.current = newValue.toDate(); + // } + //}; + + /** + * replaces the Core toScreen methods + * @param Core + * @param time + * @param width + * @returns {number} + */ + exports.toScreen = function (Core, time, width) { + if (Core.body.hiddenDates.length == 0) { + var conversion = Core.range.conversion(width); + return (time.valueOf() - conversion.offset) * conversion.scale; + } else { + var hidden = exports.isHidden(time, Core.body.hiddenDates); + if (hidden.hidden == true) { + time = hidden.startDate; + } + + var duration = exports.getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); + time = exports.correctTimeForHidden(Core.options.moment, Core.body.hiddenDates, Core.range, time); + + var conversion = Core.range.conversion(width, duration); + return (time.valueOf() - conversion.offset) * conversion.scale; + } + }; + + /** + * Replaces the core toTime methods + * @param body + * @param range + * @param x + * @param width + * @returns {Date} + */ + exports.toTime = function (Core, x, width) { + if (Core.body.hiddenDates.length == 0) { + var conversion = Core.range.conversion(width); + return new Date(x / conversion.scale + conversion.offset); + } else { + var hiddenDuration = exports.getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); + var totalDuration = Core.range.end - Core.range.start - hiddenDuration; + var partialDuration = totalDuration * x / width; + var accumulatedHiddenDuration = exports.getAccumulatedHiddenDuration(Core.body.hiddenDates, Core.range, partialDuration); + + var newTime = new Date(accumulatedHiddenDuration + partialDuration + Core.range.start); + return newTime; + } + }; + + /** + * Support function + * + * @param hiddenDates + * @param range + * @returns {number} + */ + exports.getHiddenDurationBetween = function (hiddenDates, start, end) { + var duration = 0; + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + // if time after the cutout, and the + if (startDate >= start && endDate < end) { + duration += endDate - startDate; + } + } + return duration; + }; + + /** + * Support function + * @param moment + * @param hiddenDates + * @param range + * @param time + * @returns {{duration: number, time: *, offset: number}} + */ + exports.correctTimeForHidden = function (moment, hiddenDates, range, time) { + time = moment(time).toDate().valueOf(); + time -= exports.getHiddenDurationBefore(moment, hiddenDates, range, time); + return time; + }; + + exports.getHiddenDurationBefore = function (moment, hiddenDates, range, time) { + var timeOffset = 0; + time = moment(time).toDate().valueOf(); + + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + // if time after the cutout, and the + if (startDate >= range.start && endDate < range.end) { + if (time >= endDate) { + timeOffset += endDate - startDate; + } + } + } + return timeOffset; + }; + + /** + * sum the duration from start to finish, including the hidden duration, + * until the required amount has been reached, return the accumulated hidden duration + * @param hiddenDates + * @param range + * @param time + * @returns {{duration: number, time: *, offset: number}} + */ + exports.getAccumulatedHiddenDuration = function (hiddenDates, range, requiredDuration) { + var hiddenDuration = 0; + var duration = 0; + var previousPoint = range.start; + //exports.printDates(hiddenDates) + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + // if time after the cutout, and the + if (startDate >= range.start && endDate < range.end) { + duration += startDate - previousPoint; + previousPoint = endDate; + if (duration >= requiredDuration) { + break; + } else { + hiddenDuration += endDate - startDate; + } + } + } + + return hiddenDuration; + }; + + /** + * used to step over to either side of a hidden block. Correction is disabled on tablets, might be set to true + * @param hiddenDates + * @param time + * @param direction + * @param correctionEnabled + * @returns {*} + */ + exports.snapAwayFromHidden = function (hiddenDates, time, direction, correctionEnabled) { + var isHidden = exports.isHidden(time, hiddenDates); + if (isHidden.hidden == true) { + if (direction < 0) { + if (correctionEnabled == true) { + return isHidden.startDate - (isHidden.endDate - time) - 1; + } else { + return isHidden.startDate - 1; + } + } else { + if (correctionEnabled == true) { + return isHidden.endDate + (time - isHidden.startDate) + 1; + } else { + return isHidden.endDate + 1; + } + } + } else { + return time; + } + }; + + /** + * Check if a time is hidden + * + * @param time + * @param hiddenDates + * @returns {{hidden: boolean, startDate: Window.start, endDate: *}} + */ + exports.isHidden = function (time, hiddenDates) { + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + + if (time >= startDate && time < endDate) { + // if the start is entering a hidden zone + return { hidden: true, startDate: startDate, endDate: endDate }; + break; + } + } + return { hidden: false, startDate: startDate, endDate: endDate }; + }; + +/***/ }, +/* 28 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Emitter = __webpack_require__(12); + var Hammer = __webpack_require__(20); + var hammerUtil = __webpack_require__(25); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + var Range = __webpack_require__(24); + var ItemSet = __webpack_require__(29); + var TimeAxis = __webpack_require__(39); + var Activator = __webpack_require__(40); + var DateUtil = __webpack_require__(27); + var CustomTime = __webpack_require__(42); + + /** + * Create a timeline visualization + * @constructor + */ + function Core() {} + + // turn Core into an event emitter + Emitter(Core.prototype); + + /** + * Create the main DOM for the Core: a root panel containing left, right, + * top, bottom, content, and background panel. + * @param {Element} container The container element where the Core will + * be attached. + * @protected + */ + Core.prototype._create = function (container) { + this.dom = {}; + + this.dom.container = container; + + this.dom.root = document.createElement('div'); + this.dom.background = document.createElement('div'); + this.dom.backgroundVertical = document.createElement('div'); + this.dom.backgroundHorizontal = document.createElement('div'); + this.dom.centerContainer = document.createElement('div'); + this.dom.leftContainer = document.createElement('div'); + this.dom.rightContainer = document.createElement('div'); + this.dom.center = document.createElement('div'); + this.dom.left = document.createElement('div'); + this.dom.right = document.createElement('div'); + this.dom.top = document.createElement('div'); + this.dom.bottom = document.createElement('div'); + this.dom.shadowTop = document.createElement('div'); + this.dom.shadowBottom = document.createElement('div'); + this.dom.shadowTopLeft = document.createElement('div'); + this.dom.shadowBottomLeft = document.createElement('div'); + this.dom.shadowTopRight = document.createElement('div'); + this.dom.shadowBottomRight = document.createElement('div'); + + this.dom.root.className = 'vis-timeline'; + this.dom.background.className = 'vis-panel vis-background'; + this.dom.backgroundVertical.className = 'vis-panel vis-background vis-vertical'; + this.dom.backgroundHorizontal.className = 'vis-panel vis-background vis-horizontal'; + this.dom.centerContainer.className = 'vis-panel vis-center'; + this.dom.leftContainer.className = 'vis-panel vis-left'; + this.dom.rightContainer.className = 'vis-panel vis-right'; + this.dom.top.className = 'vis-panel vis-top'; + this.dom.bottom.className = 'vis-panel vis-bottom'; + this.dom.left.className = 'vis-content'; + this.dom.center.className = 'vis-content'; + this.dom.right.className = 'vis-content'; + this.dom.shadowTop.className = 'vis-shadow vis-top'; + this.dom.shadowBottom.className = 'vis-shadow vis-bottom'; + this.dom.shadowTopLeft.className = 'vis-shadow vis-top'; + this.dom.shadowBottomLeft.className = 'vis-shadow vis-bottom'; + this.dom.shadowTopRight.className = 'vis-shadow vis-top'; + this.dom.shadowBottomRight.className = 'vis-shadow vis-bottom'; + + this.dom.root.appendChild(this.dom.background); + this.dom.root.appendChild(this.dom.backgroundVertical); + this.dom.root.appendChild(this.dom.backgroundHorizontal); + this.dom.root.appendChild(this.dom.centerContainer); + this.dom.root.appendChild(this.dom.leftContainer); + this.dom.root.appendChild(this.dom.rightContainer); + this.dom.root.appendChild(this.dom.top); + this.dom.root.appendChild(this.dom.bottom); + + this.dom.centerContainer.appendChild(this.dom.center); + this.dom.leftContainer.appendChild(this.dom.left); + this.dom.rightContainer.appendChild(this.dom.right); + + this.dom.centerContainer.appendChild(this.dom.shadowTop); + this.dom.centerContainer.appendChild(this.dom.shadowBottom); + this.dom.leftContainer.appendChild(this.dom.shadowTopLeft); + this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft); + this.dom.rightContainer.appendChild(this.dom.shadowTopRight); + this.dom.rightContainer.appendChild(this.dom.shadowBottomRight); + + this.on('rangechange', (function () { + this._redraw(); // this allows overriding the _redraw method + }).bind(this)); + this.on('touch', this._onTouch.bind(this)); + this.on('pan', this._onDrag.bind(this)); + + var me = this; + this.on('change', function (properties) { + if (properties && properties.queue == true) { + // redraw once on next tick + if (!me._redrawTimer) { + me._redrawTimer = setTimeout(function () { + me._redrawTimer = null; + me._redraw(); + }, 0); + } + } else { + // redraw immediately + me._redraw(); + } + }); + + // create event listeners for all interesting events, these events will be + // emitted via emitter + this.hammer = new Hammer(this.dom.root); + this.hammer.get('pinch').set({ enable: true }); + this.hammer.get('pan').set({ threshold: 5, direction: 30 }); // 30 is ALL_DIRECTIONS in hammer. + this.listeners = {}; + + var events = ['tap', 'doubletap', 'press', 'pinch', 'pan', 'panstart', 'panmove', 'panend' + // TODO: cleanup + //'touch', 'pinch', + //'tap', 'doubletap', 'hold', + //'dragstart', 'drag', 'dragend', + //'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox + ]; + events.forEach(function (type) { + var listener = function listener(event) { + if (me.isActive()) { + me.emit(type, event); + } + }; + me.hammer.on(type, listener); + me.listeners[type] = listener; + }); + + // emulate a touch event (emitted before the start of a pan, pinch, tap, or press) + hammerUtil.onTouch(this.hammer, (function (event) { + me.emit('touch', event); + }).bind(this)); + + // emulate a release event (emitted after a pan, pinch, tap, or press) + hammerUtil.onRelease(this.hammer, (function (event) { + me.emit('release', event); + }).bind(this)); + + function onMouseWheel(event) { + if (me.isActive()) { + me.emit('mousewheel', event); + } + } + this.dom.root.addEventListener('mousewheel', onMouseWheel); + this.dom.root.addEventListener('DOMMouseScroll', onMouseWheel); + + // size properties of each of the panels + this.props = { + root: {}, + background: {}, + centerContainer: {}, + leftContainer: {}, + rightContainer: {}, + center: {}, + left: {}, + right: {}, + top: {}, + bottom: {}, + border: {}, + scrollTop: 0, + scrollTopMin: 0 + }; + + this.customTimes = []; + + // store state information needed for touch events + this.touch = {}; + + this.redrawCount = 0; + + // attach the root panel to the provided container + if (!container) throw new Error('No container provided'); + container.appendChild(this.dom.root); + }; + + /** + * Set options. Options will be passed to all components loaded in the Timeline. + * @param {Object} [options] + * {String} orientation + * Vertical orientation for the Timeline, + * can be 'bottom' (default) or 'top'. + * {String | Number} width + * Width for the timeline, a number in pixels or + * a css string like '1000px' or '75%'. '100%' by default. + * {String | Number} height + * Fixed height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. If undefined, + * The Timeline will automatically size such that + * its contents fit. + * {String | Number} minHeight + * Minimum height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. + * {String | Number} maxHeight + * Maximum height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. + * {Number | Date | String} start + * Start date for the visible window + * {Number | Date | String} end + * End date for the visible window + */ + Core.prototype.setOptions = function (options) { + if (options) { + // copy the known options + var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'clickToUse', 'dataAttributes', 'hiddenDates', 'locale', 'locales', 'moment', 'throttleRedraw']; + util.selectiveExtend(fields, this.options, options); + + if ('orientation' in options) { + if (typeof options.orientation === 'string') { + this.options.orientation = { + item: options.orientation, + axis: options.orientation + }; + } else if (typeof options.orientation === 'object') { + if ('item' in options.orientation) { + this.options.orientation.item = options.orientation.item; + } + if ('axis' in options.orientation) { + this.options.orientation.axis = options.orientation.axis; + } + } + } + + if (this.options.orientation.axis === 'both') { + if (!this.timeAxis2) { + var timeAxis2 = this.timeAxis2 = new TimeAxis(this.body); + timeAxis2.setOptions = function (options) { + var _options = options ? util.extend({}, options) : {}; + _options.orientation = 'top'; // override the orientation option, always top + TimeAxis.prototype.setOptions.call(timeAxis2, _options); + }; + this.components.push(timeAxis2); + } + } else { + if (this.timeAxis2) { + var index = this.components.indexOf(this.timeAxis2); + if (index !== -1) { + this.components.splice(index, 1); + } + this.timeAxis2.destroy(); + this.timeAxis2 = null; + } + } + + // if the graph2d's drawPoints is a function delegate the callback to the onRender property + if (typeof options.drawPoints == 'function') { + options.drawPoints = { + onRender: options.drawPoints + }; + } + + if ('hiddenDates' in this.options) { + DateUtil.convertHiddenOptions(this.options.moment, this.body, this.options.hiddenDates); + } + + if ('clickToUse' in options) { + if (options.clickToUse) { + if (!this.activator) { + this.activator = new Activator(this.dom.root); + } + } else { + if (this.activator) { + this.activator.destroy(); + delete this.activator; + } + } + } + + if ('showCustomTime' in options) { + throw new Error('Option `showCustomTime` is deprecated. Create a custom time bar via timeline.addCustomTime(time [, id])'); + } + + // enable/disable autoResize + this._initAutoResize(); + } + + // propagate options to all components + this.components.forEach(function (component) { + return component.setOptions(options); + }); + + // enable/disable configure + if ('configure' in options) { + if (!this.configurator) { + this.configurator = this._createConfigurator(); + } + + this.configurator.setOptions(options.configure); + + // collect the settings of all components, and pass them to the configuration system + var appliedOptions = util.deepExtend({}, this.options); + this.components.forEach(function (component) { + util.deepExtend(appliedOptions, component.options); + }); + this.configurator.setModuleOptions({ global: appliedOptions }); + } + + // override redraw with a throttled version + if (!this._origRedraw) { + this._origRedraw = this._redraw.bind(this); + } + this._redraw = util.throttle(this._origRedraw, this.options.throttleRedraw); + + // redraw everything + this._redraw(); + }; + + /** + * Returns true when the Timeline is active. + * @returns {boolean} + */ + Core.prototype.isActive = function () { + return !this.activator || this.activator.active; + }; + + /** + * Destroy the Core, clean up all DOM elements and event listeners. + */ + Core.prototype.destroy = function () { + // unbind datasets + this.setItems(null); + this.setGroups(null); + + // remove all event listeners + this.off(); + + // stop checking for changed size + this._stopAutoResize(); + + // remove from DOM + if (this.dom.root.parentNode) { + this.dom.root.parentNode.removeChild(this.dom.root); + } + this.dom = null; + + // remove Activator + if (this.activator) { + this.activator.destroy(); + delete this.activator; + } + + // cleanup hammer touch events + for (var event in this.listeners) { + if (this.listeners.hasOwnProperty(event)) { + delete this.listeners[event]; + } + } + this.listeners = null; + this.hammer = null; + + // give all components the opportunity to cleanup + this.components.forEach(function (component) { + return component.destroy(); + }); + + this.body = null; + }; + + /** + * Set a custom time bar + * @param {Date} time + * @param {number} [id=undefined] Optional id of the custom time bar to be adjusted. + */ + Core.prototype.setCustomTime = function (time, id) { + var customTimes = this.customTimes.filter(function (component) { + return id === component.options.id; + }); + + if (customTimes.length === 0) { + throw new Error('No custom time bar found with id ' + JSON.stringify(id)); + } + + if (customTimes.length > 0) { + customTimes[0].setCustomTime(time); + } + }; + + /** + * Retrieve the current custom time. + * @param {number} [id=undefined] Id of the custom time bar. + * @return {Date | undefined} customTime + */ + Core.prototype.getCustomTime = function (id) { + var customTimes = this.customTimes.filter(function (component) { + return component.options.id === id; + }); + + if (customTimes.length === 0) { + throw new Error('No custom time bar found with id ' + JSON.stringify(id)); + } + return customTimes[0].getCustomTime(); + }; + + /** + * Retrieve meta information from an event. + * Should be overridden by classes extending Core + * @param {Event} event + * @return {Object} An object with related information. + */ + Core.prototype.getEventProperties = function (event) { + return { event: event }; + }; + + /** + * Add custom vertical bar + * @param {Date | String | Number} [time] A Date, unix timestamp, or + * ISO date string. Time point where + * the new bar should be placed. + * If not provided, `new Date()` will + * be used. + * @param {Number | String} [id=undefined] Id of the new bar. Optional + * @return {Number | String} Returns the id of the new bar + */ + Core.prototype.addCustomTime = function (time, id) { + var timestamp = time !== undefined ? util.convert(time, 'Date').valueOf() : new Date(); + + var exists = this.customTimes.some(function (customTime) { + return customTime.options.id === id; + }); + if (exists) { + throw new Error('A custom time with id ' + JSON.stringify(id) + ' already exists'); + } + + var customTime = new CustomTime(this.body, util.extend({}, this.options, { + time: timestamp, + id: id + })); + + this.customTimes.push(customTime); + this.components.push(customTime); + this._redraw(); + + return id; + }; + + /** + * Remove previously added custom bar + * @param {int} id ID of the custom bar to be removed + * @return {boolean} True if the bar exists and is removed, false otherwise + */ + Core.prototype.removeCustomTime = function (id) { + var customTimes = this.customTimes.filter(function (bar) { + return bar.options.id === id; + }); + + if (customTimes.length === 0) { + throw new Error('No custom time bar found with id ' + JSON.stringify(id)); + } + + customTimes.forEach((function (customTime) { + this.customTimes.splice(this.customTimes.indexOf(customTime), 1); + this.components.splice(this.components.indexOf(customTime), 1); + customTime.destroy(); + }).bind(this)); + }; + + /** + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items + */ + Core.prototype.getVisibleItems = function () { + return this.itemSet && this.itemSet.getVisibleItems() || []; + }; + + /** + * Set Core window such that it fits all items + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + */ + Core.prototype.fit = function (options) { + var range = this.getDataRange(); + + // skip range set if there is no min and max date + if (range.min === null && range.max === null) { + return; + } + + // apply a margin of 1% left and right of the data + var interval = range.max - range.min; + var min = new Date(range.min.valueOf() - interval * 0.01); + var max = new Date(range.max.valueOf() + interval * 0.01); + + var animation = options && options.animation !== undefined ? options.animation : true; + this.range.setRange(min, max, animation); + }; + + /** + * Calculate the data range of the items start and end dates + * @returns {{min: Date | null, max: Date | null}} + * @protected + */ + Core.prototype.getDataRange = function () { + // must be implemented by Timeline and Graph2d + throw new Error('Cannot invoke abstract method getDataRange'); + }; + + /** + * Set the visible window. Both parameters are optional, you can change only + * start or only end. Syntax: + * + * TimeLine.setWindow(start, end) + * TimeLine.setWindow(start, end, options) + * TimeLine.setWindow(range) + * + * Where start and end can be a Date, number, or string, and range is an + * object with properties start and end. + * + * @param {Date | Number | String | Object} [start] Start date of visible window + * @param {Date | Number | String} [end] End date of visible window + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + */ + Core.prototype.setWindow = function (start, end, options) { + var animation; + if (arguments.length == 1) { + var range = arguments[0]; + animation = range.animation !== undefined ? range.animation : true; + this.range.setRange(range.start, range.end, animation); + } else { + animation = options && options.animation !== undefined ? options.animation : true; + this.range.setRange(start, end, animation); + } + }; + + /** + * Move the window such that given time is centered on screen. + * @param {Date | Number | String} time + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + */ + Core.prototype.moveTo = function (time, options) { + var interval = this.range.end - this.range.start; + var t = util.convert(time, 'Date').valueOf(); + + var start = t - interval / 2; + var end = t + interval / 2; + var animation = options && options.animation !== undefined ? options.animation : true; + + this.range.setRange(start, end, animation); + }; + + /** + * Get the visible window + * @return {{start: Date, end: Date}} Visible range + */ + Core.prototype.getWindow = function () { + var range = this.range.getRange(); + return { + start: new Date(range.start), + end: new Date(range.end) + }; + }; + + /** + * Force a redraw. Can be overridden by implementations of Core + * + * Note: this function will be overridden on construction with a trottled version + */ + Core.prototype.redraw = function () { + this._redraw(); + }; + + /** + * Redraw for internal use. Redraws all components. See also the public + * method redraw. + * @protected + */ + Core.prototype._redraw = function () { + var resized = false; + var options = this.options; + var props = this.props; + var dom = this.dom; + + if (!dom) return; // when destroyed + + DateUtil.updateHiddenDates(this.options.moment, this.body, this.options.hiddenDates); + + // update class names + if (options.orientation == 'top') { + util.addClassName(dom.root, 'vis-top'); + util.removeClassName(dom.root, 'vis-bottom'); + } else { + util.removeClassName(dom.root, 'vis-top'); + util.addClassName(dom.root, 'vis-bottom'); + } + + // update root width and height options + dom.root.style.maxHeight = util.option.asSize(options.maxHeight, ''); + dom.root.style.minHeight = util.option.asSize(options.minHeight, ''); + dom.root.style.width = util.option.asSize(options.width, ''); + + // calculate border widths + props.border.left = (dom.centerContainer.offsetWidth - dom.centerContainer.clientWidth) / 2; + props.border.right = props.border.left; + props.border.top = (dom.centerContainer.offsetHeight - dom.centerContainer.clientHeight) / 2; + props.border.bottom = props.border.top; + var borderRootHeight = dom.root.offsetHeight - dom.root.clientHeight; + var borderRootWidth = dom.root.offsetWidth - dom.root.clientWidth; + + // workaround for a bug in IE: the clientWidth of an element with + // a height:0px and overflow:hidden is not calculated and always has value 0 + if (dom.centerContainer.clientHeight === 0) { + props.border.left = props.border.top; + props.border.right = props.border.left; + } + if (dom.root.clientHeight === 0) { + borderRootWidth = borderRootHeight; + } + + // calculate the heights. If any of the side panels is empty, we set the height to + // minus the border width, such that the border will be invisible + props.center.height = dom.center.offsetHeight; + props.left.height = dom.left.offsetHeight; + props.right.height = dom.right.offsetHeight; + props.top.height = dom.top.clientHeight || -props.border.top; + props.bottom.height = dom.bottom.clientHeight || -props.border.bottom; + + // TODO: compensate borders when any of the panels is empty. + + // apply auto height + // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM) + var contentHeight = Math.max(props.left.height, props.center.height, props.right.height); + var autoHeight = props.top.height + contentHeight + props.bottom.height + borderRootHeight + props.border.top + props.border.bottom; + dom.root.style.height = util.option.asSize(options.height, autoHeight + 'px'); + + // calculate heights of the content panels + props.root.height = dom.root.offsetHeight; + props.background.height = props.root.height - borderRootHeight; + var containerHeight = props.root.height - props.top.height - props.bottom.height - borderRootHeight; + props.centerContainer.height = containerHeight; + props.leftContainer.height = containerHeight; + props.rightContainer.height = props.leftContainer.height; + + // calculate the widths of the panels + props.root.width = dom.root.offsetWidth; + props.background.width = props.root.width - borderRootWidth; + props.left.width = dom.leftContainer.clientWidth || -props.border.left; + props.leftContainer.width = props.left.width; + props.right.width = dom.rightContainer.clientWidth || -props.border.right; + props.rightContainer.width = props.right.width; + var centerWidth = props.root.width - props.left.width - props.right.width - borderRootWidth; + props.center.width = centerWidth; + props.centerContainer.width = centerWidth; + props.top.width = centerWidth; + props.bottom.width = centerWidth; + + // resize the panels + dom.background.style.height = props.background.height + 'px'; + dom.backgroundVertical.style.height = props.background.height + 'px'; + dom.backgroundHorizontal.style.height = props.centerContainer.height + 'px'; + dom.centerContainer.style.height = props.centerContainer.height + 'px'; + dom.leftContainer.style.height = props.leftContainer.height + 'px'; + dom.rightContainer.style.height = props.rightContainer.height + 'px'; + + dom.background.style.width = props.background.width + 'px'; + dom.backgroundVertical.style.width = props.centerContainer.width + 'px'; + dom.backgroundHorizontal.style.width = props.background.width + 'px'; + dom.centerContainer.style.width = props.center.width + 'px'; + dom.top.style.width = props.top.width + 'px'; + dom.bottom.style.width = props.bottom.width + 'px'; + + // reposition the panels + dom.background.style.left = '0'; + dom.background.style.top = '0'; + dom.backgroundVertical.style.left = props.left.width + props.border.left + 'px'; + dom.backgroundVertical.style.top = '0'; + dom.backgroundHorizontal.style.left = '0'; + dom.backgroundHorizontal.style.top = props.top.height + 'px'; + dom.centerContainer.style.left = props.left.width + 'px'; + dom.centerContainer.style.top = props.top.height + 'px'; + dom.leftContainer.style.left = '0'; + dom.leftContainer.style.top = props.top.height + 'px'; + dom.rightContainer.style.left = props.left.width + props.center.width + 'px'; + dom.rightContainer.style.top = props.top.height + 'px'; + dom.top.style.left = props.left.width + 'px'; + dom.top.style.top = '0'; + dom.bottom.style.left = props.left.width + 'px'; + dom.bottom.style.top = props.top.height + props.centerContainer.height + 'px'; + + // update the scrollTop, feasible range for the offset can be changed + // when the height of the Core or of the contents of the center changed + this._updateScrollTop(); + + // reposition the scrollable contents + var offset = this.props.scrollTop; + if (options.orientation.item != 'top') { + offset += Math.max(this.props.centerContainer.height - this.props.center.height - this.props.border.top - this.props.border.bottom, 0); + } + dom.center.style.left = '0'; + dom.center.style.top = offset + 'px'; + dom.left.style.left = '0'; + dom.left.style.top = offset + 'px'; + dom.right.style.left = '0'; + dom.right.style.top = offset + 'px'; + + // show shadows when vertical scrolling is available + var visibilityTop = this.props.scrollTop == 0 ? 'hidden' : ''; + var visibilityBottom = this.props.scrollTop == this.props.scrollTopMin ? 'hidden' : ''; + dom.shadowTop.style.visibility = visibilityTop; + dom.shadowBottom.style.visibility = visibilityBottom; + dom.shadowTopLeft.style.visibility = visibilityTop; + dom.shadowBottomLeft.style.visibility = visibilityBottom; + dom.shadowTopRight.style.visibility = visibilityTop; + dom.shadowBottomRight.style.visibility = visibilityBottom; + + // redraw all components + this.components.forEach(function (component) { + resized = component.redraw() || resized; + }); + if (resized) { + // keep repainting until all sizes are settled + var MAX_REDRAWS = 3; // maximum number of consecutive redraws + if (this.redrawCount < MAX_REDRAWS) { + this.redrawCount++; + this._redraw(); + } else { + console.log('WARNING: infinite loop in redraw?'); + } + this.redrawCount = 0; + } + }; + + // TODO: deprecated since version 1.1.0, remove some day + Core.prototype.repaint = function () { + throw new Error('Function repaint is deprecated. Use redraw instead.'); + }; + + /** + * Set a current time. This can be used for example to ensure that a client's + * time is synchronized with a shared server time. + * Only applicable when option `showCurrentTime` is true. + * @param {Date | String | Number} time A Date, unix timestamp, or + * ISO date string. + */ + Core.prototype.setCurrentTime = function (time) { + if (!this.currentTime) { + throw new Error('Option showCurrentTime must be true'); + } + + this.currentTime.setCurrentTime(time); + }; + + /** + * Get the current time. + * Only applicable when option `showCurrentTime` is true. + * @return {Date} Returns the current time. + */ + Core.prototype.getCurrentTime = function () { + if (!this.currentTime) { + throw new Error('Option showCurrentTime must be true'); + } + + return this.currentTime.getCurrentTime(); + }; + + /** + * Convert a position on screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x + * @protected + */ + // TODO: move this function to Range + Core.prototype._toTime = function (x) { + return DateUtil.toTime(this, x, this.props.center.width); + }; + + /** + * Convert a position on the global screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x + * @protected + */ + // TODO: move this function to Range + Core.prototype._toGlobalTime = function (x) { + return DateUtil.toTime(this, x, this.props.root.width); + //var conversion = this.range.conversion(this.props.root.width); + //return new Date(x / conversion.scale + conversion.offset); + }; + + /** + * Convert a datetime (Date object) into a position on the screen + * @param {Date} time A date + * @return {int} x The position on the screen in pixels which corresponds + * with the given date. + * @protected + */ + // TODO: move this function to Range + Core.prototype._toScreen = function (time) { + return DateUtil.toScreen(this, time, this.props.center.width); + }; + + /** + * Convert a datetime (Date object) into a position on the root + * This is used to get the pixel density estimate for the screen, not the center panel + * @param {Date} time A date + * @return {int} x The position on root in pixels which corresponds + * with the given date. + * @protected + */ + // TODO: move this function to Range + Core.prototype._toGlobalScreen = function (time) { + return DateUtil.toScreen(this, time, this.props.root.width); + //var conversion = this.range.conversion(this.props.root.width); + //return (time.valueOf() - conversion.offset) * conversion.scale; + }; + + /** + * Initialize watching when option autoResize is true + * @private + */ + Core.prototype._initAutoResize = function () { + if (this.options.autoResize == true) { + this._startAutoResize(); + } else { + this._stopAutoResize(); + } + }; + + /** + * Watch for changes in the size of the container. On resize, the Panel will + * automatically redraw itself. + * @private + */ + Core.prototype._startAutoResize = function () { + var me = this; + + this._stopAutoResize(); + + this._onResize = function () { + if (me.options.autoResize != true) { + // stop watching when the option autoResize is changed to false + me._stopAutoResize(); + return; + } + + if (me.dom.root) { + // check whether the frame is resized + // Note: we compare offsetWidth here, not clientWidth. For some reason, + // IE does not restore the clientWidth from 0 to the actual width after + // changing the timeline's container display style from none to visible + if (me.dom.root.offsetWidth != me.props.lastWidth || me.dom.root.offsetHeight != me.props.lastHeight) { + me.props.lastWidth = me.dom.root.offsetWidth; + me.props.lastHeight = me.dom.root.offsetHeight; + + me.emit('change'); + } + } + }; + + // add event listener to window resize + util.addEventListener(window, 'resize', this._onResize); + + this.watchTimer = setInterval(this._onResize, 1000); + }; + + /** + * Stop watching for a resize of the frame. + * @private + */ + Core.prototype._stopAutoResize = function () { + if (this.watchTimer) { + clearInterval(this.watchTimer); + this.watchTimer = undefined; + } + + // remove event listener on window.resize + if (this._onResize) { + util.removeEventListener(window, 'resize', this._onResize); + this._onResize = null; + } + }; + + /** + * Start moving the timeline vertically + * @param {Event} event + * @private + */ + Core.prototype._onTouch = function (event) { + this.touch.allowDragging = true; + this.touch.initialScrollTop = this.props.scrollTop; + }; + + /** + * Start moving the timeline vertically + * @param {Event} event + * @private + */ + Core.prototype._onPinch = function (event) { + this.touch.allowDragging = false; + }; + + /** + * Move the timeline vertically + * @param {Event} event + * @private + */ + Core.prototype._onDrag = function (event) { + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + if (!this.touch.allowDragging) return; + + var delta = event.deltaY; + + var oldScrollTop = this._getScrollTop(); + var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + + if (newScrollTop != oldScrollTop) { + this._redraw(); // TODO: this causes two redraws when dragging, the other is triggered by rangechange already + this.emit("verticalDrag"); + } + }; + + /** + * Apply a scrollTop + * @param {Number} scrollTop + * @returns {Number} scrollTop Returns the applied scrollTop + * @private + */ + Core.prototype._setScrollTop = function (scrollTop) { + this.props.scrollTop = scrollTop; + this._updateScrollTop(); + return this.props.scrollTop; + }; + + /** + * Update the current scrollTop when the height of the containers has been changed + * @returns {Number} scrollTop Returns the applied scrollTop + * @private + */ + Core.prototype._updateScrollTop = function () { + // recalculate the scrollTopMin + var scrollTopMin = Math.min(this.props.centerContainer.height - this.props.center.height, 0); // is negative or zero + if (scrollTopMin != this.props.scrollTopMin) { + // in case of bottom orientation, change the scrollTop such that the contents + // do not move relative to the time axis at the bottom + if (this.options.orientation.item != 'top') { + this.props.scrollTop += scrollTopMin - this.props.scrollTopMin; + } + this.props.scrollTopMin = scrollTopMin; + } + + // limit the scrollTop to the feasible scroll range + if (this.props.scrollTop > 0) this.props.scrollTop = 0; + if (this.props.scrollTop < scrollTopMin) this.props.scrollTop = scrollTopMin; + + return this.props.scrollTop; + }; + + /** + * Get the current scrollTop + * @returns {number} scrollTop + * @private + */ + Core.prototype._getScrollTop = function () { + return this.props.scrollTop; + }; + + /** + * Load a configurator + * @return {Object} + * @private + */ + Core.prototype._createConfigurator = function () { + throw new Error('Cannot invoke abstract method _createConfigurator'); + }; + + module.exports = Core; + +/***/ }, +/* 29 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Hammer = __webpack_require__(20); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + var TimeStep = __webpack_require__(30); + var Component = __webpack_require__(26); + var Group = __webpack_require__(31); + var BackgroundGroup = __webpack_require__(35); + var BoxItem = __webpack_require__(36); + var PointItem = __webpack_require__(37); + var RangeItem = __webpack_require__(33); + var BackgroundItem = __webpack_require__(38); + + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + var BACKGROUND = '__background__'; // reserved group id for background items without group + + /** + * An ItemSet holds a set of items and ranges which can be displayed in a + * range. The width is determined by the parent of the ItemSet, and the height + * is determined by the size of the items. + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body + * @param {Object} [options] See ItemSet.setOptions for the available options. + * @constructor ItemSet + * @extends Component + */ + function ItemSet(body, options) { + this.body = body; + + this.defaultOptions = { + type: null, // 'box', 'point', 'range', 'background' + orientation: { + item: 'bottom' // item orientation: 'top' or 'bottom' + }, + align: 'auto', // alignment of box items + stack: true, + groupOrderSwap: function groupOrderSwap(fromGroup, toGroup, groups) { + var targetOrder = toGroup.order; + toGroup.order = fromGroup.order; + fromGroup.order = targetOrder; + }, + groupOrder: 'order', + + selectable: true, + multiselect: false, + + editable: { + updateTime: false, + updateGroup: false, + add: false, + remove: false + }, + + groupEditable: { + order: false, + add: false, + remove: false + }, + + snap: TimeStep.snap, + + onAdd: function onAdd(item, callback) { + callback(item); + }, + onUpdate: function onUpdate(item, callback) { + callback(item); + }, + onMove: function onMove(item, callback) { + callback(item); + }, + onRemove: function onRemove(item, callback) { + callback(item); + }, + onMoving: function onMoving(item, callback) { + callback(item); + }, + onAddGroup: function onAddGroup(item, callback) { + callback(item); + }, + onMoveGroup: function onMoveGroup(item, callback) { + callback(item); + }, + onRemoveGroup: function onRemoveGroup(item, callback) { + callback(item); + }, + + margin: { + item: { + horizontal: 10, + vertical: 10 + }, + axis: 20 + } + }; + + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); + + // options for getting items from the DataSet with the correct type + this.itemOptions = { + type: { start: 'Date', end: 'Date' } + }; + + this.conversion = { + toScreen: body.util.toScreen, + toTime: body.util.toTime + }; + this.dom = {}; + this.props = {}; + this.hammer = null; + + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet + + // listeners for the DataSet of the items + this.itemListeners = { + 'add': function add(event, params, senderId) { + me._onAdd(params.items); + }, + 'update': function update(event, params, senderId) { + me._onUpdate(params.items); + }, + 'remove': function remove(event, params, senderId) { + me._onRemove(params.items); + } + }; + + // listeners for the DataSet of the groups + this.groupListeners = { + 'add': function add(event, params, senderId) { + me._onAddGroups(params.items); + }, + 'update': function update(event, params, senderId) { + me._onUpdateGroups(params.items); + }, + 'remove': function remove(event, params, senderId) { + me._onRemoveGroups(params.items); + } + }; + + this.items = {}; // object with an Item for every data item + this.groups = {}; // Group object for every group + this.groupIds = []; + + this.selection = []; // list with the ids of all selected nodes + this.stackDirty = true; // if true, all items will be restacked on next redraw + + this.touchParams = {}; // stores properties while dragging + this.groupTouchParams = {}; + // create the HTML DOM + + this._create(); + + this.setOptions(options); + } + + ItemSet.prototype = new Component(); + + // available item types will be registered here + ItemSet.types = { + background: BackgroundItem, + box: BoxItem, + range: RangeItem, + point: PointItem + }; + + /** + * Create the HTML DOM for the ItemSet + */ + ItemSet.prototype._create = function () { + var frame = document.createElement('div'); + frame.className = 'vis-itemset'; + frame['timeline-itemset'] = this; + this.dom.frame = frame; + + // create background panel + var background = document.createElement('div'); + background.className = 'vis-background'; + frame.appendChild(background); + this.dom.background = background; + + // create foreground panel + var foreground = document.createElement('div'); + foreground.className = 'vis-foreground'; + frame.appendChild(foreground); + this.dom.foreground = foreground; + + // create axis panel + var axis = document.createElement('div'); + axis.className = 'vis-axis'; + this.dom.axis = axis; + + // create labelset + var labelSet = document.createElement('div'); + labelSet.className = 'vis-labelset'; + this.dom.labelSet = labelSet; + + // create ungrouped Group + this._updateUngrouped(); + + // create background Group + var backgroundGroup = new BackgroundGroup(BACKGROUND, null, this); + backgroundGroup.show(); + this.groups[BACKGROUND] = backgroundGroup; + + // attach event listeners + // Note: we bind to the centerContainer for the case where the height + // of the center container is larger than of the ItemSet, so we + // can click in the empty area to create a new item or deselect an item. + this.hammer = new Hammer(this.body.dom.centerContainer); + + // drag items when selected + this.hammer.on('hammer.input', (function (event) { + if (event.isFirst) { + this._onTouch(event); + } + }).bind(this)); + this.hammer.on('panstart', this._onDragStart.bind(this)); + this.hammer.on('panmove', this._onDrag.bind(this)); + this.hammer.on('panend', this._onDragEnd.bind(this)); + this.hammer.get('pan').set({ threshold: 5, direction: 30 }); // 30 is ALL_DIRECTIONS in hammer. + + // single select (or unselect) when tapping an item + this.hammer.on('tap', this._onSelectItem.bind(this)); + + // multi select when holding mouse/touch, or on ctrl+click + this.hammer.on('press', this._onMultiSelectItem.bind(this)); + + // add item on doubletap + this.hammer.on('doubletap', this._onAddItem.bind(this)); + + this.groupHammer = new Hammer(this.body.dom.leftContainer); + this.groupHammer.on('panstart', this._onGroupDragStart.bind(this)); + this.groupHammer.on('panmove', this._onGroupDrag.bind(this)); + this.groupHammer.on('panend', this._onGroupDragEnd.bind(this)); + this.groupHammer.get('pan').set({ threshold: 5, direction: 30 }); + + // attach to the DOM + this.show(); + }; + + /** + * Set options for the ItemSet. Existing options will be extended/overwritten. + * @param {Object} [options] The following options are available: + * {String} type + * Default type for the items. Choose from 'box' + * (default), 'point', 'range', or 'background'. + * The default style can be overwritten by + * individual items. + * {String} align + * Alignment for the items, only applicable for + * BoxItem. Choose 'center' (default), 'left', or + * 'right'. + * {String} orientation.item + * Orientation of the item set. Choose 'top' or + * 'bottom' (default). + * {Function} groupOrder + * A sorting function for ordering groups + * {Boolean} stack + * If true (default), items will be stacked on + * top of each other. + * {Number} margin.axis + * Margin between the axis and the items in pixels. + * Default is 20. + * {Number} margin.item.horizontal + * Horizontal margin between items in pixels. + * Default is 10. + * {Number} margin.item.vertical + * Vertical Margin between items in pixels. + * Default is 10. + * {Number} margin.item + * Margin between items in pixels in both horizontal + * and vertical direction. Default is 10. + * {Number} margin + * Set margin for both axis and items in pixels. + * {Boolean} selectable + * If true (default), items can be selected. + * {Boolean} multiselect + * If true, multiple items can be selected. + * False by default. + * {Boolean} editable + * Set all editable options to true or false + * {Boolean} editable.updateTime + * Allow dragging an item to an other moment in time + * {Boolean} editable.updateGroup + * Allow dragging an item to an other group + * {Boolean} editable.add + * Allow creating new items on double tap + * {Boolean} editable.remove + * Allow removing items by clicking the delete button + * top right of a selected item. + * {Function(item: Item, callback: Function)} onAdd + * Callback function triggered when an item is about to be added: + * when the user double taps an empty space in the Timeline. + * {Function(item: Item, callback: Function)} onUpdate + * Callback function fired when an item is about to be updated. + * This function typically has to show a dialog where the user + * change the item. If not implemented, nothing happens. + * {Function(item: Item, callback: Function)} onMove + * Fired when an item has been moved. If not implemented, + * the move action will be accepted. + * {Function(item: Item, callback: Function)} onRemove + * Fired when an item is about to be deleted. + * If not implemented, the item will be always removed. + */ + ItemSet.prototype.setOptions = function (options) { + if (options) { + // copy all options that we know + var fields = ['type', 'align', 'order', 'stack', 'selectable', 'multiselect', 'groupOrder', 'dataAttributes', 'template', 'groupTemplate', 'hide', 'snap', 'groupOrderSwap']; + util.selectiveExtend(fields, this.options, options); + + if ('orientation' in options) { + if (typeof options.orientation === 'string') { + this.options.orientation.item = options.orientation === 'top' ? 'top' : 'bottom'; + } else if (typeof options.orientation === 'object' && 'item' in options.orientation) { + this.options.orientation.item = options.orientation.item; + } + } + + if ('margin' in options) { + if (typeof options.margin === 'number') { + this.options.margin.axis = options.margin; + this.options.margin.item.horizontal = options.margin; + this.options.margin.item.vertical = options.margin; + } else if (typeof options.margin === 'object') { + util.selectiveExtend(['axis'], this.options.margin, options.margin); + if ('item' in options.margin) { + if (typeof options.margin.item === 'number') { + this.options.margin.item.horizontal = options.margin.item; + this.options.margin.item.vertical = options.margin.item; + } else if (typeof options.margin.item === 'object') { + util.selectiveExtend(['horizontal', 'vertical'], this.options.margin.item, options.margin.item); + } + } + } + } + + if ('editable' in options) { + if (typeof options.editable === 'boolean') { + this.options.editable.updateTime = options.editable; + this.options.editable.updateGroup = options.editable; + this.options.editable.add = options.editable; + this.options.editable.remove = options.editable; + } else if (typeof options.editable === 'object') { + util.selectiveExtend(['updateTime', 'updateGroup', 'add', 'remove'], this.options.editable, options.editable); + } + } + + if ('groupEditable' in options) { + if (typeof options.groupEditable === 'boolean') { + this.options.groupEditable.order = options.groupEditable; + this.options.groupEditable.add = options.groupEditable; + this.options.groupEditable.remove = options.groupEditable; + } else if (typeof options.groupEditable === 'object') { + util.selectiveExtend(['order', 'add', 'remove'], this.options.groupEditable, options.groupEditable); + } + } + + // callback functions + var addCallback = (function (name) { + var fn = options[name]; + if (fn) { + if (!(fn instanceof Function)) { + throw new Error('option ' + name + ' must be a function ' + name + '(item, callback)'); + } + this.options[name] = fn; + } + }).bind(this); + ['onAdd', 'onUpdate', 'onRemove', 'onMove', 'onMoving', 'onAddGroup', 'onMoveGroup', 'onRemoveGroup'].forEach(addCallback); + + // force the itemSet to refresh: options like orientation and margins may be changed + this.markDirty(); + } + }; + + /** + * Mark the ItemSet dirty so it will refresh everything with next redraw. + * Optionally, all items can be marked as dirty and be refreshed. + * @param {{refreshItems: boolean}} [options] + */ + ItemSet.prototype.markDirty = function (options) { + this.groupIds = []; + this.stackDirty = true; + + if (options && options.refreshItems) { + util.forEach(this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); + }); + } + }; + + /** + * Destroy the ItemSet + */ + ItemSet.prototype.destroy = function () { + this.hide(); + this.setItems(null); + this.setGroups(null); + + this.hammer = null; + + this.body = null; + this.conversion = null; + }; + + /** + * Hide the component from the DOM + */ + ItemSet.prototype.hide = function () { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + + // remove the axis with dots + if (this.dom.axis.parentNode) { + this.dom.axis.parentNode.removeChild(this.dom.axis); + } + + // remove the labelset containing all group labels + if (this.dom.labelSet.parentNode) { + this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); + } + }; + + /** + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed + */ + ItemSet.prototype.show = function () { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } + + // show axis with dots + if (!this.dom.axis.parentNode) { + this.body.dom.backgroundVertical.appendChild(this.dom.axis); + } + + // show labelset containing labels + if (!this.dom.labelSet.parentNode) { + this.body.dom.left.appendChild(this.dom.labelSet); + } + }; + + /** + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {string[] | string} [ids] An array with zero or more id's of the items to be + * selected, or a single item id. If ids is undefined + * or an empty array, all items will be unselected. + */ + ItemSet.prototype.setSelection = function (ids) { + var i, ii, id, item; + + if (ids == undefined) ids = []; + if (!Array.isArray(ids)) ids = [ids]; + + // unselect currently selected items + for (i = 0, ii = this.selection.length; i < ii; i++) { + id = this.selection[i]; + item = this.items[id]; + if (item) item.unselect(); + } + + // select items + this.selection = []; + for (i = 0, ii = ids.length; i < ii; i++) { + id = ids[i]; + item = this.items[id]; + if (item) { + this.selection.push(id); + item.select(); + } + } + }; + + /** + * Get the selected items by their id + * @return {Array} ids The ids of the selected items + */ + ItemSet.prototype.getSelection = function () { + return this.selection.concat([]); + }; + + /** + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items + */ + ItemSet.prototype.getVisibleItems = function () { + var range = this.body.range.getRange(); + var left = this.body.util.toScreen(range.start); + var right = this.body.util.toScreen(range.end); + + var ids = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + var rawVisibleItems = group.visibleItems; + + // filter the "raw" set with visibleItems into a set which is really + // visible by pixels + for (var i = 0; i < rawVisibleItems.length; i++) { + var item = rawVisibleItems[i]; + // TODO: also check whether visible vertically + if (item.left < right && item.left + item.width > left) { + ids.push(item.id); + } + } + } + } + + return ids; + }; + + /** + * Deselect a selected item + * @param {String | Number} id + * @private + */ + ItemSet.prototype._deselect = function (id) { + var selection = this.selection; + for (var i = 0, ii = selection.length; i < ii; i++) { + if (selection[i] == id) { + // non-strict comparison! + selection.splice(i, 1); + break; + } + } + }; + + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + ItemSet.prototype.redraw = function () { + var margin = this.options.margin, + range = this.body.range, + asSize = util.option.asSize, + options = this.options, + orientation = options.orientation.item, + resized = false, + frame = this.dom.frame; + + // recalculate absolute position (before redrawing groups) + this.props.top = this.body.domProps.top.height + this.body.domProps.border.top; + this.props.left = this.body.domProps.left.width + this.body.domProps.border.left; + + // update class name + frame.className = 'vis-itemset'; + + // reorder the groups (if needed) + resized = this._orderGroups() || resized; + + // check whether zoomed (in that case we need to re-stack everything) + // TODO: would be nicer to get this as a trigger from Range + var visibleInterval = range.end - range.start; + var zoomed = visibleInterval != this.lastVisibleInterval || this.props.width != this.props.lastWidth; + if (zoomed) this.stackDirty = true; + this.lastVisibleInterval = visibleInterval; + this.props.lastWidth = this.props.width; + + var restack = this.stackDirty; + var firstGroup = this._firstGroup(); + var firstMargin = { + item: margin.item, + axis: margin.axis + }; + var nonFirstMargin = { + item: margin.item, + axis: margin.item.vertical / 2 + }; + var height = 0; + var minHeight = margin.axis + margin.item.vertical; + + // redraw the background group + this.groups[BACKGROUND].redraw(range, nonFirstMargin, restack); + + // redraw all regular groups + util.forEach(this.groups, function (group) { + var groupMargin = group == firstGroup ? firstMargin : nonFirstMargin; + var groupResized = group.redraw(range, groupMargin, restack); + resized = groupResized || resized; + height += group.height; + }); + height = Math.max(height, minHeight); + this.stackDirty = false; + + // update frame height + frame.style.height = asSize(height); + + // calculate actual size + this.props.width = frame.offsetWidth; + this.props.height = height; + + // reposition axis + this.dom.axis.style.top = asSize(orientation == 'top' ? this.body.domProps.top.height + this.body.domProps.border.top : this.body.domProps.top.height + this.body.domProps.centerContainer.height); + this.dom.axis.style.left = '0'; + + // check if this component is resized + resized = this._isResized() || resized; + + return resized; + }; + + /** + * Get the first group, aligned with the axis + * @return {Group | null} firstGroup + * @private + */ + ItemSet.prototype._firstGroup = function () { + var firstGroupIndex = this.options.orientation.item == 'top' ? 0 : this.groupIds.length - 1; + var firstGroupId = this.groupIds[firstGroupIndex]; + var firstGroup = this.groups[firstGroupId] || this.groups[UNGROUPED]; + + return firstGroup || null; + }; + + /** + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. + * @protected + */ + ItemSet.prototype._updateUngrouped = function () { + var ungrouped = this.groups[UNGROUPED]; + var background = this.groups[BACKGROUND]; + var item, itemId; + + if (this.groupsData) { + // remove the group holding all ungrouped items + if (ungrouped) { + ungrouped.hide(); + delete this.groups[UNGROUPED]; + + for (itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + item = this.items[itemId]; + item.parent && item.parent.remove(item); + var groupId = this._getGroupId(item.data); + var group = this.groups[groupId]; + group && group.add(item) || item.hide(); + } + } + } + } else { + // create a group holding all (unfiltered) items + if (!ungrouped) { + var id = null; + var data = null; + ungrouped = new Group(id, data, this); + this.groups[UNGROUPED] = ungrouped; + + for (itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + item = this.items[itemId]; + ungrouped.add(item); + } + } + + ungrouped.show(); + } + } + }; + + /** + * Get the element for the labelset + * @return {HTMLElement} labelSet + */ + ItemSet.prototype.getLabelSet = function () { + return this.dom.labelSet; + }; + + /** + * Set items + * @param {vis.DataSet | null} items + */ + ItemSet.prototype.setItems = function (items) { + var me = this, + ids, + oldItemsData = this.itemsData; + + // replace the dataset + if (!items) { + this.itemsData = null; + } else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); + + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } + + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); + + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + + // update the group holding all ungrouped items + this._updateUngrouped(); + } + }; + + /** + * Get the current items + * @returns {vis.DataSet | null} + */ + ItemSet.prototype.getItems = function () { + return this.itemsData; + }; + + /** + * Set groups + * @param {vis.DataSet} groups + */ + ItemSet.prototype.setGroups = function (groups) { + var me = this, + ids; + + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.off(event, callback); + }); + + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } + + // replace the dataset + if (!groups) { + this.groupsData = null; + } else if (groups instanceof DataSet || groups instanceof DataView) { + this.groupsData = groups; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); + + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } + + // update the group holding all ungrouped items + this._updateUngrouped(); + + // update the order of all items in each group + this._order(); + + this.body.emitter.emit('change', { queue: true }); + }; + + /** + * Get the current groups + * @returns {vis.DataSet | null} groups + */ + ItemSet.prototype.getGroups = function () { + return this.groupsData; + }; + + /** + * Remove an item by its id + * @param {String | Number} id + */ + ItemSet.prototype.removeItem = function (id) { + var item = this.itemsData.get(id), + dataset = this.itemsData.getDataSet(); + + if (item) { + // confirm deletion + this.options.onRemove(item, function (item) { + if (item) { + // remove by id here, it is possible that an item has no id defined + // itself, so better not delete by the item itself + dataset.remove(id); + } + }); + } + }; + + /** + * Get the time of an item based on it's data and options.type + * @param {Object} itemData + * @returns {string} Returns the type + * @private + */ + ItemSet.prototype._getType = function (itemData) { + return itemData.type || this.options.type || (itemData.end ? 'range' : 'box'); + }; + + /** + * Get the group id for an item + * @param {Object} itemData + * @returns {string} Returns the groupId + * @private + */ + ItemSet.prototype._getGroupId = function (itemData) { + var type = this._getType(itemData); + if (type == 'background' && itemData.group == undefined) { + return BACKGROUND; + } else { + return this.groupsData ? itemData.group : UNGROUPED; + } + }; + + /** + * Handle updated items + * @param {Number[]} ids + * @protected + */ + ItemSet.prototype._onUpdate = function (ids) { + var me = this; + + ids.forEach((function (id) { + var itemData = me.itemsData.get(id, me.itemOptions); + var item = me.items[id]; + var type = me._getType(itemData); + + var constructor = ItemSet.types[type]; + var selected; + + if (item) { + // update item + if (!constructor || !(item instanceof constructor)) { + // item type has changed, delete the item and recreate it + selected = item.selected; // preserve selection of this item + me._removeItem(item); + item = null; + } else { + me._updateItem(item, itemData); + } + } + + if (!item) { + // create item + if (constructor) { + item = new constructor(itemData, me.conversion, me.options); + item.id = id; // TODO: not so nice setting id afterwards + me._addItem(item); + if (selected) { + this.selection.push(id); + item.select(); + } + } else if (type == 'rangeoverflow') { + // TODO: deprecated since version 2.1.0 (or 3.0.0?). cleanup some day + throw new TypeError('Item type "rangeoverflow" is deprecated. Use css styling instead: ' + '.vis-item.vis-range .vis-item-content {overflow: visible;}'); + } else { + throw new TypeError('Unknown item type "' + type + '"'); + } + } + }).bind(this)); + + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change', { queue: true }); + }; + + /** + * Handle added items + * @param {Number[]} ids + * @protected + */ + ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; + + /** + * Handle removed items + * @param {Number[]} ids + * @protected + */ + ItemSet.prototype._onRemove = function (ids) { + var count = 0; + var me = this; + ids.forEach(function (id) { + var item = me.items[id]; + if (item) { + count++; + me._removeItem(item); + } + }); + + if (count) { + // update order + this._order(); + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change', { queue: true }); + } + }; + + /** + * Update the order of item in all groups + * @private + */ + ItemSet.prototype._order = function () { + // reorder the items in all groups + // TODO: optimization: only reorder groups affected by the changed items + util.forEach(this.groups, function (group) { + group.order(); + }); + }; + + /** + * Handle updated groups + * @param {Number[]} ids + * @private + */ + ItemSet.prototype._onUpdateGroups = function (ids) { + this._onAddGroups(ids); + }; + + /** + * Handle changed groups (added or updated) + * @param {Number[]} ids + * @private + */ + ItemSet.prototype._onAddGroups = function (ids) { + var me = this; + + ids.forEach(function (id) { + var groupData = me.groupsData.get(id); + var group = me.groups[id]; + + if (!group) { + // check for reserved ids + if (id == UNGROUPED || id == BACKGROUND) { + throw new Error('Illegal group id. ' + id + ' is a reserved id.'); + } + + var groupOptions = Object.create(me.options); + util.extend(groupOptions, { + height: null + }); + + group = new Group(id, groupData, me); + me.groups[id] = group; + + // add items with this groupId to the new group + for (var itemId in me.items) { + if (me.items.hasOwnProperty(itemId)) { + var item = me.items[itemId]; + if (item.data.group == id) { + group.add(item); + } + } + } + + group.order(); + group.show(); + } else { + // update group + group.setData(groupData); + } + }); + + this.body.emitter.emit('change', { queue: true }); + }; + + /** + * Handle removed groups + * @param {Number[]} ids + * @private + */ + ItemSet.prototype._onRemoveGroups = function (ids) { + var groups = this.groups; + ids.forEach(function (id) { + var group = groups[id]; + + if (group) { + group.hide(); + delete groups[id]; + } + }); + + this.markDirty(); + + this.body.emitter.emit('change', { queue: true }); + }; + + /** + * Reorder the groups if needed + * @return {boolean} changed + * @private + */ + ItemSet.prototype._orderGroups = function () { + if (this.groupsData) { + // reorder the groups + var groupIds = this.groupsData.getIds({ + order: this.options.groupOrder + }); + + var changed = !util.equalArray(groupIds, this.groupIds); + if (changed) { + // hide all groups, removes them from the DOM + var groups = this.groups; + groupIds.forEach(function (groupId) { + groups[groupId].hide(); + }); + + // show the groups again, attach them to the DOM in correct order + groupIds.forEach(function (groupId) { + groups[groupId].show(); + }); + + this.groupIds = groupIds; + } + + return changed; + } else { + return false; + } + }; + + /** + * Add a new item + * @param {Item} item + * @private + */ + ItemSet.prototype._addItem = function (item) { + this.items[item.id] = item; + + // add to group + var groupId = this._getGroupId(item.data); + var group = this.groups[groupId]; + if (group) group.add(item); + }; + + /** + * Update an existing item + * @param {Item} item + * @param {Object} itemData + * @private + */ + ItemSet.prototype._updateItem = function (item, itemData) { + var oldGroupId = item.data.group; + var oldSubGroupId = item.data.subgroup; + + // update the items data (will redraw the item when displayed) + item.setData(itemData); + + // update group + if (oldGroupId != item.data.group || oldSubGroupId != item.data.subgroup) { + var oldGroup = this.groups[oldGroupId]; + if (oldGroup) oldGroup.remove(item); + + var groupId = this._getGroupId(item.data); + var group = this.groups[groupId]; + if (group) group.add(item); + } + }; + + /** + * Delete an item from the ItemSet: remove it from the DOM, from the map + * with items, and from the map with visible items, and from the selection + * @param {Item} item + * @private + */ + ItemSet.prototype._removeItem = function (item) { + // remove from DOM + item.hide(); + + // remove from items + delete this.items[item.id]; + + // remove from selection + var index = this.selection.indexOf(item.id); + if (index != -1) this.selection.splice(index, 1); + + // remove from group + item.parent && item.parent.remove(item); + }; + + /** + * Create an array containing all items being a range (having an end date) + * @param array + * @returns {Array} + * @private + */ + ItemSet.prototype._constructByEndArray = function (array) { + var endArray = []; + + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof RangeItem) { + endArray.push(array[i]); + } + } + return endArray; + }; + + /** + * Register the clicked item on touch, before dragStart is initiated. + * + * dragStart is initiated from a mousemove event, AFTER the mouse/touch is + * already moving. Therefore, the mouse/touch can sometimes be above an other + * DOM element than the item itself. + * + * @param {Event} event + * @private + */ + ItemSet.prototype._onTouch = function (event) { + // store the touched item, used in _onDragStart + this.touchParams.item = this.itemFromTarget(event); + this.touchParams.dragLeftItem = event.target.dragLeftItem || false; + this.touchParams.dragRightItem = event.target.dragRightItem || false; + this.touchParams.itemProps = null; + }; + + /** + * Given an group id, returns the index it has. + * + * @param {Number} groupID + * @private + */ + ItemSet.prototype._getGroupIndex = function (groupId) { + for (var i = 0; i < this.groupIds.length; i++) { + if (groupId == this.groupIds[i]) return i; + } + }; + + /** + * Start dragging the selected events + * @param {Event} event + * @private + */ + ItemSet.prototype._onDragStart = function (event) { + var item = this.touchParams.item || null; + var me = this; + var props; + + if (item && item.selected) { + + if (!this.options.editable.updateTime && !this.options.editable.updateGroup && !item.editable) { + return; + } + + // override options.editable + if (item.editable === false) { + return; + } + + var dragLeftItem = this.touchParams.dragLeftItem; + var dragRightItem = this.touchParams.dragRightItem; + + if (dragLeftItem) { + props = { + item: dragLeftItem, + initialX: event.center.x, + dragLeft: true, + data: this._cloneItemData(item.data) + }; + + this.touchParams.itemProps = [props]; + } else if (dragRightItem) { + props = { + item: dragRightItem, + initialX: event.center.x, + dragRight: true, + data: this._cloneItemData(item.data) + }; + + this.touchParams.itemProps = [props]; + } else { + this.touchParams.selectedItem = item; + + var baseGroupIndex = this._getGroupIndex(item.data.group); + + this.touchParams.itemProps = this.getSelection().map((function (id) { + var item = me.items[id]; + var groupIndex = me._getGroupIndex(item.data.group); + return { + item: item, + initialX: event.center.x, + groupOffset: baseGroupIndex - groupIndex, + data: this._cloneItemData(item.data) + }; + }).bind(this)); + } + + event.stopPropagation(); + } else if (this.options.editable.add && (event.srcEvent.ctrlKey || event.srcEvent.metaKey)) { + // create a new range item when dragging with ctrl key down + this._onDragStartAddItem(event); + } + }; + + /** + * Start creating a new range item by dragging. + * @param {Event} event + * @private + */ + ItemSet.prototype._onDragStartAddItem = function (event) { + var snap = this.options.snap || null; + var xAbs = util.getAbsoluteLeft(this.dom.frame); + var x = event.center.x - xAbs - 10; // minus 10 to compensate for the drag starting as soon as you've moved 10px + var time = this.body.util.toTime(x); + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); + var start = snap ? snap(time, scale, step) : start; + var end = start; + + var itemData = { + type: 'range', + start: start, + end: end, + content: 'new item' + }; + + var id = util.randomUUID(); + itemData[this.itemsData._fieldId] = id; + + var group = this.groupFromTarget(event); + if (group) { + itemData.group = group.groupId; + } + + var newItem = new RangeItem(itemData, this.conversion, this.options); + newItem.id = id; // TODO: not so nice setting id afterwards + newItem.data = this._cloneItemData(itemData); + this._addItem(newItem); + + var props = { + item: newItem, + dragRight: true, + initialX: event.center.x, + data: newItem.data + }; + this.touchParams.itemProps = [props]; + + event.stopPropagation(); + }; + + /** + * Drag selected items + * @param {Event} event + * @private + */ + ItemSet.prototype._onDrag = function (event) { + if (this.touchParams.itemProps) { + event.stopPropagation(); + + var me = this; + var snap = this.options.snap || null; + var xOffset = this.body.dom.root.offsetLeft + this.body.domProps.left.width; + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); + + //only calculate the new group for the item that's actually dragged + var selectedItem = this.touchParams.selectedItem; + var updateGroupAllowed = me.options.editable.updateGroup; + var newGroupBase = null; + if (updateGroupAllowed && selectedItem) { + if (selectedItem.data.group != undefined) { + // drag from one group to another + var group = me.groupFromTarget(event); + if (group) { + //we know the offset for all items, so the new group for all items + //will be relative to this one. + newGroupBase = this._getGroupIndex(group.groupId); + } + } + } + + // move + this.touchParams.itemProps.forEach((function (props) { + var current = me.body.util.toTime(event.center.x - xOffset); + var initial = me.body.util.toTime(props.initialX - xOffset); + var offset = current - initial; // ms + + var itemData = this._cloneItemData(props.item.data); // clone the data + if (props.item.editable === false) { + return; + } + + var updateTimeAllowed = me.options.editable.updateTime || props.item.editable === true; + + if (updateTimeAllowed) { + if (props.dragLeft) { + // drag left side of a range item + if (itemData.start != undefined) { + var initialStart = util.convert(props.data.start, 'Date'); + var start = new Date(initialStart.valueOf() + offset); + // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + itemData.start = snap ? snap(start, scale, step) : start; + } + } else if (props.dragRight) { + // drag right side of a range item + if (itemData.end != undefined) { + var initialEnd = util.convert(props.data.end, 'Date'); + var end = new Date(initialEnd.valueOf() + offset); + // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + itemData.end = snap ? snap(end, scale, step) : end; + } + } else { + // drag both start and end + if (itemData.start != undefined) { + var initialStart = util.convert(props.data.start, 'Date').valueOf(); + var start = new Date(initialStart + offset); + + if (itemData.end != undefined) { + var initialEnd = util.convert(props.data.end, 'Date'); + var duration = initialEnd.valueOf() - initialStart.valueOf(); + + // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + itemData.start = snap ? snap(start, scale, step) : start; + itemData.end = new Date(itemData.start.valueOf() + duration); + } else { + // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + itemData.start = snap ? snap(start, scale, step) : start; + } + } + } + } + + var updateGroupAllowed = me.options.editable.updateGroup || props.item.editable === true; + + if (updateGroupAllowed && (!props.dragLeft && !props.dragRight) && newGroupBase != null) { + if (itemData.group != undefined) { + var newOffset = newGroupBase - props.groupOffset; + + //make sure we stay in bounds + newOffset = Math.max(0, newOffset); + newOffset = Math.min(me.groupIds.length - 1, newOffset); + + itemData.group = me.groupIds[newOffset]; + } + } + + // confirm moving the item + itemData = this._cloneItemData(itemData); // convert start and end to the correct type + me.options.onMoving(itemData, (function (itemData) { + if (itemData) { + props.item.setData(this._cloneItemData(itemData, 'Date')); + } + }).bind(this)); + }).bind(this)); + + this.stackDirty = true; // force re-stacking of all items next redraw + this.body.emitter.emit('change'); + } + }; + + /** + * Move an item to another group + * @param {Item} item + * @param {String | Number} groupId + * @private + */ + ItemSet.prototype._moveToGroup = function (item, groupId) { + var group = this.groups[groupId]; + if (group && group.groupId != item.data.group) { + var oldGroup = item.parent; + oldGroup.remove(item); + oldGroup.order(); + group.add(item); + group.order(); + + item.data.group = group.groupId; + } + }; + + /** + * End of dragging selected items + * @param {Event} event + * @private + */ + ItemSet.prototype._onDragEnd = function (event) { + if (this.touchParams.itemProps) { + event.stopPropagation(); + + var me = this; + var dataset = this.itemsData.getDataSet(); + var itemProps = this.touchParams.itemProps; + this.touchParams.itemProps = null; + + itemProps.forEach((function (props) { + var id = props.item.id; + var exists = me.itemsData.get(id, me.itemOptions) != null; + + if (!exists) { + // add a new item + me.options.onAdd(props.item.data, function (itemData) { + me._removeItem(props.item); // remove temporary item + if (itemData) { + me.itemsData.getDataSet().add(itemData); + } + + // force re-stacking of all items next redraw + me.stackDirty = true; + me.body.emitter.emit('change'); + }); + } else { + // update existing item + var itemData = this._cloneItemData(props.item.data); // convert start and end to the correct type + me.options.onMove(itemData, function (itemData) { + if (itemData) { + // apply changes + itemData[dataset._fieldId] = id; // ensure the item contains its id (can be undefined) + dataset.update(itemData); + } else { + // restore original values + props.item.setData(props.data); + + me.stackDirty = true; // force re-stacking of all items next redraw + me.body.emitter.emit('change'); + } + }); + } + }).bind(this)); + } + }; + + ItemSet.prototype._onGroupDragStart = function (event) { + if (this.options.groupEditable.order) { + this.groupTouchParams.group = this.groupFromTarget(event); + + if (this.groupTouchParams.group) { + event.stopPropagation(); + + this.groupTouchParams.originalOrder = this.groupsData.getIds({ + order: this.options.groupOrder + }); + } + } + }; + + ItemSet.prototype._onGroupDrag = function (event) { + if (this.options.groupEditable.order && this.groupTouchParams.group) { + event.stopPropagation(); + + // drag from one group to another + var group = this.groupFromTarget(event); + + // try to avoid toggling when groups differ in height + if (group && group.height != this.groupTouchParams.group.height) { + var movingUp = group.top < this.groupTouchParams.group.top; + var clientY = event.center ? event.center.y : event.clientY; + var targetGroupTop = util.getAbsoluteTop(group.dom.foreground); + var draggedGroupHeight = this.groupTouchParams.group.height; + if (movingUp) { + // skip swapping the groups when the dragged group is not below clientY afterwards + if (targetGroupTop + draggedGroupHeight < clientY) { + return; + } + } else { + var targetGroupHeight = group.height; + // skip swapping the groups when the dragged group is not below clientY afterwards + if (targetGroupTop + targetGroupHeight - draggedGroupHeight > clientY) { + return; + } + } + } + + if (group && group != this.groupTouchParams.group) { + var groupsData = this.groupsData; + var targetGroup = groupsData.get(group.groupId); + var draggedGroup = groupsData.get(this.groupTouchParams.group.groupId); + + // switch groups + if (draggedGroup && targetGroup) { + this.options.groupOrderSwap(draggedGroup, targetGroup, this.groupsData); + this.groupsData.update(draggedGroup); + this.groupsData.update(targetGroup); + } + + // fetch current order of groups + var newOrder = this.groupsData.getIds({ + order: this.options.groupOrder + }); + + // in case of changes since _onGroupDragStart + if (!util.equalArray(newOrder, this.groupTouchParams.originalOrder)) { + var groupsData = this.groupsData; + var origOrder = this.groupTouchParams.originalOrder; + var draggedId = this.groupTouchParams.group.groupId; + var numGroups = Math.min(origOrder.length, newOrder.length); + var curPos = 0; + var newOffset = 0; + var orgOffset = 0; + while (curPos < numGroups) { + // as long as the groups are where they should be step down along the groups order + while (curPos + newOffset < numGroups && curPos + orgOffset < numGroups && newOrder[curPos + newOffset] == origOrder[curPos + orgOffset]) { + curPos++; + } + + // all ok + if (curPos + newOffset >= numGroups) { + break; + } + + // not all ok + // if dragged group was move upwards everything below should have an offset + if (newOrder[curPos + newOffset] == draggedId) { + newOffset = 1; + continue; + } + // if dragged group was move downwards everything above should have an offset + else if (origOrder[curPos + orgOffset] == draggedId) { + orgOffset = 1; + continue; + } + // found a group (apart from dragged group) that has the wrong position -> switch with the + // group at the position where other one should be, fix index arrays and continue + else { + var slippedPosition = newOrder.indexOf(origOrder[curPos + orgOffset]); + var switchGroup = groupsData.get(newOrder[curPos + newOffset]); + var shouldBeGroup = groupsData.get(origOrder[curPos + orgOffset]); + this.options.groupOrderSwap(switchGroup, shouldBeGroup, groupsData); + groupsData.update(switchGroup); + groupsData.update(shouldBeGroup); + + var switchGroupId = newOrder[curPos + newOffset]; + newOrder[curPos + newOffset] = origOrder[curPos + orgOffset]; + newOrder[slippedPosition] = switchGroupId; + + curPos++; + } + } + } + } + } + }; + + ItemSet.prototype._onGroupDragEnd = function (event) { + if (this.options.groupEditable.order && this.groupTouchParams.group) { + event.stopPropagation(); + + // update existing group + var me = this; + var id = me.groupTouchParams.group.groupId; + var dataset = me.groupsData.getDataSet(); + var groupData = util.extend({}, dataset.get(id)); // clone the data + me.options.onMoveGroup(groupData, function (groupData) { + if (groupData) { + // apply changes + groupData[dataset._fieldId] = id; // ensure the group contains its id (can be undefined) + dataset.update(groupData); + } else { + + // fetch current order of groups + var newOrder = dataset.getIds({ + order: me.options.groupOrder + }); + + // restore original order + if (!util.equalArray(newOrder, me.groupTouchParams.originalOrder)) { + var origOrder = me.groupTouchParams.originalOrder; + var numGroups = Math.min(origOrder.length, newOrder.length); + var curPos = 0; + while (curPos < numGroups) { + // as long as the groups are where they should be step down along the groups order + while (curPos < numGroups && newOrder[curPos] == origOrder[curPos]) { + curPos++; + } + + // all ok + if (curPos >= numGroups) { + break; + } + + // found a group that has the wrong position -> switch with the + // group at the position where other one should be, fix index arrays and continue + var slippedPosition = newOrder.indexOf(origOrder[curPos]); + var switchGroup = dataset.get(newOrder[curPos]); + var shouldBeGroup = dataset.get(origOrder[curPos]); + me.options.groupOrderSwap(switchGroup, shouldBeGroup, dataset); + groupsData.update(switchGroup); + groupsData.update(shouldBeGroup); + + var switchGroupId = newOrder[curPos]; + newOrder[curPos] = origOrder[curPos]; + newOrder[slippedPosition] = switchGroupId; + + curPos++; + } + } + } + }); + + me.body.emitter.emit('groupDragged', { groupId: id }); + } + }; + + /** + * Handle selecting/deselecting an item when tapping it + * @param {Event} event + * @private + */ + ItemSet.prototype._onSelectItem = function (event) { + if (!this.options.selectable) return; + + var ctrlKey = event.srcEvent && (event.srcEvent.ctrlKey || event.srcEvent.metaKey); + var shiftKey = event.srcEvent && event.srcEvent.shiftKey; + if (ctrlKey || shiftKey) { + this._onMultiSelectItem(event); + return; + } + + var oldSelection = this.getSelection(); + + var item = this.itemFromTarget(event); + var selection = item ? [item.id] : []; + this.setSelection(selection); + + var newSelection = this.getSelection(); + + // emit a select event, + // except when old selection is empty and new selection is still empty + if (newSelection.length > 0 || oldSelection.length > 0) { + this.body.emitter.emit('select', { + items: newSelection, + event: event + }); + } + }; + + /** + * Handle creation and updates of an item on double tap + * @param event + * @private + */ + ItemSet.prototype._onAddItem = function (event) { + if (!this.options.selectable) return; + if (!this.options.editable.add) return; + + var me = this; + var snap = this.options.snap || null; + var item = this.itemFromTarget(event); + + event.stopPropagation(); + + if (item) { + // update item + + // execute async handler to update the item (or cancel it) + var itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset + this.options.onUpdate(itemData, function (itemData) { + if (itemData) { + me.itemsData.getDataSet().update(itemData); + } + }); + } else { + // add item + var xAbs = util.getAbsoluteLeft(this.dom.frame); + var x = event.center.x - xAbs; + var start = this.body.util.toTime(x); + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); + + var newItemData = { + start: snap ? snap(start, scale, step) : start, + content: 'new item' + }; + + // when default type is a range, add a default end date to the new item + if (this.options.type === 'range') { + var end = this.body.util.toTime(x + this.props.width / 5); + newItemData.end = snap ? snap(end, scale, step) : end; + } + + newItemData[this.itemsData._fieldId] = util.randomUUID(); + + var group = this.groupFromTarget(event); + if (group) { + newItemData.group = group.groupId; + } + + // execute async handler to customize (or cancel) adding an item + newItemData = this._cloneItemData(newItemData); // convert start and end to the correct type + this.options.onAdd(newItemData, function (item) { + if (item) { + me.itemsData.getDataSet().add(item); + // TODO: need to trigger a redraw? + } + }); + } + }; + + /** + * Handle selecting/deselecting multiple items when holding an item + * @param {Event} event + * @private + */ + ItemSet.prototype._onMultiSelectItem = function (event) { + if (!this.options.selectable) return; + + var item = this.itemFromTarget(event); + + if (item) { + // multi select items (if allowed) + + var selection = this.options.multiselect ? this.getSelection() // take current selection + : []; // deselect current selection + + var shiftKey = event.srcEvent && event.srcEvent.shiftKey || false; + + if (shiftKey && this.options.multiselect) { + // select all items between the old selection and the tapped item + + // determine the selection range + selection.push(item.id); + var range = ItemSet._getItemRange(this.itemsData.get(selection, this.itemOptions)); + + // select all items within the selection range + selection = []; + for (var id in this.items) { + if (this.items.hasOwnProperty(id)) { + var _item = this.items[id]; + var start = _item.data.start; + var end = _item.data.end !== undefined ? _item.data.end : start; + + if (start >= range.min && end <= range.max && !(_item instanceof BackgroundItem)) { + selection.push(_item.id); // do not use id but item.id, id itself is stringified + } + } + } + } else { + // add/remove this item from the current selection + var index = selection.indexOf(item.id); + if (index == -1) { + // item is not yet selected -> select it + selection.push(item.id); + } else { + // item is already selected -> deselect it + selection.splice(index, 1); + } + } + + this.setSelection(selection); + + this.body.emitter.emit('select', { + items: this.getSelection(), + event: event + }); + } + }; + + /** + * Calculate the time range of a list of items + * @param {Array.} itemsData + * @return {{min: Date, max: Date}} Returns the range of the provided items + * @private + */ + ItemSet._getItemRange = function (itemsData) { + var max = null; + var min = null; + + itemsData.forEach(function (data) { + if (min == null || data.start < min) { + min = data.start; + } + + if (data.end != undefined) { + if (max == null || data.end > max) { + max = data.end; + } + } else { + if (max == null || data.start > max) { + max = data.start; + } + } + }); + + return { + min: min, + max: max + }; + }; + + /** + * Find an item from an event target: + * searches for the attribute 'timeline-item' in the event target's element tree + * @param {Event} event + * @return {Item | null} item + */ + ItemSet.prototype.itemFromTarget = function (event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-item')) { + return target['timeline-item']; + } + target = target.parentNode; + } + + return null; + }; + + /** + * Find the Group from an event target: + * searches for the attribute 'timeline-group' in the event target's element tree + * @param {Event} event + * @return {Group | null} group + */ + ItemSet.prototype.groupFromTarget = function (event) { + var clientY = event.center ? event.center.y : event.clientY; + for (var i = 0; i < this.groupIds.length; i++) { + var groupId = this.groupIds[i]; + var group = this.groups[groupId]; + var foreground = group.dom.foreground; + var top = util.getAbsoluteTop(foreground); + if (clientY > top && clientY < top + foreground.offsetHeight) { + return group; + } + + if (this.options.orientation.item === 'top') { + if (i === this.groupIds.length - 1 && clientY > top) { + return group; + } + } else { + if (i === 0 && clientY < top + foreground.offset) { + return group; + } + } + } + + return null; + }; + + /** + * Find the ItemSet from an event target: + * searches for the attribute 'timeline-itemset' in the event target's element tree + * @param {Event} event + * @return {ItemSet | null} item + */ + ItemSet.itemSetFromTarget = function (event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('timeline-itemset')) { + return target['timeline-itemset']; + } + target = target.parentNode; + } + + return null; + }; + + /** + * Clone the data of an item, and "normalize" it: convert the start and end date + * to the type (Date, Moment, ...) configured in the DataSet. If not configured, + * start and end are converted to Date. + * @param {Object} itemData, typically `item.data` + * @param {string} [type] Optional Date type. If not provided, the type from the DataSet is taken + * @return {Object} The cloned object + * @private + */ + ItemSet.prototype._cloneItemData = function (itemData, type) { + var clone = util.extend({}, itemData); + + if (!type) { + // convert start and end date to the type (Date, Moment, ...) configured in the DataSet + type = this.itemsData.getDataSet()._options.type; + } + + if (clone.start != undefined) { + clone.start = util.convert(clone.start, type && type.start || 'Date'); + } + if (clone.end != undefined) { + clone.end = util.convert(clone.end, type && type.end || 'Date'); + } + + return clone; + }; + + module.exports = ItemSet; + +/***/ }, +/* 30 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var moment = __webpack_require__(2); + var DateUtil = __webpack_require__(27); + var util = __webpack_require__(1); + + /** + * @constructor TimeStep + * The class TimeStep is an iterator for dates. You provide a start date and an + * end date. The class itself determines the best scale (step size) based on the + * provided start Date, end Date, and minimumStep. + * + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * + * Alternatively, you can set a scale by hand. + * After creation, you can initialize the class by executing first(). Then you + * can iterate from the start date to the end date via next(). You can check if + * the end date is reached with the function hasNext(). After each step, you can + * retrieve the current date via getCurrent(). + * The TimeStep has scales ranging from milliseconds, seconds, minutes, hours, + * days, to years. + * + * Version: 1.2 + * + * @param {Date} [start] The start date, for example new Date(2010, 9, 21) + * or new Date(2010, 9, 21, 23, 45, 00) + * @param {Date} [end] The end date + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + */ + function TimeStep(start, end, minimumStep, hiddenDates) { + this.moment = moment; + + // variables + this.current = this.moment(); + this._start = this.moment(); + this._end = this.moment(); + + this.autoScale = true; + this.scale = 'day'; + this.step = 1; + + // initialize the range + this.setRange(start, end, minimumStep); + + // hidden Dates options + this.switchedDay = false; + this.switchedMonth = false; + this.switchedYear = false; + this.hiddenDates = hiddenDates; + if (hiddenDates === undefined) { + this.hiddenDates = []; + } + + this.format = TimeStep.FORMAT; // default formatting + } + + // Time formatting + TimeStep.FORMAT = { + minorLabels: { + millisecond: 'SSS', + second: 's', + minute: 'HH:mm', + hour: 'HH:mm', + weekday: 'ddd D', + day: 'D', + month: 'MMM', + year: 'YYYY' + }, + majorLabels: { + millisecond: 'HH:mm:ss', + second: 'D MMMM HH:mm', + minute: 'ddd D MMMM', + hour: 'ddd D MMMM', + weekday: 'MMMM YYYY', + day: 'MMMM YYYY', + month: 'YYYY', + year: '' + } + }; + + /** + * Set custom constructor function for moment. Can be used to set dates + * to UTC or to set a utcOffset. + * @param {function} moment + */ + TimeStep.prototype.setMoment = function (moment) { + this.moment = moment; + + // update the date properties, can have a new utcOffset + this.current = this.moment(this.current); + this._start = this.moment(this._start); + this._end = this.moment(this._end); + }; + + /** + * Set custom formatting for the minor an major labels of the TimeStep. + * Both `minorLabels` and `majorLabels` are an Object with properties: + * 'millisecond', 'second', 'minute', 'hour', 'weekday', 'day', 'month', 'year'. + * @param {{minorLabels: Object, majorLabels: Object}} format + */ + TimeStep.prototype.setFormat = function (format) { + var defaultFormat = util.deepExtend({}, TimeStep.FORMAT); + this.format = util.deepExtend(defaultFormat, format); + }; + + /** + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Date} [start] The start date and time. + * @param {Date} [end] The end date and time. + * @param {int} [minimumStep] Optional. Minimum step size in milliseconds + */ + TimeStep.prototype.setRange = function (start, end, minimumStep) { + if (!(start instanceof Date) || !(end instanceof Date)) { + throw "No legal start or end date in method setRange"; + } + + this._start = start != undefined ? this.moment(start.valueOf()) : new Date(); + this._end = end != undefined ? this.moment(end.valueOf()) : new Date(); + + if (this.autoScale) { + this.setMinimumStep(minimumStep); + } + }; + + /** + * Set the range iterator to the start date. + */ + TimeStep.prototype.start = function () { + this.current = this._start.clone(); + this.roundToMinor(); + }; + + /** + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date + */ + TimeStep.prototype.roundToMinor = function () { + // round to floor + // IMPORTANT: we have no breaks in this switch! (this is no bug) + // noinspection FallThroughInSwitchStatementJS + switch (this.scale) { + case 'year': + this.current.year(this.step * Math.floor(this.current.year() / this.step)); + this.current.month(0); + case 'month': + this.current.date(1); + case 'day': // intentional fall through + case 'weekday': + this.current.hours(0); + case 'hour': + this.current.minutes(0); + case 'minute': + this.current.seconds(0); + case 'second': + this.current.milliseconds(0); + //case 'millisecond': // nothing to do for milliseconds + } + + if (this.step != 1) { + // round down to the first minor value that is a multiple of the current step size + switch (this.scale) { + case 'millisecond': + this.current.subtract(this.current.milliseconds() % this.step, 'milliseconds');break; + case 'second': + this.current.subtract(this.current.seconds() % this.step, 'seconds');break; + case 'minute': + this.current.subtract(this.current.minutes() % this.step, 'minutes');break; + case 'hour': + this.current.subtract(this.current.hours() % this.step, 'hours');break; + case 'weekday': // intentional fall through + case 'day': + this.current.subtract((this.current.date() - 1) % this.step, 'day');break; + case 'month': + this.current.subtract(this.current.month() % this.step, 'month');break; + case 'year': + this.current.subtract(this.current.year() % this.step, 'year');break; + default: + break; + } + } + }; + + /** + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date + */ + TimeStep.prototype.hasNext = function () { + return this.current.valueOf() <= this._end.valueOf(); + }; + + /** + * Do the next step + */ + TimeStep.prototype.next = function () { + var prev = this.current.valueOf(); + + // Two cases, needed to prevent issues with switching daylight savings + // (end of March and end of October) + if (this.current.month() < 6) { + switch (this.scale) { + case 'millisecond': + this.current.add(this.step, 'millisecond');break; + case 'second': + this.current.add(this.step, 'second');break; + case 'minute': + this.current.add(this.step, 'minute');break; + case 'hour': + this.current.add(this.step, 'hour'); + // in case of skipping an hour for daylight savings, adjust the hour again (else you get: 0h 5h 9h ... instead of 0h 4h 8h ...) + // TODO: is this still needed now we use the function of moment.js? + this.current.subtract(this.current.hours() % this.step, 'hour'); + break; + case 'weekday': // intentional fall through + case 'day': + this.current.add(this.step, 'day');break; + case 'month': + this.current.add(this.step, 'month');break; + case 'year': + this.current.add(this.step, 'year');break; + default: + break; + } + } else { + switch (this.scale) { + case 'millisecond': + this.current.add(this.step, 'millisecond');break; + case 'second': + this.current.add(this.step, 'second');break; + case 'minute': + this.current.add(this.step, 'minute');break; + case 'hour': + this.current.add(this.step, 'hour');break; + case 'weekday': // intentional fall through + case 'day': + this.current.add(this.step, 'day');break; + case 'month': + this.current.add(this.step, 'month');break; + case 'year': + this.current.add(this.step, 'year');break; + default: + break; + } + } + + if (this.step != 1) { + // round down to the correct major value + switch (this.scale) { + case 'millisecond': + if (this.current.milliseconds() < this.step) this.current.milliseconds(0);break; + case 'second': + if (this.current.seconds() < this.step) this.current.seconds(0);break; + case 'minute': + if (this.current.minutes() < this.step) this.current.minutes(0);break; + case 'hour': + if (this.current.hours() < this.step) this.current.hours(0);break; + case 'weekday': // intentional fall through + case 'day': + if (this.current.date() < this.step + 1) this.current.date(1);break; + case 'month': + if (this.current.month() < this.step) this.current.month(0);break; + case 'year': + break; // nothing to do for year + default: + break; + } + } + + // safety mechanism: if current time is still unchanged, move to the end + if (this.current.valueOf() == prev) { + this.current = this._end.clone(); + } + + DateUtil.stepOverHiddenDates(this.moment, this, prev); + }; + + /** + * Get the current datetime + * @return {Moment} current The current date + */ + TimeStep.prototype.getCurrent = function () { + return this.current; + }; + + /** + * Set a custom scale. Autoscaling will be disabled. + * For example setScale('minute', 5) will result + * in minor steps of 5 minutes, and major steps of an hour. + * + * @param {{scale: string, step: number}} params + * An object containing two properties: + * - A string 'scale'. Choose from 'millisecond', 'second', + * 'minute', 'hour', 'weekday', 'day', 'month', 'year'. + * - A number 'step'. A step size, by default 1. + * Choose for example 1, 2, 5, or 10. + */ + TimeStep.prototype.setScale = function (params) { + if (params && typeof params.scale == 'string') { + this.scale = params.scale; + this.step = params.step > 0 ? params.step : 1; + this.autoScale = false; + } + }; + + /** + * Enable or disable autoscaling + * @param {boolean} enable If true, autoascaling is set true + */ + TimeStep.prototype.setAutoScale = function (enable) { + this.autoScale = enable; + }; + + /** + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in milliseconds + */ + TimeStep.prototype.setMinimumStep = function (minimumStep) { + if (minimumStep == undefined) { + return; + } + + //var b = asc + ds; + + var stepYear = 1000 * 60 * 60 * 24 * 30 * 12; + var stepMonth = 1000 * 60 * 60 * 24 * 30; + var stepDay = 1000 * 60 * 60 * 24; + var stepHour = 1000 * 60 * 60; + var stepMinute = 1000 * 60; + var stepSecond = 1000; + var stepMillisecond = 1; + + // find the smallest step that is larger than the provided minimumStep + if (stepYear * 1000 > minimumStep) { + this.scale = 'year';this.step = 1000; + } + if (stepYear * 500 > minimumStep) { + this.scale = 'year';this.step = 500; + } + if (stepYear * 100 > minimumStep) { + this.scale = 'year';this.step = 100; + } + if (stepYear * 50 > minimumStep) { + this.scale = 'year';this.step = 50; + } + if (stepYear * 10 > minimumStep) { + this.scale = 'year';this.step = 10; + } + if (stepYear * 5 > minimumStep) { + this.scale = 'year';this.step = 5; + } + if (stepYear > minimumStep) { + this.scale = 'year';this.step = 1; + } + if (stepMonth * 3 > minimumStep) { + this.scale = 'month';this.step = 3; + } + if (stepMonth > minimumStep) { + this.scale = 'month';this.step = 1; + } + if (stepDay * 5 > minimumStep) { + this.scale = 'day';this.step = 5; + } + if (stepDay * 2 > minimumStep) { + this.scale = 'day';this.step = 2; + } + if (stepDay > minimumStep) { + this.scale = 'day';this.step = 1; + } + if (stepDay / 2 > minimumStep) { + this.scale = 'weekday';this.step = 1; + } + if (stepHour * 4 > minimumStep) { + this.scale = 'hour';this.step = 4; + } + if (stepHour > minimumStep) { + this.scale = 'hour';this.step = 1; + } + if (stepMinute * 15 > minimumStep) { + this.scale = 'minute';this.step = 15; + } + if (stepMinute * 10 > minimumStep) { + this.scale = 'minute';this.step = 10; + } + if (stepMinute * 5 > minimumStep) { + this.scale = 'minute';this.step = 5; + } + if (stepMinute > minimumStep) { + this.scale = 'minute';this.step = 1; + } + if (stepSecond * 15 > minimumStep) { + this.scale = 'second';this.step = 15; + } + if (stepSecond * 10 > minimumStep) { + this.scale = 'second';this.step = 10; + } + if (stepSecond * 5 > minimumStep) { + this.scale = 'second';this.step = 5; + } + if (stepSecond > minimumStep) { + this.scale = 'second';this.step = 1; + } + if (stepMillisecond * 200 > minimumStep) { + this.scale = 'millisecond';this.step = 200; + } + if (stepMillisecond * 100 > minimumStep) { + this.scale = 'millisecond';this.step = 100; + } + if (stepMillisecond * 50 > minimumStep) { + this.scale = 'millisecond';this.step = 50; + } + if (stepMillisecond * 10 > minimumStep) { + this.scale = 'millisecond';this.step = 10; + } + if (stepMillisecond * 5 > minimumStep) { + this.scale = 'millisecond';this.step = 5; + } + if (stepMillisecond > minimumStep) { + this.scale = 'millisecond';this.step = 1; + } + }; + + /** + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * Static function + * @param {Date} date the date to be snapped. + * @param {string} scale Current scale, can be 'millisecond', 'second', + * 'minute', 'hour', 'weekday, 'day', 'month', 'year'. + * @param {number} step Current step (1, 2, 4, 5, ... + * @return {Date} snappedDate + */ + TimeStep.snap = function (date, scale, step) { + var clone = moment(date); + + if (scale == 'year') { + var year = clone.year() + Math.round(clone.month() / 12); + clone.year(Math.round(year / step) * step); + clone.month(0); + clone.date(0); + clone.hours(0); + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'month') { + if (clone.date() > 15) { + clone.date(1); + clone.add(1, 'month'); + // important: first set Date to 1, after that change the month. + } else { + clone.date(1); + } + + clone.hours(0); + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'day') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 5: + case 2: + clone.hours(Math.round(clone.hours() / 24) * 24);break; + default: + clone.hours(Math.round(clone.hours() / 12) * 12);break; + } + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'weekday') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 5: + case 2: + clone.hours(Math.round(clone.hours() / 12) * 12);break; + default: + clone.hours(Math.round(clone.hours() / 6) * 6);break; + } + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'hour') { + switch (step) { + case 4: + clone.minutes(Math.round(clone.minutes() / 60) * 60);break; + default: + clone.minutes(Math.round(clone.minutes() / 30) * 30);break; + } + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'minute') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 15: + case 10: + clone.minutes(Math.round(clone.minutes() / 5) * 5); + clone.seconds(0); + break; + case 5: + clone.seconds(Math.round(clone.seconds() / 60) * 60);break; + default: + clone.seconds(Math.round(clone.seconds() / 30) * 30);break; + } + clone.milliseconds(0); + } else if (scale == 'second') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 15: + case 10: + clone.seconds(Math.round(clone.seconds() / 5) * 5); + clone.milliseconds(0); + break; + case 5: + clone.milliseconds(Math.round(clone.milliseconds() / 1000) * 1000);break; + default: + clone.milliseconds(Math.round(clone.milliseconds() / 500) * 500);break; + } + } else if (scale == 'millisecond') { + var _step = step > 5 ? step / 2 : 1; + clone.milliseconds(Math.round(clone.milliseconds() / _step) * _step); + } + + return clone; + }; + + /** + * Check if the current value is a major value (for example when the step + * is DAY, a major value is each first day of the MONTH) + * @return {boolean} true if current date is major, else false. + */ + TimeStep.prototype.isMajor = function () { + if (this.switchedYear == true) { + this.switchedYear = false; + switch (this.scale) { + case 'year': + case 'month': + case 'weekday': + case 'day': + case 'hour': + case 'minute': + case 'second': + case 'millisecond': + return true; + default: + return false; + } + } else if (this.switchedMonth == true) { + this.switchedMonth = false; + switch (this.scale) { + case 'weekday': + case 'day': + case 'hour': + case 'minute': + case 'second': + case 'millisecond': + return true; + default: + return false; + } + } else if (this.switchedDay == true) { + this.switchedDay = false; + switch (this.scale) { + case 'millisecond': + case 'second': + case 'minute': + case 'hour': + return true; + default: + return false; + } + } + + var date = this.moment(this.current); + switch (this.scale) { + case 'millisecond': + return date.milliseconds() == 0; + case 'second': + return date.seconds() == 0; + case 'minute': + return date.hours() == 0 && date.minutes() == 0; + case 'hour': + return date.hours() == 0; + case 'weekday': // intentional fall through + case 'day': + return date.date() == 1; + case 'month': + return date.month() == 0; + case 'year': + return false; + default: + return false; + } + }; + + /** + * Returns formatted text for the minor axislabel, depending on the current + * date and the scale. For example when scale is MINUTE, the current time is + * formatted as "hh:mm". + * @param {Date} [date] custom date. if not provided, current date is taken + */ + TimeStep.prototype.getLabelMinor = function (date) { + if (date == undefined) { + date = this.current; + } + + var format = this.format.minorLabels[this.scale]; + return format && format.length > 0 ? this.moment(date).format(format) : ''; + }; + + /** + * Returns formatted text for the major axis label, depending on the current + * date and the scale. For example when scale is MINUTE, the major scale is + * hours, and the hour will be formatted as "hh". + * @param {Date} [date] custom date. if not provided, current date is taken + */ + TimeStep.prototype.getLabelMajor = function (date) { + if (date == undefined) { + date = this.current; + } + + var format = this.format.majorLabels[this.scale]; + return format && format.length > 0 ? this.moment(date).format(format) : ''; + }; + + TimeStep.prototype.getClassName = function () { + var _moment = this.moment; + var m = this.moment(this.current); + var current = m.locale ? m.locale('en') : m.lang('en'); // old versions of moment have .lang() function + var step = this.step; + + function even(value) { + return value / step % 2 == 0 ? ' vis-even' : ' vis-odd'; + } + + function today(date) { + if (date.isSame(new Date(), 'day')) { + return ' vis-today'; + } + if (date.isSame(_moment().add(1, 'day'), 'day')) { + return ' vis-tomorrow'; + } + if (date.isSame(_moment().add(-1, 'day'), 'day')) { + return ' vis-yesterday'; + } + return ''; + } + + function currentWeek(date) { + return date.isSame(new Date(), 'week') ? ' vis-current-week' : ''; + } + + function currentMonth(date) { + return date.isSame(new Date(), 'month') ? ' vis-current-month' : ''; + } + + function currentYear(date) { + return date.isSame(new Date(), 'year') ? ' vis-current-year' : ''; + } + + switch (this.scale) { + case 'millisecond': + return even(current.milliseconds()).trim(); + + case 'second': + return even(current.seconds()).trim(); + + case 'minute': + return even(current.minutes()).trim(); + + case 'hour': + var hours = current.hours(); + if (this.step == 4) { + hours = hours + '-h' + (hours + 4); + } + return 'vis-h' + hours + today(current) + even(current.hours()); + + case 'weekday': + return 'vis-' + current.format('dddd').toLowerCase() + today(current) + currentWeek(current) + even(current.date()); + + case 'day': + var day = current.date(); + var month = current.format('MMMM').toLowerCase(); + return 'vis-day' + day + ' vis-' + month + currentMonth(current) + even(day - 1); + + case 'month': + return 'vis-' + current.format('MMMM').toLowerCase() + currentMonth(current) + even(current.month()); + + case 'year': + var year = current.year(); + return 'vis-year' + year + currentYear(current) + even(year); + + default: + return ''; + } + }; + + module.exports = TimeStep; + +/***/ }, +/* 31 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var stack = __webpack_require__(32); + var RangeItem = __webpack_require__(33); + + /** + * @constructor Group + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet + */ + function Group(groupId, data, itemSet) { + this.groupId = groupId; + this.subgroups = {}; + this.subgroupIndex = 0; + this.subgroupOrderer = data && data.subgroupOrder; + this.itemSet = itemSet; + + this.dom = {}; + this.props = { + label: { + width: 0, + height: 0 + } + }; + this.className = null; + + this.items = {}; // items filtered by groupId of this group + this.visibleItems = []; // items currently visible in window + this.orderedItems = { + byStart: [], + byEnd: [] + }; + this.checkRangedItems = false; // needed to refresh the ranged items if the window is programatically changed with NO overlap. + var me = this; + this.itemSet.body.emitter.on("checkRangedItems", function () { + me.checkRangedItems = true; + }); + + this._create(); + + this.setData(data); + } + + /** + * Create DOM elements for the group + * @private + */ + Group.prototype._create = function () { + var label = document.createElement('div'); + if (this.itemSet.options.groupEditable.order) { + label.className = 'vis-label draggable'; + } else { + label.className = 'vis-label'; + } + this.dom.label = label; + + var inner = document.createElement('div'); + inner.className = 'vis-inner'; + label.appendChild(inner); + this.dom.inner = inner; + + var foreground = document.createElement('div'); + foreground.className = 'vis-group'; + foreground['timeline-group'] = this; + this.dom.foreground = foreground; + + this.dom.background = document.createElement('div'); + this.dom.background.className = 'vis-group'; + + this.dom.axis = document.createElement('div'); + this.dom.axis.className = 'vis-group'; + + // create a hidden marker to detect when the Timelines container is attached + // to the DOM, or the style of a parent of the Timeline is changed from + // display:none is changed to visible. + this.dom.marker = document.createElement('div'); + this.dom.marker.style.visibility = 'hidden'; + this.dom.marker.innerHTML = '?'; + this.dom.background.appendChild(this.dom.marker); + }; + + /** + * Set the group data for this group + * @param {Object} data Group data, can contain properties content and className + */ + Group.prototype.setData = function (data) { + // update contents + var content; + if (this.itemSet.options && this.itemSet.options.groupTemplate) { + content = this.itemSet.options.groupTemplate(data); + } else { + content = data && data.content; + } + + if (content instanceof Element) { + this.dom.inner.appendChild(content); + while (this.dom.inner.firstChild) { + this.dom.inner.removeChild(this.dom.inner.firstChild); + } + this.dom.inner.appendChild(content); + } else if (content !== undefined && content !== null) { + this.dom.inner.innerHTML = content; + } else { + this.dom.inner.innerHTML = this.groupId || ''; // groupId can be null + } + + // update title + this.dom.label.title = data && data.title || ''; + + if (!this.dom.inner.firstChild) { + util.addClassName(this.dom.inner, 'vis-hidden'); + } else { + util.removeClassName(this.dom.inner, 'vis-hidden'); + } + + // update className + var className = data && data.className || null; + if (className != this.className) { + if (this.className) { + util.removeClassName(this.dom.label, this.className); + util.removeClassName(this.dom.foreground, this.className); + util.removeClassName(this.dom.background, this.className); + util.removeClassName(this.dom.axis, this.className); + } + util.addClassName(this.dom.label, className); + util.addClassName(this.dom.foreground, className); + util.addClassName(this.dom.background, className); + util.addClassName(this.dom.axis, className); + this.className = className; + } + + // update style + if (this.style) { + util.removeCssText(this.dom.label, this.style); + this.style = null; + } + if (data && data.style) { + util.addCssText(this.dom.label, data.style); + this.style = data.style; + } + }; + + /** + * Get the width of the group label + * @return {number} width + */ + Group.prototype.getLabelWidth = function () { + return this.props.label.width; + }; + + /** + * Repaint this group + * @param {{start: number, end: number}} range + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @param {boolean} [restack=false] Force restacking of all items + * @return {boolean} Returns true if the group is resized + */ + Group.prototype.redraw = function (range, margin, restack) { + var resized = false; + + // force recalculation of the height of the items when the marker height changed + // (due to the Timeline being attached to the DOM or changed from display:none to visible) + var markerHeight = this.dom.marker.clientHeight; + if (markerHeight != this.lastMarkerHeight) { + this.lastMarkerHeight = markerHeight; + + util.forEach(this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); + }); + + restack = true; + } + + // reposition visible items vertically + if (typeof this.itemSet.options.order === 'function') { + // a custom order function + + if (restack) { + // brute force restack of all items + + // show all items + var me = this; + var limitSize = false; + util.forEach(this.items, function (item) { + if (!item.displayed) { + item.redraw(); + me.visibleItems.push(item); + } + item.repositionX(limitSize); + }); + + // order all items and force a restacking + var customOrderedItems = this.orderedItems.byStart.slice().sort(function (a, b) { + return me.itemSet.options.order(a.data, b.data); + }); + stack.stack(customOrderedItems, margin, true /* restack=true */); + } + + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + } else { + // no custom order function, lazy stacking + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + + if (this.itemSet.options.stack) { + // TODO: ugly way to access options... + stack.stack(this.visibleItems, margin, restack); + } else { + // no stacking + stack.nostack(this.visibleItems, margin, this.subgroups); + } + } + + // recalculate the height of the group + var height = this._calculateHeight(margin); + + // calculate actual size and position + var foreground = this.dom.foreground; + this.top = foreground.offsetTop; + this.left = foreground.offsetLeft; + this.width = foreground.offsetWidth; + resized = util.updateProperty(this, 'height', height) || resized; + + // recalculate size of label + resized = util.updateProperty(this.props.label, 'width', this.dom.inner.clientWidth) || resized; + resized = util.updateProperty(this.props.label, 'height', this.dom.inner.clientHeight) || resized; + + // apply new height + this.dom.background.style.height = height + 'px'; + this.dom.foreground.style.height = height + 'px'; + this.dom.label.style.height = height + 'px'; + + // update vertical position of items after they are re-stacked and the height of the group is calculated + for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { + var item = this.visibleItems[i]; + item.repositionY(margin); + } + + return resized; + }; + + /** + * recalculate the height of the group + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @returns {number} Returns the height + * @private + */ + Group.prototype._calculateHeight = function (margin) { + // recalculate the height of the group + var height; + var visibleItems = this.visibleItems; + //var visibleSubgroups = []; + //this.visibleSubgroups = 0; + this.resetSubgroups(); + var me = this; + if (visibleItems.length > 0) { + var min = visibleItems[0].top; + var max = visibleItems[0].top + visibleItems[0].height; + util.forEach(visibleItems, function (item) { + min = Math.min(min, item.top); + max = Math.max(max, item.top + item.height); + if (item.data.subgroup !== undefined) { + me.subgroups[item.data.subgroup].height = Math.max(me.subgroups[item.data.subgroup].height, item.height); + me.subgroups[item.data.subgroup].visible = true; + } + }); + if (min > margin.axis) { + // there is an empty gap between the lowest item and the axis + var offset = min - margin.axis; + max -= offset; + util.forEach(visibleItems, function (item) { + item.top -= offset; + }); + } + height = max + margin.item.vertical / 2; + } else { + height = 0; + } + height = Math.max(height, this.props.label.height); + + return height; + }; + + /** + * Show this group: attach to the DOM + */ + Group.prototype.show = function () { + if (!this.dom.label.parentNode) { + this.itemSet.dom.labelSet.appendChild(this.dom.label); + } + + if (!this.dom.foreground.parentNode) { + this.itemSet.dom.foreground.appendChild(this.dom.foreground); + } + + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } + + if (!this.dom.axis.parentNode) { + this.itemSet.dom.axis.appendChild(this.dom.axis); + } + }; + + /** + * Hide this group: remove from the DOM + */ + Group.prototype.hide = function () { + var label = this.dom.label; + if (label.parentNode) { + label.parentNode.removeChild(label); + } + + var foreground = this.dom.foreground; + if (foreground.parentNode) { + foreground.parentNode.removeChild(foreground); + } + + var background = this.dom.background; + if (background.parentNode) { + background.parentNode.removeChild(background); + } + + var axis = this.dom.axis; + if (axis.parentNode) { + axis.parentNode.removeChild(axis); + } + }; + + /** + * Add an item to the group + * @param {Item} item + */ + Group.prototype.add = function (item) { + this.items[item.id] = item; + item.setParent(this); + + // add to + if (item.data.subgroup !== undefined) { + if (this.subgroups[item.data.subgroup] === undefined) { + this.subgroups[item.data.subgroup] = { height: 0, visible: false, index: this.subgroupIndex, items: [] }; + this.subgroupIndex++; + } + this.subgroups[item.data.subgroup].items.push(item); + } + this.orderSubgroups(); + + if (this.visibleItems.indexOf(item) == -1) { + var range = this.itemSet.body.range; // TODO: not nice accessing the range like this + this._checkIfVisible(item, this.visibleItems, range); + } + }; + + Group.prototype.orderSubgroups = function () { + if (this.subgroupOrderer !== undefined) { + var sortArray = []; + if (typeof this.subgroupOrderer == 'string') { + for (var subgroup in this.subgroups) { + sortArray.push({ subgroup: subgroup, sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer] }); + } + sortArray.sort(function (a, b) { + return a.sortField - b.sortField; + }); + } else if (typeof this.subgroupOrderer == 'function') { + for (var subgroup in this.subgroups) { + sortArray.push(this.subgroups[subgroup].items[0].data); + } + sortArray.sort(this.subgroupOrderer); + } + + if (sortArray.length > 0) { + for (var i = 0; i < sortArray.length; i++) { + this.subgroups[sortArray[i].subgroup].index = i; + } + } + } + }; + + Group.prototype.resetSubgroups = function () { + for (var subgroup in this.subgroups) { + if (this.subgroups.hasOwnProperty(subgroup)) { + this.subgroups[subgroup].visible = false; + } + } + }; + + /** + * Remove an item from the group + * @param {Item} item + */ + Group.prototype.remove = function (item) { + delete this.items[item.id]; + item.setParent(null); + + // remove from visible items + var index = this.visibleItems.indexOf(item); + if (index != -1) this.visibleItems.splice(index, 1); + + if (item.data.subgroup !== undefined) { + var subgroup = this.subgroups[item.data.subgroup]; + if (subgroup) { + var itemIndex = subgroup.items.indexOf(item); + subgroup.items.splice(itemIndex, 1); + if (!subgroup.items.length) { + delete this.subgroups[item.data.subgroup]; + this.subgroupIndex--; + } + this.orderSubgroups(); + } + } + }; + + /** + * Remove an item from the corresponding DataSet + * @param {Item} item + */ + Group.prototype.removeFromDataSet = function (item) { + this.itemSet.removeItem(item.id); + }; + + /** + * Reorder the items + */ + Group.prototype.order = function () { + var array = util.toArray(this.items); + var startArray = []; + var endArray = []; + + for (var i = 0; i < array.length; i++) { + if (array[i].data.end !== undefined) { + endArray.push(array[i]); + } + startArray.push(array[i]); + } + this.orderedItems = { + byStart: startArray, + byEnd: endArray + }; + + stack.orderByStart(this.orderedItems.byStart); + stack.orderByEnd(this.orderedItems.byEnd); + }; + + /** + * Update the visible items + * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date + * @param {Item[]} visibleItems The previously visible items. + * @param {{start: number, end: number}} range Visible range + * @return {Item[]} visibleItems The new visible items. + * @private + */ + Group.prototype._updateVisibleItems = function (orderedItems, oldVisibleItems, range) { + var visibleItems = []; + var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems + var interval = (range.end - range.start) / 4; + var lowerBound = range.start - interval; + var upperBound = range.end + interval; + var item, i; + + // this function is used to do the binary search. + var searchFunction = function searchFunction(value) { + if (value < lowerBound) { + return -1; + } else if (value <= upperBound) { + return 0; + } else { + return 1; + } + }; + + // first check if the items that were in view previously are still in view. + // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window! + // also cleans up invisible items. + if (oldVisibleItems.length > 0) { + for (i = 0; i < oldVisibleItems.length; i++) { + this._checkIfVisibleWithReference(oldVisibleItems[i], visibleItems, visibleItemsLookup, range); + } + } + + // we do a binary search for the items that have only start values. + var initialPosByStart = util.binarySearchCustom(orderedItems.byStart, searchFunction, 'data', 'start'); + + // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values. + this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, function (item) { + return item.data.start < lowerBound || item.data.start > upperBound; + }); + + // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown. + // We therefore have to brute force check all items in the byEnd list + if (this.checkRangedItems == true) { + this.checkRangedItems = false; + for (i = 0; i < orderedItems.byEnd.length; i++) { + this._checkIfVisibleWithReference(orderedItems.byEnd[i], visibleItems, visibleItemsLookup, range); + } + } else { + // we do a binary search for the items that have defined end times. + var initialPosByEnd = util.binarySearchCustom(orderedItems.byEnd, searchFunction, 'data', 'end'); + + // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values. + this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, function (item) { + return item.data.end < lowerBound || item.data.end > upperBound; + }); + } + + // finally, we reposition all the visible items. + for (i = 0; i < visibleItems.length; i++) { + item = visibleItems[i]; + if (!item.displayed) item.show(); + // reposition item horizontally + item.repositionX(); + } + + // debug + //console.log("new line") + //if (this.groupId == null) { + // for (i = 0; i < orderedItems.byStart.length; i++) { + // item = orderedItems.byStart[i].data; + // console.log('start',i,initialPosByStart, item.start.valueOf(), item.content, item.start >= lowerBound && item.start <= upperBound,i == initialPosByStart ? "<------------------- HEREEEE" : "") + // } + // for (i = 0; i < orderedItems.byEnd.length; i++) { + // item = orderedItems.byEnd[i].data; + // console.log('rangeEnd',i,initialPosByEnd, item.end.valueOf(), item.content, item.end >= range.start && item.end <= range.end,i == initialPosByEnd ? "<------------------- HEREEEE" : "") + // } + //} + + return visibleItems; + }; + + Group.prototype._traceVisible = function (initialPos, items, visibleItems, visibleItemsLookup, breakCondition) { + var item; + var i; + + if (initialPos != -1) { + for (i = initialPos; i >= 0; i--) { + item = items[i]; + if (breakCondition(item)) { + break; + } else { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } + } + + for (i = initialPos + 1; i < items.length; i++) { + item = items[i]; + if (breakCondition(item)) { + break; + } else { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } + } + } + }; + + /** + * this function is very similar to the _checkIfInvisible() but it does not + * return booleans, hides the item if it should not be seen and always adds to + * the visibleItems. + * this one is for brute forcing and hiding. + * + * @param {Item} item + * @param {Array} visibleItems + * @param {{start:number, end:number}} range + * @private + */ + Group.prototype._checkIfVisible = function (item, visibleItems, range) { + if (item.isVisible(range)) { + if (!item.displayed) item.show(); + // reposition item horizontally + item.repositionX(); + visibleItems.push(item); + } else { + if (item.displayed) item.hide(); + } + }; + + /** + * this function is very similar to the _checkIfInvisible() but it does not + * return booleans, hides the item if it should not be seen and always adds to + * the visibleItems. + * this one is for brute forcing and hiding. + * + * @param {Item} item + * @param {Array} visibleItems + * @param {{start:number, end:number}} range + * @private + */ + Group.prototype._checkIfVisibleWithReference = function (item, visibleItems, visibleItemsLookup, range) { + if (item.isVisible(range)) { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } else { + if (item.displayed) item.hide(); + } + }; + + module.exports = Group; + +/***/ }, +/* 32 */ +/***/ function(module, exports) { + + // Utility functions for ordering and stacking of items + 'use strict'; + + var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors + + /** + * Order items by their start data + * @param {Item[]} items + */ + exports.orderByStart = function (items) { + items.sort(function (a, b) { + return a.data.start - b.data.start; + }); + }; + + /** + * Order items by their end date. If they have no end date, their start date + * is used. + * @param {Item[]} items + */ + exports.orderByEnd = function (items) { + items.sort(function (a, b) { + var aTime = 'end' in a.data ? a.data.end : a.data.start, + bTime = 'end' in b.data ? b.data.end : b.data.start; + + return aTime - bTime; + }); + }; + + /** + * Adjust vertical positions of the items such that they don't overlap each + * other. + * @param {Item[]} items + * All visible items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + * @param {boolean} [force=false] + * If true, all items will be repositioned. If false (default), only + * items having a top===null will be re-stacked + */ + exports.stack = function (items, margin, force) { + var i, iMax; + + if (force) { + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + items[i].top = null; + } + } + + // calculate new, non-overlapping positions + for (i = 0, iMax = items.length; i < iMax; i++) { + var item = items[i]; + if (item.stack && item.top === null) { + // initialize top position + item.top = margin.axis; + + do { + // TODO: optimize checking for overlap. when there is a gap without items, + // you only need to check for items from the next item on, not from zero + var collidingItem = null; + for (var j = 0, jj = items.length; j < jj; j++) { + var other = items[j]; + if (other.top !== null && other !== item && other.stack && exports.collision(item, other, margin.item)) { + collidingItem = other; + break; + } + } + + if (collidingItem != null) { + // There is a collision. Reposition the items above the colliding element + item.top = collidingItem.top + collidingItem.height + margin.item.vertical; + } + } while (collidingItem); + } + } + }; + + /** + * Adjust vertical positions of the items without stacking them + * @param {Item[]} items + * All visible items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + */ + exports.nostack = function (items, margin, subgroups) { + var i, iMax, newTop; + + // reset top position of all items + for (i = 0, iMax = items.length; i < iMax; i++) { + if (items[i].data.subgroup !== undefined) { + newTop = margin.axis; + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroups[items[i].data.subgroup].index) { + newTop += subgroups[subgroup].height + margin.item.vertical; + } + } + } + items[i].top = newTop; + } else { + items[i].top = margin.axis; + } + } + }; + + /** + * Test if the two provided items collide + * The items must have parameters left, width, top, and height. + * @param {Item} a The first item + * @param {Item} b The second item + * @param {{horizontal: number, vertical: number}} margin + * An object containing a horizontal and vertical + * minimum required margin. + * @return {boolean} true if a and b collide, else false + */ + exports.collision = function (a, b, margin) { + return a.left - margin.horizontal + EPSILON < b.left + b.width && a.left + a.width + margin.horizontal - EPSILON > b.left && a.top - margin.vertical + EPSILON < b.top + b.height && a.top + a.height + margin.vertical - EPSILON > b.top; + }; + +/***/ }, +/* 33 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Hammer = __webpack_require__(20); + var Item = __webpack_require__(34); + + /** + * @constructor RangeItem + * @extends Item + * @param {Object} data Object containing parameters start, end + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe options + */ + function RangeItem(data, conversion, options) { + this.props = { + content: { + width: 0 + } + }; + this.overflow = false; // if contents can overflow (css styling), this flag is set to true + + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data.id); + } + if (data.end == undefined) { + throw new Error('Property "end" missing in item ' + data.id); + } + } + + Item.call(this, data, conversion, options); + } + + RangeItem.prototype = new Item(null, null, null); + + RangeItem.prototype.baseClassName = 'vis-item vis-range'; + + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + RangeItem.prototype.isVisible = function (range) { + // determine visibility + return this.data.start < range.end && this.data.end > range.start; + }; + + /** + * Repaint the item + */ + RangeItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; + + // background box + dom.box = document.createElement('div'); + // className is updated in redraw() + + // frame box (to prevent the item contents from overflowing + dom.frame = document.createElement('div'); + dom.frame.className = 'vis-item-overflow'; + dom.box.appendChild(dom.frame); + + // contents box + dom.content = document.createElement('div'); + dom.content.className = 'vis-item-content'; + dom.frame.appendChild(dom.content); + + // attach this item as attribute + dom.box['timeline-item'] = this; + + this.dirty = true; + } + + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) { + throw new Error('Cannot redraw item: parent has no foreground container element'); + } + foreground.appendChild(dom.box); + } + this.displayed = true; + + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.box); + this._updateDataAttributes(this.dom.box); + this._updateStyle(this.dom.box); + + var editable = (this.options.editable.updateTime || this.options.editable.updateGroup || this.editable === true) && this.editable !== false; + + // update class + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : '') + (editable ? ' vis-editable' : ' vis-readonly'); + dom.box.className = this.baseClassName + className; + + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.frame).overflow !== 'hidden'; + + // recalculate size + // turn off max-width to be able to calculate the real width + // this causes an extra browser repaint/reflow, but so be it + this.dom.content.style.maxWidth = 'none'; + this.props.content.width = this.dom.content.offsetWidth; + this.height = this.dom.box.offsetHeight; + this.dom.content.style.maxWidth = ''; + + this.dirty = false; + } + + this._repaintDeleteButton(dom.box); + this._repaintDragLeft(); + this._repaintDragRight(); + }; + + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + */ + RangeItem.prototype.show = function () { + if (!this.displayed) { + this.redraw(); + } + }; + + /** + * Hide the item from the DOM (when visible) + * @return {Boolean} changed + */ + RangeItem.prototype.hide = function () { + if (this.displayed) { + var box = this.dom.box; + + if (box.parentNode) { + box.parentNode.removeChild(box); + } + + this.displayed = false; + } + }; + + /** + * Reposition the item horizontally + * @param {boolean} [limitSize=true] If true (default), the width of the range + * item will be limited, as the browser cannot + * display very wide divs. This means though + * that the applied left and width may + * not correspond to the ranges start and end + * @Override + */ + RangeItem.prototype.repositionX = function (limitSize) { + var parentWidth = this.parent.width; + var start = this.conversion.toScreen(this.data.start); + var end = this.conversion.toScreen(this.data.end); + var contentLeft; + var contentWidth; + + // limit the width of the range, as browsers cannot draw very wide divs + if (limitSize === undefined || limitSize === true) { + if (start < -parentWidth) { + start = -parentWidth; + } + if (end > 2 * parentWidth) { + end = 2 * parentWidth; + } + } + var boxWidth = Math.max(end - start, 1); + + if (this.overflow) { + this.left = start; + this.width = boxWidth + this.props.content.width; + contentWidth = this.props.content.width; + + // Note: The calculation of width is an optimistic calculation, giving + // a width which will not change when moving the Timeline + // So no re-stacking needed, which is nicer for the eye; + } else { + this.left = start; + this.width = boxWidth; + contentWidth = Math.min(end - start, this.props.content.width); + } + + this.dom.box.style.left = this.left + 'px'; + this.dom.box.style.width = boxWidth + 'px'; + + switch (this.options.align) { + case 'left': + this.dom.content.style.left = '0'; + break; + + case 'right': + this.dom.content.style.left = Math.max(boxWidth - contentWidth, 0) + 'px'; + break; + + case 'center': + this.dom.content.style.left = Math.max((boxWidth - contentWidth) / 2, 0) + 'px'; + break; + + default: + // 'auto' + // when range exceeds left of the window, position the contents at the left of the visible area + if (this.overflow) { + if (end > 0) { + contentLeft = Math.max(-start, 0); + } else { + contentLeft = -contentWidth; // ensure it's not visible anymore + } + } else { + if (start < 0) { + contentLeft = -start; + } else { + contentLeft = 0; + } + } + this.dom.content.style.left = contentLeft + 'px'; + } + }; + + /** + * Reposition the item vertically + * @Override + */ + RangeItem.prototype.repositionY = function () { + var orientation = this.options.orientation.item; + var box = this.dom.box; + + if (orientation == 'top') { + box.style.top = this.top + 'px'; + } else { + box.style.top = this.parent.height - this.top - this.height + 'px'; + } + }; + + /** + * Repaint a drag area on the left side of the range when the range is selected + * @protected + */ + RangeItem.prototype._repaintDragLeft = function () { + if (this.selected && this.options.editable.updateTime && !this.dom.dragLeft) { + // create and show drag area + var dragLeft = document.createElement('div'); + dragLeft.className = 'vis-drag-left'; + dragLeft.dragLeftItem = this; + + this.dom.box.appendChild(dragLeft); + this.dom.dragLeft = dragLeft; + } else if (!this.selected && this.dom.dragLeft) { + // delete drag area + if (this.dom.dragLeft.parentNode) { + this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft); + } + this.dom.dragLeft = null; + } + }; + + /** + * Repaint a drag area on the right side of the range when the range is selected + * @protected + */ + RangeItem.prototype._repaintDragRight = function () { + if (this.selected && this.options.editable.updateTime && !this.dom.dragRight) { + // create and show drag area + var dragRight = document.createElement('div'); + dragRight.className = 'vis-drag-right'; + dragRight.dragRightItem = this; + + this.dom.box.appendChild(dragRight); + this.dom.dragRight = dragRight; + } else if (!this.selected && this.dom.dragRight) { + // delete drag area + if (this.dom.dragRight.parentNode) { + this.dom.dragRight.parentNode.removeChild(this.dom.dragRight); + } + this.dom.dragRight = null; + } + }; + + module.exports = RangeItem; + +/***/ }, +/* 34 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Hammer = __webpack_require__(20); + var util = __webpack_require__(1); + + /** + * @constructor Item + * @param {Object} data Object containing (optional) parameters type, + * start, end, content, group, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} options Configuration options + * // TODO: describe available options + */ + function Item(data, conversion, options) { + this.id = null; + this.parent = null; + this.data = data; + this.dom = null; + this.conversion = conversion || {}; + this.options = options || {}; + + this.selected = false; + this.displayed = false; + this.dirty = true; + + this.top = null; + this.left = null; + this.width = null; + this.height = null; + + this.editable = null; + if (this.data && this.data.hasOwnProperty('editable') && typeof this.data.editable === 'boolean') { + this.editable = data.editable; + } + } + + Item.prototype.stack = true; + + /** + * Select current item + */ + Item.prototype.select = function () { + this.selected = true; + this.dirty = true; + if (this.displayed) this.redraw(); + }; + + /** + * Unselect current item + */ + Item.prototype.unselect = function () { + this.selected = false; + this.dirty = true; + if (this.displayed) this.redraw(); + }; + + /** + * Set data for the item. Existing data will be updated. The id should not + * be changed. When the item is displayed, it will be redrawn immediately. + * @param {Object} data + */ + Item.prototype.setData = function (data) { + var groupChanged = data.group != undefined && this.data.group != data.group; + if (groupChanged) { + this.parent.itemSet._moveToGroup(this, data.group); + } + + if (data.hasOwnProperty('editable') && typeof data.editable === 'boolean') { + this.editable = data.editable; + } + + this.data = data; + this.dirty = true; + if (this.displayed) this.redraw(); + }; + + /** + * Set a parent for the item + * @param {ItemSet | Group} parent + */ + Item.prototype.setParent = function (parent) { + if (this.displayed) { + this.hide(); + this.parent = parent; + if (this.parent) { + this.show(); + } + } else { + this.parent = parent; + } + }; + + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + Item.prototype.isVisible = function (range) { + // Should be implemented by Item implementations + return false; + }; + + /** + * Show the Item in the DOM (when not already visible) + * @return {Boolean} changed + */ + Item.prototype.show = function () { + return false; + }; + + /** + * Hide the Item from the DOM (when visible) + * @return {Boolean} changed + */ + Item.prototype.hide = function () { + return false; + }; + + /** + * Repaint the item + */ + Item.prototype.redraw = function () { + // should be implemented by the item + }; + + /** + * Reposition the Item horizontally + */ + Item.prototype.repositionX = function () { + // should be implemented by the item + }; + + /** + * Reposition the Item vertically + */ + Item.prototype.repositionY = function () { + // should be implemented by the item + }; + + /** + * Repaint a delete button on the top right of the item when the item is selected + * @param {HTMLElement} anchor + * @protected + */ + Item.prototype._repaintDeleteButton = function (anchor) { + var editable = (this.options.editable.remove || this.data.editable === true) && this.data.editable !== false; + + if (this.selected && editable && !this.dom.deleteButton) { + // create and show button + var me = this; + + var deleteButton = document.createElement('div'); + deleteButton.className = 'vis-delete'; + deleteButton.title = 'Delete this item'; + + // TODO: be able to destroy the delete button + new Hammer(deleteButton).on('tap', function (event) { + event.stopPropagation(); + me.parent.removeFromDataSet(me); + }); + + anchor.appendChild(deleteButton); + this.dom.deleteButton = deleteButton; + } else if (!this.selected && this.dom.deleteButton) { + // remove button + if (this.dom.deleteButton.parentNode) { + this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton); + } + this.dom.deleteButton = null; + } + }; + + /** + * Set HTML contents for the item + * @param {Element} element HTML element to fill with the contents + * @private + */ + Item.prototype._updateContents = function (element) { + var content; + if (this.options.template) { + var itemData = this.parent.itemSet.itemsData.get(this.id); // get a clone of the data from the dataset + content = this.options.template(itemData); + } else { + content = this.data.content; + } + + var changed = this._contentToString(this.content) !== this._contentToString(content); + if (changed) { + // only replace the content when changed + if (content instanceof Element) { + element.innerHTML = ''; + element.appendChild(content); + } else if (content != undefined) { + element.innerHTML = content; + } else { + if (!(this.data.type == 'background' && this.data.content === undefined)) { + throw new Error('Property "content" missing in item ' + this.id); + } + } + + this.content = content; + } + }; + + /** + * Set HTML contents for the item + * @param {Element} element HTML element to fill with the contents + * @private + */ + Item.prototype._updateTitle = function (element) { + if (this.data.title != null) { + element.title = this.data.title || ''; + } else { + element.removeAttribute('vis-title'); + } + }; + + /** + * Process dataAttributes timeline option and set as data- attributes on dom.content + * @param {Element} element HTML element to which the attributes will be attached + * @private + */ + Item.prototype._updateDataAttributes = function (element) { + if (this.options.dataAttributes && this.options.dataAttributes.length > 0) { + var attributes = []; + + if (Array.isArray(this.options.dataAttributes)) { + attributes = this.options.dataAttributes; + } else if (this.options.dataAttributes == 'all') { + attributes = Object.keys(this.data); + } else { + return; + } + + for (var i = 0; i < attributes.length; i++) { + var name = attributes[i]; + var value = this.data[name]; + + if (value != null) { + element.setAttribute('data-' + name, value); + } else { + element.removeAttribute('data-' + name); + } + } + } + }; + + /** + * Update custom styles of the element + * @param element + * @private + */ + Item.prototype._updateStyle = function (element) { + // remove old styles + if (this.style) { + util.removeCssText(element, this.style); + this.style = null; + } + + // append new styles + if (this.data.style) { + util.addCssText(element, this.data.style); + this.style = this.data.style; + } + }; + + /** + * Stringify the items contents + * @param {string | Element | undefined} content + * @returns {string | undefined} + * @private + */ + Item.prototype._contentToString = function (content) { + if (typeof content === 'string') return content; + if (content && 'outerHTML' in content) return content.outerHTML; + return content; + }; + + /** + * Return the width of the item left from its start date + * @return {number} + */ + Item.prototype.getWidthLeft = function () { + return 0; + }; + + /** + * Return the width of the item right from the max of its start and end date + * @return {number} + */ + Item.prototype.getWidthRight = function () { + return 0; + }; + + module.exports = Item; + +/***/ }, +/* 35 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var Group = __webpack_require__(31); + + /** + * @constructor BackgroundGroup + * @param {Number | String} groupId + * @param {Object} data + * @param {ItemSet} itemSet + */ + function BackgroundGroup(groupId, data, itemSet) { + Group.call(this, groupId, data, itemSet); + + this.width = 0; + this.height = 0; + this.top = 0; + this.left = 0; + } + + BackgroundGroup.prototype = Object.create(Group.prototype); + + /** + * Repaint this group + * @param {{start: number, end: number}} range + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @param {boolean} [restack=false] Force restacking of all items + * @return {boolean} Returns true if the group is resized + */ + BackgroundGroup.prototype.redraw = function (range, margin, restack) { + var resized = false; + + this.visibleItems = this._updateVisibleItems(this.orderedItems, this.visibleItems, range); + + // calculate actual size + this.width = this.dom.background.offsetWidth; + + // apply new height (just always zero for BackgroundGroup + this.dom.background.style.height = '0'; + + // update vertical position of items after they are re-stacked and the height of the group is calculated + for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { + var item = this.visibleItems[i]; + item.repositionY(margin); + } + + return resized; + }; + + /** + * Show this group: attach to the DOM + */ + BackgroundGroup.prototype.show = function () { + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } + }; + + module.exports = BackgroundGroup; + +/***/ }, +/* 36 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Item = __webpack_require__(34); + var util = __webpack_require__(1); + + /** + * @constructor BoxItem + * @extends Item + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options + */ + function BoxItem(data, conversion, options) { + this.props = { + dot: { + width: 0, + height: 0 + }, + line: { + width: 0, + height: 0 + } + }; + + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); + } + } + + Item.call(this, data, conversion, options); + } + + BoxItem.prototype = new Item(null, null, null); + + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + BoxItem.prototype.isVisible = function (range) { + // determine visibility + // TODO: account for the real width of the item. Right now we just add 1/4 to the window + var interval = (range.end - range.start) / 4; + return this.data.start > range.start - interval && this.data.start < range.end + interval; + }; + + /** + * Repaint the item + */ + BoxItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; + + // create main box + dom.box = document.createElement('DIV'); + + // contents box (inside the background box). used for making margins + dom.content = document.createElement('DIV'); + dom.content.className = 'vis-item-content'; + dom.box.appendChild(dom.content); + + // line to axis + dom.line = document.createElement('DIV'); + dom.line.className = 'vis-line'; + + // dot on axis + dom.dot = document.createElement('DIV'); + dom.dot.className = 'vis-dot'; + + // attach this item as attribute + dom.box['timeline-item'] = this; + + this.dirty = true; + } + + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) throw new Error('Cannot redraw item: parent has no foreground container element'); + foreground.appendChild(dom.box); + } + if (!dom.line.parentNode) { + var background = this.parent.dom.background; + if (!background) throw new Error('Cannot redraw item: parent has no background container element'); + background.appendChild(dom.line); + } + if (!dom.dot.parentNode) { + var axis = this.parent.dom.axis; + if (!background) throw new Error('Cannot redraw item: parent has no axis container element'); + axis.appendChild(dom.dot); + } + this.displayed = true; + + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.box); + this._updateDataAttributes(this.dom.box); + this._updateStyle(this.dom.box); + + var editable = (this.options.editable.updateTime || this.options.editable.updateGroup || this.editable === true) && this.editable !== false; + + // update class + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : '') + (editable ? ' vis-editable' : ' vis-readonly'); + dom.box.className = 'vis-item vis-box' + className; + dom.line.className = 'vis-item vis-line' + className; + dom.dot.className = 'vis-item vis-dot' + className; + + // recalculate size + this.props.dot.height = dom.dot.offsetHeight; + this.props.dot.width = dom.dot.offsetWidth; + this.props.line.width = dom.line.offsetWidth; + this.width = dom.box.offsetWidth; + this.height = dom.box.offsetHeight; + + this.dirty = false; + } + + this._repaintDeleteButton(dom.box); + }; + + /** + * Show the item in the DOM (when not already displayed). The items DOM will + * be created when needed. + */ + BoxItem.prototype.show = function () { + if (!this.displayed) { + this.redraw(); + } + }; + + /** + * Hide the item from the DOM (when visible) + */ + BoxItem.prototype.hide = function () { + if (this.displayed) { + var dom = this.dom; + + if (dom.box.parentNode) dom.box.parentNode.removeChild(dom.box); + if (dom.line.parentNode) dom.line.parentNode.removeChild(dom.line); + if (dom.dot.parentNode) dom.dot.parentNode.removeChild(dom.dot); + + this.displayed = false; + } + }; + + /** + * Reposition the item horizontally + * @Override + */ + BoxItem.prototype.repositionX = function () { + var start = this.conversion.toScreen(this.data.start); + var align = this.options.align; + var left; + + // calculate left position of the box + if (align == 'right') { + this.left = start - this.width; + } else if (align == 'left') { + this.left = start; + } else { + // default or 'center' + this.left = start - this.width / 2; + } + + // reposition box + this.dom.box.style.left = this.left + 'px'; + + // reposition line + this.dom.line.style.left = start - this.props.line.width / 2 + 'px'; + + // reposition dot + this.dom.dot.style.left = start - this.props.dot.width / 2 + 'px'; + }; + + /** + * Reposition the item vertically + * @Override + */ + BoxItem.prototype.repositionY = function () { + var orientation = this.options.orientation.item; + var box = this.dom.box; + var line = this.dom.line; + var dot = this.dom.dot; + + if (orientation == 'top') { + box.style.top = (this.top || 0) + 'px'; + + line.style.top = '0'; + line.style.height = this.parent.top + this.top + 1 + 'px'; + line.style.bottom = ''; + } else { + // orientation 'bottom' + var itemSetHeight = this.parent.itemSet.props.height; // TODO: this is nasty + var lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top; + + box.style.top = (this.parent.height - this.top - this.height || 0) + 'px'; + line.style.top = itemSetHeight - lineHeight + 'px'; + line.style.bottom = '0'; + } + + dot.style.top = -this.props.dot.height / 2 + 'px'; + }; + + /** + * Return the width of the item left from its start date + * @return {number} + */ + BoxItem.prototype.getWidthLeft = function () { + return this.width / 2; + }; + + /** + * Return the width of the item right from its start date + * @return {number} + */ + BoxItem.prototype.getWidthRight = function () { + return this.width / 2; + }; + + module.exports = BoxItem; + +/***/ }, +/* 37 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Item = __webpack_require__(34); + + /** + * @constructor PointItem + * @extends Item + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options + */ + function PointItem(data, conversion, options) { + this.props = { + dot: { + top: 0, + width: 0, + height: 0 + }, + content: { + height: 0, + marginLeft: 0 + } + }; + + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data); + } + } + + Item.call(this, data, conversion, options); + } + + PointItem.prototype = new Item(null, null, null); + + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + PointItem.prototype.isVisible = function (range) { + // determine visibility + // TODO: account for the real width of the item. Right now we just add 1/4 to the window + var interval = (range.end - range.start) / 4; + return this.data.start > range.start - interval && this.data.start < range.end + interval; + }; + + /** + * Repaint the item + */ + PointItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; + + // background box + dom.point = document.createElement('div'); + // className is updated in redraw() + + // contents box, right from the dot + dom.content = document.createElement('div'); + dom.content.className = 'vis-item-content'; + dom.point.appendChild(dom.content); + + // dot at start + dom.dot = document.createElement('div'); + dom.point.appendChild(dom.dot); + + // attach this item as attribute + dom.point['timeline-item'] = this; + + this.dirty = true; + } + + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.point.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) { + throw new Error('Cannot redraw item: parent has no foreground container element'); + } + foreground.appendChild(dom.point); + } + this.displayed = true; + + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.point); + this._updateDataAttributes(this.dom.point); + this._updateStyle(this.dom.point); + + var editable = (this.options.editable.updateTime || this.options.editable.updateGroup || this.editable === true) && this.editable !== false; + + // update class + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : '') + (editable ? ' vis-editable' : ' vis-readonly'); + dom.point.className = 'vis-item vis-point' + className; + dom.dot.className = 'vis-item vis-dot' + className; + + // recalculate size of dot and contents + this.props.dot.width = dom.dot.offsetWidth; + this.props.dot.height = dom.dot.offsetHeight; + this.props.content.height = dom.content.offsetHeight; + + // resize contents + dom.content.style.marginLeft = 2 * this.props.dot.width + 'px'; + //dom.content.style.marginRight = ... + 'px'; // TODO: margin right + + dom.dot.style.top = (this.height - this.props.dot.height) / 2 + 'px'; + dom.dot.style.left = this.props.dot.width / 2 + 'px'; + + // recalculate size + this.width = dom.point.offsetWidth; + this.height = dom.point.offsetHeight; + + this.dirty = false; + } + + this._repaintDeleteButton(dom.point); + }; + + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + */ + PointItem.prototype.show = function () { + if (!this.displayed) { + this.redraw(); + } + }; + + /** + * Hide the item from the DOM (when visible) + */ + PointItem.prototype.hide = function () { + if (this.displayed) { + if (this.dom.point.parentNode) { + this.dom.point.parentNode.removeChild(this.dom.point); + } + + this.displayed = false; + } + }; + + /** + * Reposition the item horizontally + * @Override + */ + PointItem.prototype.repositionX = function () { + var start = this.conversion.toScreen(this.data.start); + + this.left = start - this.props.dot.width; + + // reposition point + this.dom.point.style.left = this.left + 'px'; + }; + + /** + * Reposition the item vertically + * @Override + */ + PointItem.prototype.repositionY = function () { + var orientation = this.options.orientation.item; + var point = this.dom.point; + + if (orientation == 'top') { + point.style.top = this.top + 'px'; + } else { + point.style.top = this.parent.height - this.top - this.height + 'px'; + } + }; + + /** + * Return the width of the item left from its start date + * @return {number} + */ + PointItem.prototype.getWidthLeft = function () { + return this.props.dot.width; + }; + + /** + * Return the width of the item right from its start date + * @return {number} + */ + PointItem.prototype.getWidthRight = function () { + return this.width - this.props.dot.width; + }; + + module.exports = PointItem; + +/***/ }, +/* 38 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Hammer = __webpack_require__(20); + var Item = __webpack_require__(34); + var BackgroundGroup = __webpack_require__(35); + var RangeItem = __webpack_require__(33); + + /** + * @constructor BackgroundItem + * @extends Item + * @param {Object} data Object containing parameters start, end + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe options + */ + // TODO: implement support for the BackgroundItem just having a start, then being displayed as a sort of an annotation + function BackgroundItem(data, conversion, options) { + this.props = { + content: { + width: 0 + } + }; + this.overflow = false; // if contents can overflow (css styling), this flag is set to true + + // validate data + if (data) { + if (data.start == undefined) { + throw new Error('Property "start" missing in item ' + data.id); + } + if (data.end == undefined) { + throw new Error('Property "end" missing in item ' + data.id); + } + } + + Item.call(this, data, conversion, options); + } + + BackgroundItem.prototype = new Item(null, null, null); + + BackgroundItem.prototype.baseClassName = 'vis-item vis-background'; + BackgroundItem.prototype.stack = false; + + /** + * Check whether this item is visible inside given range + * @returns {{start: Number, end: Number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + BackgroundItem.prototype.isVisible = function (range) { + // determine visibility + return this.data.start < range.end && this.data.end > range.start; + }; + + /** + * Repaint the item + */ + BackgroundItem.prototype.redraw = function () { + var dom = this.dom; + if (!dom) { + // create DOM + this.dom = {}; + dom = this.dom; + + // background box + dom.box = document.createElement('div'); + // className is updated in redraw() + + // frame box (to prevent the item contents from overflowing + dom.frame = document.createElement('div'); + dom.frame.className = 'vis-item-overflow'; + dom.box.appendChild(dom.frame); + + // contents box + dom.content = document.createElement('div'); + dom.content.className = 'vis-item-content'; + dom.frame.appendChild(dom.content); + + // Note: we do NOT attach this item as attribute to the DOM, + // such that background items cannot be selected + //dom.box['timeline-item'] = this; + + this.dirty = true; + } + + // append DOM to parent DOM + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + if (!dom.box.parentNode) { + var background = this.parent.dom.background; + if (!background) { + throw new Error('Cannot redraw item: parent has no background container element'); + } + background.appendChild(dom.box); + } + this.displayed = true; + + // Update DOM when item is marked dirty. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + this._updateTitle(this.dom.content); + this._updateDataAttributes(this.dom.content); + this._updateStyle(this.dom.box); + + // update class + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : ''); + dom.box.className = this.baseClassName + className; + + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(dom.content).overflow !== 'hidden'; + + // recalculate size + this.props.content.width = this.dom.content.offsetWidth; + this.height = 0; // set height zero, so this item will be ignored when stacking items + + this.dirty = false; + } + }; + + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + */ + BackgroundItem.prototype.show = RangeItem.prototype.show; + + /** + * Hide the item from the DOM (when visible) + * @return {Boolean} changed + */ + BackgroundItem.prototype.hide = RangeItem.prototype.hide; + + /** + * Reposition the item horizontally + * @Override + */ + BackgroundItem.prototype.repositionX = RangeItem.prototype.repositionX; + + /** + * Reposition the item vertically + * @Override + */ + BackgroundItem.prototype.repositionY = function (margin) { + var onTop = this.options.orientation.item === 'top'; + this.dom.content.style.top = onTop ? '' : '0'; + this.dom.content.style.bottom = onTop ? '0' : ''; + var height; + + // special positioning for subgroups + if (this.data.subgroup !== undefined) { + // TODO: instead of calculating the top position of the subgroups here for every BackgroundItem, calculate the top of the subgroup once in Itemset + + var itemSubgroup = this.data.subgroup; + var subgroups = this.parent.subgroups; + var subgroupIndex = subgroups[itemSubgroup].index; + // if the orientation is top, we need to take the difference in height into account. + if (onTop == true) { + // the first subgroup will have to account for the distance from the top to the first item. + height = this.parent.subgroups[itemSubgroup].height + margin.item.vertical; + height += subgroupIndex == 0 ? margin.axis - 0.5 * margin.item.vertical : 0; + var newTop = this.parent.top; + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroupIndex) { + newTop += subgroups[subgroup].height + margin.item.vertical; + } + } + } + + // the others will have to be offset downwards with this same distance. + newTop += subgroupIndex != 0 ? margin.axis - 0.5 * margin.item.vertical : 0; + this.dom.box.style.top = newTop + 'px'; + this.dom.box.style.bottom = ''; + } + // and when the orientation is bottom: + else { + var newTop = this.parent.top; + var totalHeight = 0; + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + if (subgroups[subgroup].visible == true) { + var newHeight = subgroups[subgroup].height + margin.item.vertical; + totalHeight += newHeight; + if (subgroups[subgroup].index > subgroupIndex) { + newTop += newHeight; + } + } + } + } + height = this.parent.subgroups[itemSubgroup].height + margin.item.vertical; + this.dom.box.style.top = this.parent.height - totalHeight + newTop + 'px'; + this.dom.box.style.bottom = ''; + } + } + // and in the case of no subgroups: + else { + // we want backgrounds with groups to only show in groups. + if (this.parent instanceof BackgroundGroup) { + // if the item is not in a group: + height = Math.max(this.parent.height, this.parent.itemSet.body.domProps.center.height, this.parent.itemSet.body.domProps.centerContainer.height); + this.dom.box.style.top = onTop ? '0' : ''; + this.dom.box.style.bottom = onTop ? '' : '0'; + } else { + height = this.parent.height; + // same alignment for items when orientation is top or bottom + this.dom.box.style.top = this.parent.top + 'px'; + this.dom.box.style.bottom = ''; + } + } + this.dom.box.style.height = height + 'px'; + }; + + module.exports = BackgroundItem; + +/***/ }, +/* 39 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var Component = __webpack_require__(26); + var TimeStep = __webpack_require__(30); + var DateUtil = __webpack_require__(27); + var moment = __webpack_require__(2); + + /** + * A horizontal time axis + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body + * @param {Object} [options] See TimeAxis.setOptions for the available + * options. + * @constructor TimeAxis + * @extends Component + */ + function TimeAxis(body, options) { + this.dom = { + foreground: null, + lines: [], + majorTexts: [], + minorTexts: [], + redundant: { + lines: [], + majorTexts: [], + minorTexts: [] + } + }; + this.props = { + range: { + start: 0, + end: 0, + minimumStep: 0 + }, + lineTop: 0 + }; + + this.defaultOptions = { + orientation: { + axis: 'bottom' + }, // axis orientation: 'top' or 'bottom' + showMinorLabels: true, + showMajorLabels: true, + format: TimeStep.FORMAT, + moment: moment, + timeAxis: null + }; + this.options = util.extend({}, this.defaultOptions); + + this.body = body; + + // create the HTML DOM + this._create(); + + this.setOptions(options); + } + + TimeAxis.prototype = new Component(); + + /** + * Set options for the TimeAxis. + * Parameters will be merged in current options. + * @param {Object} options Available options: + * {string} [orientation.axis] + * {boolean} [showMinorLabels] + * {boolean} [showMajorLabels] + */ + TimeAxis.prototype.setOptions = function (options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showMinorLabels', 'showMajorLabels', 'hiddenDates', 'timeAxis', 'moment'], this.options, options); + + // deep copy the format options + util.selectiveDeepExtend(['format'], this.options, options); + + if ('orientation' in options) { + if (typeof options.orientation === 'string') { + this.options.orientation.axis = options.orientation; + } else if (typeof options.orientation === 'object' && 'axis' in options.orientation) { + this.options.orientation.axis = options.orientation.axis; + } + } + + // apply locale to moment.js + // TODO: not so nice, this is applied globally to moment.js + if ('locale' in options) { + if (typeof moment.locale === 'function') { + // moment.js 2.8.1+ + moment.locale(options.locale); + } else { + moment.lang(options.locale); + } + } + } + }; + + /** + * Create the HTML DOM for the TimeAxis + */ + TimeAxis.prototype._create = function () { + this.dom.foreground = document.createElement('div'); + this.dom.background = document.createElement('div'); + + this.dom.foreground.className = 'vis-time-axis vis-foreground'; + this.dom.background.className = 'vis-time-axis vis-background'; + }; + + /** + * Destroy the TimeAxis + */ + TimeAxis.prototype.destroy = function () { + // remove from DOM + if (this.dom.foreground.parentNode) { + this.dom.foreground.parentNode.removeChild(this.dom.foreground); + } + if (this.dom.background.parentNode) { + this.dom.background.parentNode.removeChild(this.dom.background); + } + + this.body = null; + }; + + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + TimeAxis.prototype.redraw = function () { + var props = this.props; + var foreground = this.dom.foreground; + var background = this.dom.background; + + // determine the correct parent DOM element (depending on option orientation) + var parent = this.options.orientation.axis == 'top' ? this.body.dom.top : this.body.dom.bottom; + var parentChanged = foreground.parentNode !== parent; + + // calculate character width and height + this._calculateCharSize(); + + // TODO: recalculate sizes only needed when parent is resized or options is changed + var showMinorLabels = this.options.showMinorLabels && this.options.orientation.axis !== 'none'; + var showMajorLabels = this.options.showMajorLabels && this.options.orientation.axis !== 'none'; + + // determine the width and height of the elemens for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + props.height = props.minorLabelHeight + props.majorLabelHeight; + props.width = foreground.offsetWidth; + + props.minorLineHeight = this.body.domProps.root.height - props.majorLabelHeight - (this.options.orientation.axis == 'top' ? this.body.domProps.bottom.height : this.body.domProps.top.height); + props.minorLineWidth = 1; // TODO: really calculate width + props.majorLineHeight = props.minorLineHeight + props.majorLabelHeight; + props.majorLineWidth = 1; // TODO: really calculate width + + // take foreground and background offline while updating (is almost twice as fast) + var foregroundNextSibling = foreground.nextSibling; + var backgroundNextSibling = background.nextSibling; + foreground.parentNode && foreground.parentNode.removeChild(foreground); + background.parentNode && background.parentNode.removeChild(background); + + foreground.style.height = this.props.height + 'px'; + + this._repaintLabels(); + + // put DOM online again (at the same place) + if (foregroundNextSibling) { + parent.insertBefore(foreground, foregroundNextSibling); + } else { + parent.appendChild(foreground); + } + if (backgroundNextSibling) { + this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling); + } else { + this.body.dom.backgroundVertical.appendChild(background); + } + + return this._isResized() || parentChanged; + }; + + /** + * Repaint major and minor text labels and vertical grid lines + * @private + */ + TimeAxis.prototype._repaintLabels = function () { + var orientation = this.options.orientation.axis; + + // calculate range and step (step such that we have space for 7 characters per label) + var start = util.convert(this.body.range.start, 'Number'); + var end = util.convert(this.body.range.end, 'Number'); + var timeLabelsize = this.body.util.toTime((this.props.minorCharWidth || 10) * 7).valueOf(); + var minimumStep = timeLabelsize - DateUtil.getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this.body.range, timeLabelsize); + minimumStep -= this.body.util.toTime(0).valueOf(); + + var step = new TimeStep(new Date(start), new Date(end), minimumStep, this.body.hiddenDates); + step.setMoment(this.options.moment); + if (this.options.format) { + step.setFormat(this.options.format); + } + if (this.options.timeAxis) { + step.setScale(this.options.timeAxis); + } + this.step = step; + + // Move all DOM elements to a "redundant" list, where they + // can be picked for re-use, and clear the lists with lines and texts. + // At the end of the function _repaintLabels, left over elements will be cleaned up + var dom = this.dom; + dom.redundant.lines = dom.lines; + dom.redundant.majorTexts = dom.majorTexts; + dom.redundant.minorTexts = dom.minorTexts; + dom.lines = []; + dom.majorTexts = []; + dom.minorTexts = []; + + var current; + var next; + var x; + var xNext; + var isMajor; + var width; + var line; + var labelMinor; + var xFirstMajorLabel = undefined; + var max = 0; + var className; + + step.start(); + next = step.getCurrent(); + xNext = this.body.util.toScreen(next); + while (step.hasNext() && max < 1000) { + max++; + + isMajor = step.isMajor(); + className = step.getClassName(); + labelMinor = step.getLabelMinor(); + + current = next; + x = xNext; + + step.next(); + next = step.getCurrent(); + xNext = this.body.util.toScreen(next); + + width = xNext - x; + var labelFits = (labelMinor.length + 1) * this.props.minorCharWidth < width; + + if (this.options.showMinorLabels && labelFits) { + this._repaintMinorText(x, labelMinor, orientation, className); + } + + if (isMajor && this.options.showMajorLabels) { + if (x > 0) { + if (xFirstMajorLabel == undefined) { + xFirstMajorLabel = x; + } + this._repaintMajorText(x, step.getLabelMajor(), orientation, className); + } + line = this._repaintMajorLine(x, width, orientation, className); + } else { + if (labelFits) { + line = this._repaintMinorLine(x, width, orientation, className); + } else { + if (line) { + line.style.width = parseInt(line.style.width) + width + 'px'; + } + } + } + } + + // create a major label on the left when needed + if (this.options.showMajorLabels) { + var leftTime = this.body.util.toTime(0), + leftText = step.getLabelMajor(leftTime), + widthText = leftText.length * (this.props.majorCharWidth || 10) + 10; // upper bound estimation + + if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { + this._repaintMajorText(0, leftText, orientation, className); + } + } + + // Cleanup leftover DOM elements from the redundant list + util.forEach(this.dom.redundant, function (arr) { + while (arr.length) { + var elem = arr.pop(); + if (elem && elem.parentNode) { + elem.parentNode.removeChild(elem); + } + } + }); + }; + + /** + * Create a minor label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className + * @return {Element} Returns the HTML element of the created label + * @private + */ + TimeAxis.prototype._repaintMinorText = function (x, text, orientation, className) { + // reuse redundant label + var label = this.dom.redundant.minorTexts.shift(); + + if (!label) { + // create new label + var content = document.createTextNode(''); + label = document.createElement('div'); + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + this.dom.minorTexts.push(label); + + label.childNodes[0].nodeValue = text; + + label.style.top = orientation == 'top' ? this.props.majorLabelHeight + 'px' : '0'; + label.style.left = x + 'px'; + label.className = 'vis-text vis-minor ' + className; + //label.title = title; // TODO: this is a heavy operation + + return label; + }; + + /** + * Create a Major label for the axis at position x + * @param {Number} x + * @param {String} text + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className + * @return {Element} Returns the HTML element of the created label + * @private + */ + TimeAxis.prototype._repaintMajorText = function (x, text, orientation, className) { + // reuse redundant label + var label = this.dom.redundant.majorTexts.shift(); + + if (!label) { + // create label + var content = document.createTextNode(text); + label = document.createElement('div'); + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + this.dom.majorTexts.push(label); + + label.childNodes[0].nodeValue = text; + label.className = 'vis-text vis-major ' + className; + //label.title = title; // TODO: this is a heavy operation + + label.style.top = orientation == 'top' ? '0' : this.props.minorLabelHeight + 'px'; + label.style.left = x + 'px'; + + return label; + }; + + /** + * Create a minor line for the axis at position x + * @param {Number} x + * @param {Number} width + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className + * @return {Element} Returns the created line + * @private + */ + TimeAxis.prototype._repaintMinorLine = function (x, width, orientation, className) { + // reuse redundant line + var line = this.dom.redundant.lines.shift(); + if (!line) { + // create vertical line + line = document.createElement('div'); + this.dom.background.appendChild(line); + } + this.dom.lines.push(line); + + var props = this.props; + if (orientation == 'top') { + line.style.top = props.majorLabelHeight + 'px'; + } else { + line.style.top = this.body.domProps.top.height + 'px'; + } + line.style.height = props.minorLineHeight + 'px'; + line.style.left = x - props.minorLineWidth / 2 + 'px'; + line.style.width = width + 'px'; + + line.className = 'vis-grid vis-vertical vis-minor ' + className; + + return line; + }; + + /** + * Create a Major line for the axis at position x + * @param {Number} x + * @param {Number} width + * @param {String} orientation "top" or "bottom" (default) + * @param {String} className + * @return {Element} Returns the created line + * @private + */ + TimeAxis.prototype._repaintMajorLine = function (x, width, orientation, className) { + // reuse redundant line + var line = this.dom.redundant.lines.shift(); + if (!line) { + // create vertical line + line = document.createElement('div'); + this.dom.background.appendChild(line); + } + this.dom.lines.push(line); + + var props = this.props; + if (orientation == 'top') { + line.style.top = '0'; + } else { + line.style.top = this.body.domProps.top.height + 'px'; + } + line.style.left = x - props.majorLineWidth / 2 + 'px'; + line.style.height = props.majorLineHeight + 'px'; + line.style.width = width + 'px'; + + line.className = 'vis-grid vis-vertical vis-major ' + className; + + return line; + }; + + /** + * Determine the size of text on the axis (both major and minor axis). + * The size is calculated only once and then cached in this.props. + * @private + */ + TimeAxis.prototype._calculateCharSize = function () { + // Note: We calculate char size with every redraw. Size may change, for + // example when any of the timelines parents had display:none for example. + + // determine the char width and height on the minor axis + if (!this.dom.measureCharMinor) { + this.dom.measureCharMinor = document.createElement('DIV'); + this.dom.measureCharMinor.className = 'vis-text vis-minor vis-measure'; + this.dom.measureCharMinor.style.position = 'absolute'; + + this.dom.measureCharMinor.appendChild(document.createTextNode('0')); + this.dom.foreground.appendChild(this.dom.measureCharMinor); + } + this.props.minorCharHeight = this.dom.measureCharMinor.clientHeight; + this.props.minorCharWidth = this.dom.measureCharMinor.clientWidth; + + // determine the char width and height on the major axis + if (!this.dom.measureCharMajor) { + this.dom.measureCharMajor = document.createElement('DIV'); + this.dom.measureCharMajor.className = 'vis-text vis-major vis-measure'; + this.dom.measureCharMajor.style.position = 'absolute'; + + this.dom.measureCharMajor.appendChild(document.createTextNode('0')); + this.dom.foreground.appendChild(this.dom.measureCharMajor); + } + this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight; + this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth; + }; + + module.exports = TimeAxis; + +/***/ }, +/* 40 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var keycharm = __webpack_require__(41); + var Emitter = __webpack_require__(12); + var Hammer = __webpack_require__(20); + var util = __webpack_require__(1); + + /** + * Turn an element into an clickToUse element. + * When not active, the element has a transparent overlay. When the overlay is + * clicked, the mode is changed to active. + * When active, the element is displayed with a blue border around it, and + * the interactive contents of the element can be used. When clicked outside + * the element, the elements mode is changed to inactive. + * @param {Element} container + * @constructor + */ + function Activator(container) { + this.active = false; + + this.dom = { + container: container + }; + + this.dom.overlay = document.createElement('div'); + this.dom.overlay.className = 'vis-overlay'; + + this.dom.container.appendChild(this.dom.overlay); + + this.hammer = Hammer(this.dom.overlay); + this.hammer.on('tap', this._onTapOverlay.bind(this)); + + // block all touch events (except tap) + var me = this; + var events = ['tap', 'doubletap', 'press', 'pinch', 'pan', 'panstart', 'panmove', 'panend']; + events.forEach(function (event) { + me.hammer.on(event, function (event) { + event.stopPropagation(); + }); + }); + + // attach a click event to the window, in order to deactivate when clicking outside the timeline + if (document && document.body) { + this.onClick = function (event) { + if (!_hasParent(event.target, container)) { + me.deactivate(); + } + }; + document.body.addEventListener('click', this.onClick); + } + + if (this.keycharm !== undefined) { + this.keycharm.destroy(); + } + this.keycharm = keycharm(); + + // keycharm listener only bounded when active) + this.escListener = this.deactivate.bind(this); + } + + // turn into an event emitter + Emitter(Activator.prototype); + + // The currently active activator + Activator.current = null; + + /** + * Destroy the activator. Cleans up all created DOM and event listeners + */ + Activator.prototype.destroy = function () { + this.deactivate(); + + // remove dom + this.dom.overlay.parentNode.removeChild(this.dom.overlay); + + // remove global event listener + if (this.onClick) { + document.body.removeEventListener('click', this.onClick); + } + + // cleanup hammer instances + this.hammer.destroy(); + this.hammer = null; + // FIXME: cleaning up hammer instances doesn't work (Timeline not removed from memory) + }; + + /** + * Activate the element + * Overlay is hidden, element is decorated with a blue shadow border + */ + Activator.prototype.activate = function () { + // we allow only one active activator at a time + if (Activator.current) { + Activator.current.deactivate(); + } + Activator.current = this; + + this.active = true; + this.dom.overlay.style.display = 'none'; + util.addClassName(this.dom.container, 'vis-active'); + + this.emit('change'); + this.emit('activate'); + + // ugly hack: bind ESC after emitting the events, as the Network rebinds all + // keyboard events on a 'change' event + this.keycharm.bind('esc', this.escListener); + }; + + /** + * Deactivate the element + * Overlay is displayed on top of the element + */ + Activator.prototype.deactivate = function () { + this.active = false; + this.dom.overlay.style.display = ''; + util.removeClassName(this.dom.container, 'vis-active'); + this.keycharm.unbind('esc', this.escListener); + + this.emit('change'); + this.emit('deactivate'); + }; + + /** + * Handle a tap event: activate the container + * @param event + * @private + */ + Activator.prototype._onTapOverlay = function (event) { + // activate the container + this.activate(); + event.stopPropagation(); + }; + + /** + * Test whether the element has the requested parent element somewhere in + * its chain of parent nodes. + * @param {HTMLElement} element + * @param {HTMLElement} parent + * @returns {boolean} Returns true when the parent is found somewhere in the + * chain of parent nodes. + * @private + */ + function _hasParent(element, parent) { + while (element) { + if (element === parent) { + return true; + } + element = element.parentNode; + } + return false; + } + + module.exports = Activator; + +/***/ }, +/* 41 */ +/***/ function(module, exports, __webpack_require__) { + + var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;"use strict"; + /** + * Created by Alex on 11/6/2014. + */ + + // https://github.com/umdjs/umd/blob/master/returnExports.js#L40-L60 + // if the module has no dependencies, the above pattern can be simplified to + (function (root, factory) { + if (true) { + // AMD. Register as an anonymous module. + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } else if (typeof exports === 'object') { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(); + } else { + // Browser globals (root is window) + root.keycharm = factory(); + } + }(this, function () { + + function keycharm(options) { + var preventDefault = options && options.preventDefault || false; + + var container = options && options.container || window; + + var _exportFunctions = {}; + var _bound = {keydown:{}, keyup:{}}; + var _keys = {}; + var i; + + // a - z + for (i = 97; i <= 122; i++) {_keys[String.fromCharCode(i)] = {code:65 + (i - 97), shift: false};} + // A - Z + for (i = 65; i <= 90; i++) {_keys[String.fromCharCode(i)] = {code:i, shift: true};} + // 0 - 9 + for (i = 0; i <= 9; i++) {_keys['' + i] = {code:48 + i, shift: false};} + // F1 - F12 + for (i = 1; i <= 12; i++) {_keys['F' + i] = {code:111 + i, shift: false};} + // num0 - num9 + for (i = 0; i <= 9; i++) {_keys['num' + i] = {code:96 + i, shift: false};} + + // numpad misc + _keys['num*'] = {code:106, shift: false}; + _keys['num+'] = {code:107, shift: false}; + _keys['num-'] = {code:109, shift: false}; + _keys['num/'] = {code:111, shift: false}; + _keys['num.'] = {code:110, shift: false}; + // arrows + _keys['left'] = {code:37, shift: false}; + _keys['up'] = {code:38, shift: false}; + _keys['right'] = {code:39, shift: false}; + _keys['down'] = {code:40, shift: false}; + // extra keys + _keys['space'] = {code:32, shift: false}; + _keys['enter'] = {code:13, shift: false}; + _keys['shift'] = {code:16, shift: undefined}; + _keys['esc'] = {code:27, shift: false}; + _keys['backspace'] = {code:8, shift: false}; + _keys['tab'] = {code:9, shift: false}; + _keys['ctrl'] = {code:17, shift: false}; + _keys['alt'] = {code:18, shift: false}; + _keys['delete'] = {code:46, shift: false}; + _keys['pageup'] = {code:33, shift: false}; + _keys['pagedown'] = {code:34, shift: false}; + // symbols + _keys['='] = {code:187, shift: false}; + _keys['-'] = {code:189, shift: false}; + _keys[']'] = {code:221, shift: false}; + _keys['['] = {code:219, shift: false}; + + + + var down = function(event) {handleEvent(event,'keydown');}; + var up = function(event) {handleEvent(event,'keyup');}; + + // handle the actualy bound key with the event + var handleEvent = function(event,type) { + if (_bound[type][event.keyCode] !== undefined) { + var bound = _bound[type][event.keyCode]; + for (var i = 0; i < bound.length; i++) { + if (bound[i].shift === undefined) { + bound[i].fn(event); + } + else if (bound[i].shift == true && event.shiftKey == true) { + bound[i].fn(event); + } + else if (bound[i].shift == false && event.shiftKey == false) { + bound[i].fn(event); + } + } + + if (preventDefault == true) { + event.preventDefault(); + } + } + }; + + // bind a key to a callback + _exportFunctions.bind = function(key, callback, type) { + if (type === undefined) { + type = 'keydown'; + } + if (_keys[key] === undefined) { + throw new Error("unsupported key: " + key); + } + if (_bound[type][_keys[key].code] === undefined) { + _bound[type][_keys[key].code] = []; + } + _bound[type][_keys[key].code].push({fn:callback, shift:_keys[key].shift}); + }; + + + // bind all keys to a call back (demo purposes) + _exportFunctions.bindAll = function(callback, type) { + if (type === undefined) { + type = 'keydown'; + } + for (var key in _keys) { + if (_keys.hasOwnProperty(key)) { + _exportFunctions.bind(key,callback,type); + } + } + }; + + // get the key label from an event + _exportFunctions.getKey = function(event) { + for (var key in _keys) { + if (_keys.hasOwnProperty(key)) { + if (event.shiftKey == true && _keys[key].shift == true && event.keyCode == _keys[key].code) { + return key; + } + else if (event.shiftKey == false && _keys[key].shift == false && event.keyCode == _keys[key].code) { + return key; + } + else if (event.keyCode == _keys[key].code && key == 'shift') { + return key; + } + } + } + return "unknown key, currently not supported"; + }; + + // unbind either a specific callback from a key or all of them (by leaving callback undefined) + _exportFunctions.unbind = function(key, callback, type) { + if (type === undefined) { + type = 'keydown'; + } + if (_keys[key] === undefined) { + throw new Error("unsupported key: " + key); + } + if (callback !== undefined) { + var newBindings = []; + var bound = _bound[type][_keys[key].code]; + if (bound !== undefined) { + for (var i = 0; i < bound.length; i++) { + if (!(bound[i].fn == callback && bound[i].shift == _keys[key].shift)) { + newBindings.push(_bound[type][_keys[key].code][i]); + } + } + } + _bound[type][_keys[key].code] = newBindings; + } + else { + _bound[type][_keys[key].code] = []; + } + }; + + // reset all bound variables. + _exportFunctions.reset = function() { + _bound = {keydown:{}, keyup:{}}; + }; + + // unbind all listeners and reset all variables. + _exportFunctions.destroy = function() { + _bound = {keydown:{}, keyup:{}}; + container.removeEventListener('keydown', down, true); + container.removeEventListener('keyup', up, true); + }; + + // create listeners. + container.addEventListener('keydown',down,true); + container.addEventListener('keyup',up,true); + + // return the public functions. + return _exportFunctions; + } + + return keycharm; + })); + + + + +/***/ }, +/* 42 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Hammer = __webpack_require__(20); + var util = __webpack_require__(1); + var Component = __webpack_require__(26); + var moment = __webpack_require__(2); + var locales = __webpack_require__(43); + + /** + * A custom time bar + * @param {{range: Range, dom: Object}} body + * @param {Object} [options] Available parameters: + * {number | string} id + * {string} locales + * {string} locale + * @constructor CustomTime + * @extends Component + */ + + function CustomTime(body, options) { + this.body = body; + + // default options + this.defaultOptions = { + moment: moment, + locales: locales, + locale: 'en', + id: undefined + }; + this.options = util.extend({}, this.defaultOptions); + + if (options && options.time) { + this.customTime = options.time; + } else { + this.customTime = new Date(); + } + + this.eventParams = {}; // stores state parameters while dragging the bar + + this.setOptions(options); + + // create the DOM + this._create(); + } + + CustomTime.prototype = new Component(); + + /** + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {number | string} id + * {string} locales + * {string} locale + */ + CustomTime.prototype.setOptions = function (options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['moment', 'locale', 'locales', 'id'], this.options, options); + } + }; + + /** + * Create the DOM for the custom time + * @private + */ + CustomTime.prototype._create = function () { + var bar = document.createElement('div'); + bar['custom-time'] = this; + bar.className = 'vis-custom-time ' + (this.options.id || ''); + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; + this.bar = bar; + + var drag = document.createElement('div'); + drag.style.position = 'relative'; + drag.style.top = '0px'; + drag.style.left = '-10px'; + drag.style.height = '100%'; + drag.style.width = '20px'; + bar.appendChild(drag); + + // attach event listeners + this.hammer = new Hammer(drag); + this.hammer.on('panstart', this._onDragStart.bind(this)); + this.hammer.on('panmove', this._onDrag.bind(this)); + this.hammer.on('panend', this._onDragEnd.bind(this)); + this.hammer.get('pan').set({ threshold: 5, direction: 30 }); // 30 is ALL_DIRECTIONS in hammer. + }; + + /** + * Destroy the CustomTime bar + */ + CustomTime.prototype.destroy = function () { + this.hide(); + + this.hammer.destroy(); + this.hammer = null; + + this.body = null; + }; + + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + CustomTime.prototype.redraw = function () { + var parent = this.body.dom.backgroundVertical; + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + parent.appendChild(this.bar); + } + + var x = this.body.util.toScreen(this.customTime); + + var locale = this.options.locales[this.options.locale]; + if (!locale) { + if (!this.warned) { + console.log('WARNING: options.locales[\'' + this.options.locale + '\'] not found. See http://visjs.org/docs/timeline.html#Localization'); + this.warned = true; + } + locale = this.options.locales['en']; // fall back on english when not available + } + + var title = locale.time + ': ' + this.options.moment(this.customTime).format('dddd, MMMM Do YYYY, H:mm:ss'); + title = title.charAt(0).toUpperCase() + title.substring(1); + + this.bar.style.left = x + 'px'; + this.bar.title = title; + + return false; + }; + + /** + * Remove the CustomTime from the DOM + */ + CustomTime.prototype.hide = function () { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + }; + + /** + * Set custom time. + * @param {Date | number | string} time + */ + CustomTime.prototype.setCustomTime = function (time) { + this.customTime = util.convert(time, 'Date'); + this.redraw(); + }; + + /** + * Retrieve the current custom time. + * @return {Date} customTime + */ + CustomTime.prototype.getCustomTime = function () { + return new Date(this.customTime.valueOf()); + }; + + /** + * Start moving horizontally + * @param {Event} event + * @private + */ + CustomTime.prototype._onDragStart = function (event) { + this.eventParams.dragging = true; + this.eventParams.customTime = this.customTime; + + event.stopPropagation(); + }; + + /** + * Perform moving operating. + * @param {Event} event + * @private + */ + CustomTime.prototype._onDrag = function (event) { + if (!this.eventParams.dragging) return; + + var x = this.body.util.toScreen(this.eventParams.customTime) + event.deltaX; + var time = this.body.util.toTime(x); + + this.setCustomTime(time); + + // fire a timechange event + this.body.emitter.emit('timechange', { + id: this.options.id, + time: new Date(this.customTime.valueOf()) + }); + + event.stopPropagation(); + }; + + /** + * Stop moving operating. + * @param {Event} event + * @private + */ + CustomTime.prototype._onDragEnd = function (event) { + if (!this.eventParams.dragging) return; + + // fire a timechanged event + this.body.emitter.emit('timechanged', { + id: this.options.id, + time: new Date(this.customTime.valueOf()) + }); + + event.stopPropagation(); + }; + + /** + * Find a custom time from an event target: + * searches for the attribute 'custom-time' in the event target's element tree + * @param {Event} event + * @return {CustomTime | null} customTime + */ + CustomTime.customTimeFromTarget = function (event) { + var target = event.target; + while (target) { + if (target.hasOwnProperty('custom-time')) { + return target['custom-time']; + } + target = target.parentNode; + } + + return null; + }; + + module.exports = CustomTime; + +/***/ }, +/* 43 */ +/***/ function(module, exports) { + + // English + 'use strict'; + + exports['en'] = { + current: 'current', + time: 'time' + }; + exports['en_EN'] = exports['en']; + exports['en_US'] = exports['en']; + + // Dutch + exports['nl'] = { + current: 'huidige', + time: 'tijd' + }; + exports['nl_NL'] = exports['nl']; + exports['nl_BE'] = exports['nl']; + +/***/ }, +/* 44 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var Component = __webpack_require__(26); + var moment = __webpack_require__(2); + var locales = __webpack_require__(43); + + /** + * A current time bar + * @param {{range: Range, dom: Object, domProps: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCurrentTime] + * @constructor CurrentTime + * @extends Component + */ + function CurrentTime(body, options) { + this.body = body; + + // default options + this.defaultOptions = { + showCurrentTime: true, + + moment: moment, + locales: locales, + locale: 'en' + }; + this.options = util.extend({}, this.defaultOptions); + this.offset = 0; + + this._create(); + + this.setOptions(options); + } + + CurrentTime.prototype = new Component(); + + /** + * Create the HTML DOM for the current time bar + * @private + */ + CurrentTime.prototype._create = function () { + var bar = document.createElement('div'); + bar.className = 'vis-current-time'; + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; + + this.bar = bar; + }; + + /** + * Destroy the CurrentTime bar + */ + CurrentTime.prototype.destroy = function () { + this.options.showCurrentTime = false; + this.redraw(); // will remove the bar from the DOM and stop refreshing + + this.body = null; + }; + + /** + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCurrentTime] + */ + CurrentTime.prototype.setOptions = function (options) { + if (options) { + // copy all options that we know + util.selectiveExtend(['showCurrentTime', 'moment', 'locale', 'locales'], this.options, options); + } + }; + + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + CurrentTime.prototype.redraw = function () { + if (this.options.showCurrentTime) { + var parent = this.body.dom.backgroundVertical; + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + parent.appendChild(this.bar); + + this.start(); + } + + var now = this.options.moment(new Date().valueOf() + this.offset); + var x = this.body.util.toScreen(now); + + var locale = this.options.locales[this.options.locale]; + if (!locale) { + if (!this.warned) { + console.log('WARNING: options.locales[\'' + this.options.locale + '\'] not found. See http://visjs.org/docs/timeline.html#Localization'); + this.warned = true; + } + locale = this.options.locales['en']; // fall back on english when not available + } + var title = locale.current + ' ' + locale.time + ': ' + now.format('dddd, MMMM Do YYYY, H:mm:ss'); + title = title.charAt(0).toUpperCase() + title.substring(1); + + this.bar.style.left = x + 'px'; + this.bar.title = title; + } else { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + this.stop(); + } + + return false; + }; + + /** + * Start auto refreshing the current time bar + */ + CurrentTime.prototype.start = function () { + var me = this; + + function update() { + me.stop(); + + // determine interval to refresh + var scale = me.body.range.conversion(me.body.domProps.center.width).scale; + var interval = 1 / scale / 10; + if (interval < 30) interval = 30; + if (interval > 1000) interval = 1000; + + me.redraw(); + + // start a renderTimer to adjust for the new time + me.currentTimeTimer = setTimeout(update, interval); + } + + update(); + }; + + /** + * Stop auto refreshing the current time bar + */ + CurrentTime.prototype.stop = function () { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + delete this.currentTimeTimer; + } + }; + + /** + * Set a current time. This can be used for example to ensure that a client's + * time is synchronized with a shared server time. + * @param {Date | String | Number} time A Date, unix timestamp, or + * ISO date string. + */ + CurrentTime.prototype.setCurrentTime = function (time) { + var t = util.convert(time, 'Date').valueOf(); + var now = new Date().valueOf(); + this.offset = t - now; + this.redraw(); + }; + + /** + * Get the current time. + * @return {Date} Returns the current time. + */ + CurrentTime.prototype.getCurrentTime = function () { + return new Date(new Date().valueOf() + this.offset); + }; + + module.exports = CurrentTime; + +/***/ }, +/* 45 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _ColorPicker = __webpack_require__(46); + + var _ColorPicker2 = _interopRequireDefault(_ColorPicker); + + /** + * The way this works is for all properties of this.possible options, you can supply the property name in any form to list the options. + * Boolean options are recognised as Boolean + * Number options should be written as array: [default value, min value, max value, stepsize] + * Colors should be written as array: ['color', '#ffffff'] + * Strings with should be written as array: [option1, option2, option3, ..] + * + * The options are matched with their counterparts in each of the modules and the values used in the configuration are + * + * @param parentModule | the location where parentModule.setOptions() can be called + * @param defaultContainer | the default container of the module + * @param configureOptions | the fully configured and predefined options set found in allOptions.js + * @param pixelRatio | canvas pixel ratio + */ + var util = __webpack_require__(1); + + var Configurator = (function () { + function Configurator(parentModule, defaultContainer, configureOptions) { + var pixelRatio = arguments.length <= 3 || arguments[3] === undefined ? 1 : arguments[3]; + + _classCallCheck(this, Configurator); + + this.parent = parentModule; + this.changedOptions = []; + this.container = defaultContainer; + this.allowCreation = false; + + this.options = {}; + this.initialized = false; + this.popupCounter = 0; + this.defaultOptions = { + enabled: false, + filter: true, + container: undefined, + showButton: true + }; + util.extend(this.options, this.defaultOptions); + + this.configureOptions = configureOptions; + this.moduleOptions = {}; + this.domElements = []; + this.popupDiv = {}; + this.popupLimit = 5; + this.popupHistory = {}; + this.colorPicker = new _ColorPicker2['default'](pixelRatio); + this.wrapper = undefined; + } + + /** + * refresh all options. + * Because all modules parse their options by themselves, we just use their options. We copy them here. + * + * @param options + */ + + _createClass(Configurator, [{ + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) { + // reset the popup history because the indices may have been changed. + this.popupHistory = {}; + this._removePopup(); + + var enabled = true; + if (typeof options === 'string') { + this.options.filter = options; + } else if (options instanceof Array) { + this.options.filter = options.join(); + } else if (typeof options === 'object') { + if (options.container !== undefined) { + this.options.container = options.container; + } + if (options.filter !== undefined) { + this.options.filter = options.filter; + } + if (options.showButton !== undefined) { + this.options.showButton = options.showButton; + } + if (options.enabled !== undefined) { + enabled = options.enabled; + } + } else if (typeof options === 'boolean') { + this.options.filter = true; + enabled = options; + } else if (typeof options === 'function') { + this.options.filter = options; + enabled = true; + } + if (this.options.filter === false) { + enabled = false; + } + + this.options.enabled = enabled; + } + this._clean(); + } + }, { + key: 'setModuleOptions', + value: function setModuleOptions(moduleOptions) { + this.moduleOptions = moduleOptions; + if (this.options.enabled === true) { + this._clean(); + if (this.options.container !== undefined) { + this.container = this.options.container; + } + this._create(); + } + } + + /** + * Create all DOM elements + * @private + */ + }, { + key: '_create', + value: function _create() { + var _this = this; + + this._clean(); + this.changedOptions = []; + + var filter = this.options.filter; + var counter = 0; + var show = false; + for (var option in this.configureOptions) { + if (this.configureOptions.hasOwnProperty(option)) { + this.allowCreation = false; + show = false; + if (typeof filter === 'function') { + show = filter(option, []); + show = show || this._handleObject(this.configureOptions[option], [option], true); + } else if (filter === true || filter.indexOf(option) !== -1) { + show = true; + } + + if (show !== false) { + this.allowCreation = true; + + // linebreak between categories + if (counter > 0) { + this._makeItem([]); + } + // a header for the category + this._makeHeader(option); + + // get the suboptions + this._handleObject(this.configureOptions[option], [option]); + } + counter++; + } + } + + if (this.options.showButton === true) { + (function () { + var generateButton = document.createElement('div'); + generateButton.className = 'vis-configuration vis-config-button'; + generateButton.innerHTML = 'generate options'; + generateButton.onclick = function () { + _this._printOptions(); + }; + generateButton.onmouseover = function () { + generateButton.className = 'vis-configuration vis-config-button hover'; + }; + generateButton.onmouseout = function () { + generateButton.className = 'vis-configuration vis-config-button'; + }; + + _this.optionsContainer = document.createElement('div'); + _this.optionsContainer.className = 'vis-configuration vis-config-option-container'; + + _this.domElements.push(_this.optionsContainer); + _this.domElements.push(generateButton); + })(); + } + + this._push(); + this.colorPicker.insertTo(this.container); + } + + /** + * draw all DOM elements on the screen + * @private + */ + }, { + key: '_push', + value: function _push() { + this.wrapper = document.createElement('div'); + this.wrapper.className = 'vis-configuration-wrapper'; + this.container.appendChild(this.wrapper); + for (var i = 0; i < this.domElements.length; i++) { + this.wrapper.appendChild(this.domElements[i]); + } + + this._showPopupIfNeeded(); + } + + /** + * delete all DOM elements + * @private + */ + }, { + key: '_clean', + value: function _clean() { + for (var i = 0; i < this.domElements.length; i++) { + this.wrapper.removeChild(this.domElements[i]); + } + + if (this.wrapper !== undefined) { + this.container.removeChild(this.wrapper); + this.wrapper = undefined; + } + this.domElements = []; + + this._removePopup(); + } + + /** + * get the value from the actualOptions if it exists + * @param {array} path | where to look for the actual option + * @returns {*} + * @private + */ + }, { + key: '_getValue', + value: function _getValue(path) { + var base = this.moduleOptions; + for (var i = 0; i < path.length; i++) { + if (base[path[i]] !== undefined) { + base = base[path[i]]; + } else { + base = undefined; + break; + } + } + return base; + } + + /** + * all option elements are wrapped in an item + * @param path + * @param domElements + * @private + */ + }, { + key: '_makeItem', + value: function _makeItem(path) { + var _arguments = arguments, + _this2 = this; + + if (this.allowCreation === true) { + var _len, domElements, _key; + + var _ret2 = (function () { + var item = document.createElement('div'); + item.className = 'vis-configuration vis-config-item vis-config-s' + path.length; + + for (_len = _arguments.length, domElements = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + domElements[_key - 1] = _arguments[_key]; + } + + domElements.forEach(function (element) { + item.appendChild(element); + }); + _this2.domElements.push(item); + return { + v: _this2.domElements.length + }; + })(); + + if (typeof _ret2 === 'object') return _ret2.v; + } + return 0; + } + + /** + * header for major subjects + * @param name + * @private + */ + }, { + key: '_makeHeader', + value: function _makeHeader(name) { + var div = document.createElement('div'); + div.className = 'vis-configuration vis-config-header'; + div.innerHTML = name; + this._makeItem([], div); + } + + /** + * make a label, if it is an object label, it gets different styling. + * @param name + * @param path + * @param objectLabel + * @returns {HTMLElement} + * @private + */ + }, { + key: '_makeLabel', + value: function _makeLabel(name, path) { + var objectLabel = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + + var div = document.createElement('div'); + div.className = 'vis-configuration vis-config-label vis-config-s' + path.length; + if (objectLabel === true) { + div.innerHTML = '' + name + ':'; + } else { + div.innerHTML = name + ':'; + } + return div; + } + + /** + * make a dropdown list for multiple possible string optoins + * @param arr + * @param value + * @param path + * @private + */ + }, { + key: '_makeDropdown', + value: function _makeDropdown(arr, value, path) { + var select = document.createElement('select'); + select.className = 'vis-configuration vis-config-select'; + var selectedValue = 0; + if (value !== undefined) { + if (arr.indexOf(value) !== -1) { + selectedValue = arr.indexOf(value); + } + } + + for (var i = 0; i < arr.length; i++) { + var option = document.createElement('option'); + option.value = arr[i]; + if (i === selectedValue) { + option.selected = 'selected'; + } + option.innerHTML = arr[i]; + select.appendChild(option); + } + + var me = this; + select.onchange = function () { + me._update(this.value, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + this._makeItem(path, label, select); + } + + /** + * make a range object for numeric options + * @param arr + * @param value + * @param path + * @private + */ + }, { + key: '_makeRange', + value: function _makeRange(arr, value, path) { + var defaultValue = arr[0]; + var min = arr[1]; + var max = arr[2]; + var step = arr[3]; + var range = document.createElement('input'); + range.className = 'vis-configuration vis-config-range'; + try { + range.type = 'range'; // not supported on IE9 + range.min = min; + range.max = max; + } catch (err) {} + range.step = step; + + // set up the popup settings in case they are needed. + var popupString = ''; + var popupValue = 0; + + if (value !== undefined) { + var factor = 1.20; + if (value < 0 && value * factor < min) { + range.min = Math.ceil(value * factor); + popupValue = range.min; + popupString = 'range increased'; + } else if (value / factor < min) { + range.min = Math.ceil(value / factor); + popupValue = range.min; + popupString = 'range increased'; + } + if (value * factor > max && max !== 1) { + range.max = Math.ceil(value * factor); + popupValue = range.max; + popupString = 'range increased'; + } + range.value = value; + } else { + range.value = defaultValue; + } + + var input = document.createElement('input'); + input.className = 'vis-configuration vis-config-rangeinput'; + input.value = range.value; + + var me = this; + range.onchange = function () { + input.value = this.value;me._update(Number(this.value), path); + }; + range.oninput = function () { + input.value = this.value; + }; + + var label = this._makeLabel(path[path.length - 1], path); + var itemIndex = this._makeItem(path, label, range, input); + + // if a popup is needed AND it has not been shown for this value, show it. + if (popupString !== '' && this.popupHistory[itemIndex] !== popupValue) { + this.popupHistory[itemIndex] = popupValue; + this._setupPopup(popupString, itemIndex); + } + } + + /** + * prepare the popup + * @param string + * @param index + * @private + */ + }, { + key: '_setupPopup', + value: function _setupPopup(string, index) { + var _this3 = this; + + if (this.initialized === true && this.allowCreation === true && this.popupCounter < this.popupLimit) { + var div = document.createElement("div"); + div.id = "vis-configuration-popup"; + div.className = "vis-configuration-popup"; + div.innerHTML = string; + div.onclick = function () { + _this3._removePopup(); + }; + this.popupCounter += 1; + this.popupDiv = { html: div, index: index }; + } + } + + /** + * remove the popup from the dom + * @private + */ + }, { + key: '_removePopup', + value: function _removePopup() { + if (this.popupDiv.html !== undefined) { + this.popupDiv.html.parentNode.removeChild(this.popupDiv.html); + clearTimeout(this.popupDiv.hideTimeout); + clearTimeout(this.popupDiv.deleteTimeout); + this.popupDiv = {}; + } + } + + /** + * Show the popup if it is needed. + * @private + */ + }, { + key: '_showPopupIfNeeded', + value: function _showPopupIfNeeded() { + var _this4 = this; + + if (this.popupDiv.html !== undefined) { + var correspondingElement = this.domElements[this.popupDiv.index]; + var rect = correspondingElement.getBoundingClientRect(); + this.popupDiv.html.style.left = rect.left + "px"; + this.popupDiv.html.style.top = rect.top - 30 + "px"; // 30 is the height; + document.body.appendChild(this.popupDiv.html); + this.popupDiv.hideTimeout = setTimeout(function () { + _this4.popupDiv.html.style.opacity = 0; + }, 1500); + this.popupDiv.deleteTimeout = setTimeout(function () { + _this4._removePopup(); + }, 1800); + } + } + + /** + * make a checkbox for boolean options. + * @param defaultValue + * @param value + * @param path + * @private + */ + }, { + key: '_makeCheckbox', + value: function _makeCheckbox(defaultValue, value, path) { + var checkbox = document.createElement('input'); + checkbox.type = 'checkbox'; + checkbox.className = 'vis-configuration vis-config-checkbox'; + checkbox.checked = defaultValue; + if (value !== undefined) { + checkbox.checked = value; + if (value !== defaultValue) { + if (typeof defaultValue === 'object') { + if (value !== defaultValue.enabled) { + this.changedOptions.push({ path: path, value: value }); + } + } else { + this.changedOptions.push({ path: path, value: value }); + } + } + } + + var me = this; + checkbox.onchange = function () { + me._update(this.checked, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + this._makeItem(path, label, checkbox); + } + + /** + * make a text input field for string options. + * @param defaultValue + * @param value + * @param path + * @private + */ + }, { + key: '_makeTextInput', + value: function _makeTextInput(defaultValue, value, path) { + var checkbox = document.createElement('input'); + checkbox.type = 'text'; + checkbox.className = 'vis-configuration vis-config-text'; + checkbox.value = value; + if (value !== defaultValue) { + this.changedOptions.push({ path: path, value: value }); + } + + var me = this; + checkbox.onchange = function () { + me._update(this.value, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + this._makeItem(path, label, checkbox); + } + + /** + * make a color field with a color picker for color fields + * @param arr + * @param value + * @param path + * @private + */ + }, { + key: '_makeColorField', + value: function _makeColorField(arr, value, path) { + var _this5 = this; + + var defaultColor = arr[1]; + var div = document.createElement('div'); + value = value === undefined ? defaultColor : value; + + if (value !== 'none') { + div.className = 'vis-configuration vis-config-colorBlock'; + div.style.backgroundColor = value; + } else { + div.className = 'vis-configuration vis-config-colorBlock none'; + } + + value = value === undefined ? defaultColor : value; + div.onclick = function () { + _this5._showColorPicker(value, div, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + this._makeItem(path, label, div); + } + + /** + * used by the color buttons to call the color picker. + * @param event + * @param value + * @param div + * @param path + * @private + */ + }, { + key: '_showColorPicker', + value: function _showColorPicker(value, div, path) { + var _this6 = this; + + var rect = div.getBoundingClientRect(); + var bodyRect = document.body.getBoundingClientRect(); + var pickerX = rect.left + rect.width + 5; + var pickerY = rect.top - bodyRect.top + rect.height + 2; + this.colorPicker.show(pickerX, pickerY); + this.colorPicker.setColor(value); + this.colorPicker.setCallback(function (color) { + var colorString = 'rgba(' + color.r + ',' + color.g + ',' + color.b + ',' + color.a + ')'; + div.style.backgroundColor = colorString; + _this6._update(colorString, path); + }); + } + + /** + * parse an object and draw the correct items + * @param obj + * @param path + * @private + */ + }, { + key: '_handleObject', + value: function _handleObject(obj) { + var path = arguments.length <= 1 || arguments[1] === undefined ? [] : arguments[1]; + var checkOnly = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + + var show = false; + var filter = this.options.filter; + var visibleInSet = false; + for (var subObj in obj) { + if (obj.hasOwnProperty(subObj)) { + show = true; + var item = obj[subObj]; + var newPath = util.copyAndExtendArray(path, subObj); + if (typeof filter === 'function') { + show = filter(subObj, path); + + // if needed we must go deeper into the object. + if (show === false) { + if (!(item instanceof Array) && typeof item !== 'string' && typeof item !== 'boolean' && item instanceof Object) { + this.allowCreation = false; + show = this._handleObject(item, newPath, true); + this.allowCreation = checkOnly === false; + } + } + } + + if (show !== false) { + visibleInSet = true; + var value = this._getValue(newPath); + + if (item instanceof Array) { + this._handleArray(item, value, newPath); + } else if (typeof item === 'string') { + this._makeTextInput(item, value, newPath); + } else if (typeof item === 'boolean') { + this._makeCheckbox(item, value, newPath); + } else if (item instanceof Object) { + // collapse the physics options that are not enabled + var draw = true; + if (path.indexOf('physics') !== -1) { + if (this.moduleOptions.physics.solver !== subObj) { + draw = false; + } + } + + if (draw === true) { + // initially collapse options with an disabled enabled option. + if (item.enabled !== undefined) { + var enabledPath = util.copyAndExtendArray(newPath, 'enabled'); + var enabledValue = this._getValue(enabledPath); + if (enabledValue === true) { + var label = this._makeLabel(subObj, newPath, true); + this._makeItem(newPath, label); + visibleInSet = this._handleObject(item, newPath) || visibleInSet; + } else { + this._makeCheckbox(item, enabledValue, newPath); + } + } else { + var label = this._makeLabel(subObj, newPath, true); + this._makeItem(newPath, label); + visibleInSet = this._handleObject(item, newPath) || visibleInSet; + } + } + } else { + console.error('dont know how to handle', item, subObj, newPath); + } + } + } + } + return visibleInSet; + } + + /** + * handle the array type of option + * @param optionName + * @param arr + * @param value + * @param path + * @private + */ + }, { + key: '_handleArray', + value: function _handleArray(arr, value, path) { + if (typeof arr[0] === 'string' && arr[0] === 'color') { + this._makeColorField(arr, value, path); + if (arr[1] !== value) { + this.changedOptions.push({ path: path, value: value }); + } + } else if (typeof arr[0] === 'string') { + this._makeDropdown(arr, value, path); + if (arr[0] !== value) { + this.changedOptions.push({ path: path, value: value }); + } + } else if (typeof arr[0] === 'number') { + this._makeRange(arr, value, path); + if (arr[0] !== value) { + this.changedOptions.push({ path: path, value: Number(value) }); + } + } + } + + /** + * called to update the network with the new settings. + * @param value + * @param path + * @private + */ + }, { + key: '_update', + value: function _update(value, path) { + var options = this._constructOptions(value, path); + + if (this.parent.body && this.parent.body.emitter && this.parent.body.emitter.emit) { + this.parent.body.emitter.emit("configChange", options); + } + this.initialized = true; + this.parent.setOptions(options); + } + }, { + key: '_constructOptions', + value: function _constructOptions(value, path) { + var optionsObj = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2]; + + var pointer = optionsObj; + + // when dropdown boxes can be string or boolean, we typecast it into correct types + value = value === 'true' ? true : value; + value = value === 'false' ? false : value; + + for (var i = 0; i < path.length; i++) { + if (path[i] !== 'global') { + if (pointer[path[i]] === undefined) { + pointer[path[i]] = {}; + } + if (i !== path.length - 1) { + pointer = pointer[path[i]]; + } else { + pointer[path[i]] = value; + } + } + } + return optionsObj; + } + }, { + key: '_printOptions', + value: function _printOptions() { + var options = this.getOptions(); + this.optionsContainer.innerHTML = '
var options = ' + JSON.stringify(options, null, 2) + '
'; + } + }, { + key: 'getOptions', + value: function getOptions() { + var options = {}; + for (var i = 0; i < this.changedOptions.length; i++) { + this._constructOptions(this.changedOptions[i].value, this.changedOptions[i].path, options); + } + return options; + } + }]); + + return Configurator; + })(); + + exports['default'] = Configurator; + module.exports = exports['default']; + +/***/ }, +/* 46 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var Hammer = __webpack_require__(20); + var hammerUtil = __webpack_require__(25); + var util = __webpack_require__(1); + + var ColorPicker = (function () { + function ColorPicker() { + var pixelRatio = arguments.length <= 0 || arguments[0] === undefined ? 1 : arguments[0]; + + _classCallCheck(this, ColorPicker); + + this.pixelRatio = pixelRatio; + this.generated = false; + this.centerCoordinates = { x: 289 / 2, y: 289 / 2 }; + this.r = 289 * 0.49; + this.color = { r: 255, g: 255, b: 255, a: 1.0 }; + this.hueCircle = undefined; + this.initialColor = { r: 255, g: 255, b: 255, a: 1.0 }; + this.previousColor = undefined; + this.applied = false; + + // bound by + this.updateCallback = function () {}; + + // create all DOM elements + this._create(); + } + + /** + * this inserts the colorPicker into a div from the DOM + * @param container + */ + + _createClass(ColorPicker, [{ + key: 'insertTo', + value: function insertTo(container) { + if (this.hammer !== undefined) { + this.hammer.destroy(); + this.hammer = undefined; + } + this.container = container; + this.container.appendChild(this.frame); + this._bindHammer(); + + this._setSize(); + } + + /** + * the callback is executed on apply and save. Bind it to the application + * @param callback + */ + }, { + key: 'setCallback', + value: function setCallback(callback) { + if (typeof callback === 'function') { + this.updateCallback = callback; + } else { + throw new Error("Function attempted to set as colorPicker callback is not a function."); + } + } + }, { + key: '_isColorString', + value: function _isColorString(color) { + var htmlColors = { black: '#000000', navy: '#000080', darkblue: '#00008B', mediumblue: '#0000CD', blue: '#0000FF', darkgreen: '#006400', green: '#008000', teal: '#008080', darkcyan: '#008B8B', deepskyblue: '#00BFFF', darkturquoise: '#00CED1', mediumspringgreen: '#00FA9A', lime: '#00FF00', springgreen: '#00FF7F', aqua: '#00FFFF', cyan: '#00FFFF', midnightblue: '#191970', dodgerblue: '#1E90FF', lightseagreen: '#20B2AA', forestgreen: '#228B22', seagreen: '#2E8B57', darkslategray: '#2F4F4F', limegreen: '#32CD32', mediumseagreen: '#3CB371', turquoise: '#40E0D0', royalblue: '#4169E1', steelblue: '#4682B4', darkslateblue: '#483D8B', mediumturquoise: '#48D1CC', indigo: '#4B0082', darkolivegreen: '#556B2F', cadetblue: '#5F9EA0', cornflowerblue: '#6495ED', mediumaquamarine: '#66CDAA', dimgray: '#696969', slateblue: '#6A5ACD', olivedrab: '#6B8E23', slategray: '#708090', lightslategray: '#778899', mediumslateblue: '#7B68EE', lawngreen: '#7CFC00', chartreuse: '#7FFF00', aquamarine: '#7FFFD4', maroon: '#800000', purple: '#800080', olive: '#808000', gray: '#808080', skyblue: '#87CEEB', lightskyblue: '#87CEFA', blueviolet: '#8A2BE2', darkred: '#8B0000', darkmagenta: '#8B008B', saddlebrown: '#8B4513', darkseagreen: '#8FBC8F', lightgreen: '#90EE90', mediumpurple: '#9370D8', darkviolet: '#9400D3', palegreen: '#98FB98', darkorchid: '#9932CC', yellowgreen: '#9ACD32', sienna: '#A0522D', brown: '#A52A2A', darkgray: '#A9A9A9', lightblue: '#ADD8E6', greenyellow: '#ADFF2F', paleturquoise: '#AFEEEE', lightsteelblue: '#B0C4DE', powderblue: '#B0E0E6', firebrick: '#B22222', darkgoldenrod: '#B8860B', mediumorchid: '#BA55D3', rosybrown: '#BC8F8F', darkkhaki: '#BDB76B', silver: '#C0C0C0', mediumvioletred: '#C71585', indianred: '#CD5C5C', peru: '#CD853F', chocolate: '#D2691E', tan: '#D2B48C', lightgrey: '#D3D3D3', palevioletred: '#D87093', thistle: '#D8BFD8', orchid: '#DA70D6', goldenrod: '#DAA520', 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', red: '#FF0000', fuchsia: '#FF00FF', 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', yellow: '#FFFF00', lightyellow: '#FFFFE0', ivory: '#FFFFF0', white: '#FFFFFF' }; + if (typeof color === 'string') { + return htmlColors[color]; + } + } + + /** + * Set the color of the colorPicker + * Supported formats: + * 'red' --> HTML color string + * '#ffffff' --> hex string + * 'rbg(255,255,255)' --> rgb string + * 'rgba(255,255,255,1.0)' --> rgba string + * {r:255,g:255,b:255} --> rgb object + * {r:255,g:255,b:255,a:1.0} --> rgba object + * @param color + * @param setInitial + */ + }, { + key: 'setColor', + value: function setColor(color) { + var setInitial = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + if (color === 'none') { + return; + } + + var rgba = undefined; + + // if a html color shorthand is used, convert to hex + var htmlColor = this._isColorString(color); + if (htmlColor !== undefined) { + color = htmlColor; + } + + // check format + if (util.isString(color) === true) { + if (util.isValidRGB(color) === true) { + var rgbaArray = color.substr(4).substr(0, color.length - 5).split(','); + rgba = { r: rgbaArray[0], g: rgbaArray[1], b: rgbaArray[2], a: 1.0 }; + } else if (util.isValidRGBA(color) === true) { + var rgbaArray = color.substr(5).substr(0, color.length - 6).split(','); + rgba = { r: rgbaArray[0], g: rgbaArray[1], b: rgbaArray[2], a: rgbaArray[3] }; + } else if (util.isValidHex(color) === true) { + var rgbObj = util.hexToRGB(color); + rgba = { r: rgbObj.r, g: rgbObj.g, b: rgbObj.b, a: 1.0 }; + } + } else { + if (color instanceof Object) { + if (color.r !== undefined && color.g !== undefined && color.b !== undefined) { + var alpha = color.a !== undefined ? color.a : '1.0'; + rgba = { r: color.r, g: color.g, b: color.b, a: alpha }; + } + } + } + + // set color + if (rgba === undefined) { + throw new Error("Unknown color passed to the colorPicker. Supported are strings: rgb, hex, rgba. Object: rgb ({r:r,g:g,b:b,[a:a]}). Supplied: " + JSON.stringify(color)); + } else { + this._setColor(rgba, setInitial); + } + } + + /** + * this shows the color picker at a location. The hue circle is constructed once and stored. + * @param x + * @param y + */ + }, { + key: 'show', + value: function show(x, y) { + this.applied = false; + this.frame.style.display = 'block'; + this.frame.style.top = y + 'px'; + this.frame.style.left = x + 'px'; + this._generateHueCircle(); + } + + // ------------------------------------------ PRIVATE ----------------------------- // + + /** + * Hide the picker. Is called by the cancel button. + * Optional boolean to store the previous color for easy access later on. + * @param storePrevious + * @private + */ + }, { + key: '_hide', + value: function _hide() { + var storePrevious = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0]; + + // store the previous color for next time; + if (storePrevious === true) { + this.previousColor = util.extend({}, this.color); + } + + if (this.applied === true) { + this.updateCallback(this.initialColor); + } + + this.frame.style.display = 'none'; + } + + /** + * bound to the save button. Saves and hides. + * @private + */ + }, { + key: '_save', + value: function _save() { + this.updateCallback(this.color); + this.applied = false; + this._hide(); + } + + /** + * Bound to apply button. Saves but does not close. Is undone by the cancel button. + * @private + */ + }, { + key: '_apply', + value: function _apply() { + this.applied = true; + this.updateCallback(this.color); + this._updatePicker(this.color); + } + + /** + * load the color from the previous session. + * @private + */ + }, { + key: '_loadLast', + value: function _loadLast() { + if (this.previousColor !== undefined) { + this.setColor(this.previousColor, false); + } else { + alert("There is no last color to load..."); + } + } + + /** + * set the color, place the picker + * @param rgba + * @param setInitial + * @private + */ + }, { + key: '_setColor', + value: function _setColor(rgba) { + var setInitial = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + // store the initial color + if (setInitial === true) { + this.initialColor = util.extend({}, rgba); + } + + this.color = rgba; + var hsv = util.RGBToHSV(rgba.r, rgba.g, rgba.b); + + var angleConvert = 2 * Math.PI; + var radius = this.r * hsv.s; + var x = this.centerCoordinates.x + radius * Math.sin(angleConvert * hsv.h); + var y = this.centerCoordinates.y + radius * Math.cos(angleConvert * hsv.h); + + this.colorPickerSelector.style.left = x - 0.5 * this.colorPickerSelector.clientWidth + 'px'; + this.colorPickerSelector.style.top = y - 0.5 * this.colorPickerSelector.clientHeight + 'px'; + + this._updatePicker(rgba); + } + + /** + * bound to opacity control + * @param value + * @private + */ + }, { + key: '_setOpacity', + value: function _setOpacity(value) { + this.color.a = value / 100; + this._updatePicker(this.color); + } + + /** + * bound to brightness control + * @param value + * @private + */ + }, { + key: '_setBrightness', + value: function _setBrightness(value) { + var hsv = util.RGBToHSV(this.color.r, this.color.g, this.color.b); + hsv.v = value / 100; + var rgba = util.HSVToRGB(hsv.h, hsv.s, hsv.v); + rgba['a'] = this.color.a; + this.color = rgba; + this._updatePicker(); + } + + /** + * update the colorpicker. A black circle overlays the hue circle to mimic the brightness decreasing. + * @param rgba + * @private + */ + }, { + key: '_updatePicker', + value: function _updatePicker() { + var rgba = arguments.length <= 0 || arguments[0] === undefined ? this.color : arguments[0]; + + var hsv = util.RGBToHSV(rgba.r, rgba.g, rgba.b); + var ctx = this.colorPickerCanvas.getContext('2d'); + if (this.pixelRation === undefined) { + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + } + ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + + // clear the canvas + var w = this.colorPickerCanvas.clientWidth; + var h = this.colorPickerCanvas.clientHeight; + ctx.clearRect(0, 0, w, h); + + ctx.putImageData(this.hueCircle, 0, 0); + ctx.fillStyle = 'rgba(0,0,0,' + (1 - hsv.v) + ')'; + ctx.circle(this.centerCoordinates.x, this.centerCoordinates.y, this.r); + ctx.fill(); + + this.brightnessRange.value = 100 * hsv.v; + this.opacityRange.value = 100 * rgba.a; + + this.initialColorDiv.style.backgroundColor = 'rgba(' + this.initialColor.r + ',' + this.initialColor.g + ',' + this.initialColor.b + ',' + this.initialColor.a + ')'; + this.newColorDiv.style.backgroundColor = 'rgba(' + this.color.r + ',' + this.color.g + ',' + this.color.b + ',' + this.color.a + ')'; + } + + /** + * used by create to set the size of the canvas. + * @private + */ + }, { + key: '_setSize', + value: function _setSize() { + this.colorPickerCanvas.style.width = '100%'; + this.colorPickerCanvas.style.height = '100%'; + + this.colorPickerCanvas.width = 289 * this.pixelRatio; + this.colorPickerCanvas.height = 289 * this.pixelRatio; + } + + /** + * create all dom elements + * TODO: cleanup, lots of similar dom elements + * @private + */ + }, { + key: '_create', + value: function _create() { + this.frame = document.createElement('div'); + this.frame.className = 'vis-color-picker'; + + this.colorPickerDiv = document.createElement('div'); + this.colorPickerSelector = document.createElement('div'); + this.colorPickerSelector.className = 'vis-selector'; + this.colorPickerDiv.appendChild(this.colorPickerSelector); + + this.colorPickerCanvas = document.createElement('canvas'); + this.colorPickerDiv.appendChild(this.colorPickerCanvas); + + if (!this.colorPickerCanvas.getContext) { + var noCanvas = document.createElement('DIV'); + noCanvas.style.color = 'red'; + noCanvas.style.fontWeight = 'bold'; + noCanvas.style.padding = '10px'; + noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; + this.colorPickerCanvas.appendChild(noCanvas); + } else { + var ctx = this.colorPickerCanvas.getContext("2d"); + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + + this.colorPickerCanvas.getContext("2d").setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + } + + this.colorPickerDiv.className = 'vis-color'; + + this.opacityDiv = document.createElement('div'); + this.opacityDiv.className = 'vis-opacity'; + + this.brightnessDiv = document.createElement('div'); + this.brightnessDiv.className = 'vis-brightness'; + + this.arrowDiv = document.createElement('div'); + this.arrowDiv.className = 'vis-arrow'; + + this.opacityRange = document.createElement('input'); + try { + this.opacityRange.type = 'range'; // Not supported on IE9 + this.opacityRange.min = '0'; + this.opacityRange.max = '100'; + } catch (err) {} + this.opacityRange.value = '100'; + this.opacityRange.className = 'vis-range'; + + this.brightnessRange = document.createElement('input'); + try { + this.brightnessRange.type = 'range'; // Not supported on IE9 + this.brightnessRange.min = '0'; + this.brightnessRange.max = '100'; + } catch (err) {} + this.brightnessRange.value = '100'; + this.brightnessRange.className = 'vis-range'; + + this.opacityDiv.appendChild(this.opacityRange); + this.brightnessDiv.appendChild(this.brightnessRange); + + var me = this; + this.opacityRange.onchange = function () { + me._setOpacity(this.value); + }; + this.opacityRange.oninput = function () { + me._setOpacity(this.value); + }; + this.brightnessRange.onchange = function () { + me._setBrightness(this.value); + }; + this.brightnessRange.oninput = function () { + me._setBrightness(this.value); + }; + + this.brightnessLabel = document.createElement("div"); + this.brightnessLabel.className = "vis-label vis-brightness"; + this.brightnessLabel.innerHTML = 'brightness:'; + + this.opacityLabel = document.createElement("div"); + this.opacityLabel.className = "vis-label vis-opacity"; + this.opacityLabel.innerHTML = 'opacity:'; + + this.newColorDiv = document.createElement("div"); + this.newColorDiv.className = "vis-new-color"; + this.newColorDiv.innerHTML = 'new'; + + this.initialColorDiv = document.createElement("div"); + this.initialColorDiv.className = "vis-initial-color"; + this.initialColorDiv.innerHTML = 'initial'; + + this.cancelButton = document.createElement("div"); + this.cancelButton.className = "vis-button vis-cancel"; + this.cancelButton.innerHTML = 'cancel'; + this.cancelButton.onclick = this._hide.bind(this, false); + + this.applyButton = document.createElement("div"); + this.applyButton.className = "vis-button vis-apply"; + this.applyButton.innerHTML = 'apply'; + this.applyButton.onclick = this._apply.bind(this); + + this.saveButton = document.createElement("div"); + this.saveButton.className = "vis-button vis-save"; + this.saveButton.innerHTML = 'save'; + this.saveButton.onclick = this._save.bind(this); + + this.loadButton = document.createElement("div"); + this.loadButton.className = "vis-button vis-load"; + this.loadButton.innerHTML = 'load last'; + this.loadButton.onclick = this._loadLast.bind(this); + + this.frame.appendChild(this.colorPickerDiv); + this.frame.appendChild(this.arrowDiv); + this.frame.appendChild(this.brightnessLabel); + this.frame.appendChild(this.brightnessDiv); + this.frame.appendChild(this.opacityLabel); + this.frame.appendChild(this.opacityDiv); + this.frame.appendChild(this.newColorDiv); + this.frame.appendChild(this.initialColorDiv); + + this.frame.appendChild(this.cancelButton); + this.frame.appendChild(this.applyButton); + this.frame.appendChild(this.saveButton); + this.frame.appendChild(this.loadButton); + } + + /** + * bind hammer to the color picker + * @private + */ + }, { + key: '_bindHammer', + value: function _bindHammer() { + var _this = this; + + this.drag = {}; + this.pinch = {}; + this.hammer = new Hammer(this.colorPickerCanvas); + this.hammer.get('pinch').set({ enable: true }); + + hammerUtil.onTouch(this.hammer, function (event) { + _this._moveSelector(event); + }); + this.hammer.on('tap', function (event) { + _this._moveSelector(event); + }); + this.hammer.on('panstart', function (event) { + _this._moveSelector(event); + }); + this.hammer.on('panmove', function (event) { + _this._moveSelector(event); + }); + this.hammer.on('panend', function (event) { + _this._moveSelector(event); + }); + } + + /** + * generate the hue circle. This is relatively heavy (200ms) and is done only once on the first time it is shown. + * @private + */ + }, { + key: '_generateHueCircle', + value: function _generateHueCircle() { + if (this.generated === false) { + var ctx = this.colorPickerCanvas.getContext('2d'); + if (this.pixelRation === undefined) { + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + } + ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + + // clear the canvas + var w = this.colorPickerCanvas.clientWidth; + var h = this.colorPickerCanvas.clientHeight; + ctx.clearRect(0, 0, w, h); + + // draw hue circle + var x = undefined, + y = undefined, + hue = undefined, + sat = undefined; + this.centerCoordinates = { x: w * 0.5, y: h * 0.5 }; + this.r = 0.49 * w; + var angleConvert = 2 * Math.PI / 360; + var hfac = 1 / 360; + var sfac = 1 / this.r; + var rgb = undefined; + for (hue = 0; hue < 360; hue++) { + for (sat = 0; sat < this.r; sat++) { + x = this.centerCoordinates.x + sat * Math.sin(angleConvert * hue); + y = this.centerCoordinates.y + sat * Math.cos(angleConvert * hue); + rgb = util.HSVToRGB(hue * hfac, sat * sfac, 1); + ctx.fillStyle = 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')'; + ctx.fillRect(x - 0.5, y - 0.5, 2, 2); + } + } + ctx.strokeStyle = 'rgba(0,0,0,1)'; + ctx.circle(this.centerCoordinates.x, this.centerCoordinates.y, this.r); + ctx.stroke(); + + this.hueCircle = ctx.getImageData(0, 0, w, h); + } + this.generated = true; + } + + /** + * move the selector. This is called by hammer functions. + * + * @param event + * @private + */ + }, { + key: '_moveSelector', + value: function _moveSelector(event) { + var rect = this.colorPickerDiv.getBoundingClientRect(); + var left = event.center.x - rect.left; + var top = event.center.y - rect.top; + + var centerY = 0.5 * this.colorPickerDiv.clientHeight; + var centerX = 0.5 * this.colorPickerDiv.clientWidth; + + var x = left - centerX; + var y = top - centerY; + + var angle = Math.atan2(x, y); + var radius = 0.98 * Math.min(Math.sqrt(x * x + y * y), centerX); + + var newTop = Math.cos(angle) * radius + centerY; + var newLeft = Math.sin(angle) * radius + centerX; + + this.colorPickerSelector.style.top = newTop - 0.5 * this.colorPickerSelector.clientHeight + 'px'; + this.colorPickerSelector.style.left = newLeft - 0.5 * this.colorPickerSelector.clientWidth + 'px'; + + // set color + var h = angle / (2 * Math.PI); + h = h < 0 ? h + 1 : h; + var s = radius / this.r; + var hsv = util.RGBToHSV(this.color.r, this.color.g, this.color.b); + hsv.h = h; + hsv.s = s; + var rgba = util.HSVToRGB(hsv.h, hsv.s, hsv.v); + rgba['a'] = this.color.a; + this.color = rgba; + + // update previews + this.initialColorDiv.style.backgroundColor = 'rgba(' + this.initialColor.r + ',' + this.initialColor.g + ',' + this.initialColor.b + ',' + this.initialColor.a + ')'; + this.newColorDiv.style.backgroundColor = 'rgba(' + this.color.r + ',' + this.color.g + ',' + this.color.b + ',' + this.color.a + ')'; + } + }]); + + return ColorPicker; + })(); + + exports['default'] = ColorPicker; + module.exports = exports['default']; + +/***/ }, +/* 47 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var util = __webpack_require__(1); + + var errorFound = false; + var allOptions = undefined; + var printStyle = 'background: #FFeeee; color: #dd0000'; + /** + * Used to validate options. + */ + + var Validator = (function () { + function Validator() { + _classCallCheck(this, Validator); + } + + /** + * Main function to be called + * @param options + * @param subObject + * @returns {boolean} + */ + + _createClass(Validator, null, [{ + key: 'validate', + value: function validate(options, referenceOptions, subObject) { + errorFound = false; + allOptions = referenceOptions; + var usedOptions = referenceOptions; + if (subObject !== undefined) { + usedOptions = referenceOptions[subObject]; + } + Validator.parse(options, usedOptions, []); + return errorFound; + } + + /** + * Will traverse an object recursively and check every value + * @param options + * @param referenceOptions + * @param path + */ + }, { + key: 'parse', + value: function parse(options, referenceOptions, path) { + for (var option in options) { + if (options.hasOwnProperty(option)) { + Validator.check(option, options, referenceOptions, path); + } + } + } + + /** + * Check every value. If the value is an object, call the parse function on that object. + * @param option + * @param options + * @param referenceOptions + * @param path + */ + }, { + key: 'check', + value: function check(option, options, referenceOptions, path) { + if (referenceOptions[option] === undefined && referenceOptions.__any__ === undefined) { + Validator.getSuggestion(option, referenceOptions, path); + } else if (referenceOptions[option] === undefined && referenceOptions.__any__ !== undefined) { + // __any__ is a wildcard. Any value is accepted and will be further analysed by reference. + if (Validator.getType(options[option]) === 'object' && referenceOptions['__any__'].__type__ !== undefined) { + // if the any subgroup is not a predefined object int he configurator we do not look deeper into the object. + Validator.checkFields(option, options, referenceOptions, '__any__', referenceOptions['__any__'].__type__, path); + } else { + Validator.checkFields(option, options, referenceOptions, '__any__', referenceOptions['__any__'], path); + } + } else { + // Since all options in the reference are objects, we can check whether they are supposed to be object to look for the __type__ field. + if (referenceOptions[option].__type__ !== undefined) { + // if this should be an object, we check if the correct type has been supplied to account for shorthand options. + Validator.checkFields(option, options, referenceOptions, option, referenceOptions[option].__type__, path); + } else { + Validator.checkFields(option, options, referenceOptions, option, referenceOptions[option], path); + } + } + } + + /** + * + * @param {String} option | the option property + * @param {Object} options | The supplied options object + * @param {Object} referenceOptions | The reference options containing all options and their allowed formats + * @param {String} referenceOption | Usually this is the same as option, except when handling an __any__ tag. + * @param {String} refOptionType | This is the type object from the reference options + * @param {Array} path | where in the object is the option + */ + }, { + key: 'checkFields', + value: function checkFields(option, options, referenceOptions, referenceOption, refOptionObj, path) { + var optionType = Validator.getType(options[option]); + var refOptionType = refOptionObj[optionType]; + if (refOptionType !== undefined) { + // if the type is correct, we check if it is supposed to be one of a few select values + if (Validator.getType(refOptionType) === 'array') { + if (refOptionType.indexOf(options[option]) === -1) { + console.log('%cInvalid option detected in "' + option + '".' + ' Allowed values are:' + Validator.print(refOptionType) + ' not "' + options[option] + '". ' + Validator.printLocation(path, option), printStyle); + errorFound = true; + } else if (optionType === 'object' && referenceOption !== "__any__") { + path = util.copyAndExtendArray(path, option); + Validator.parse(options[option], referenceOptions[referenceOption], path); + } + } else if (optionType === 'object' && referenceOption !== "__any__") { + path = util.copyAndExtendArray(path, option); + Validator.parse(options[option], referenceOptions[referenceOption], path); + } + } else if (refOptionObj['any'] === undefined) { + // type of the field is incorrect and the field cannot be any + console.log('%cInvalid type received for "' + option + '". Expected: ' + Validator.print(Object.keys(refOptionObj)) + '. Received [' + optionType + '] "' + options[option] + '"' + Validator.printLocation(path, option), printStyle); + errorFound = true; + } + } + }, { + key: 'getType', + value: function getType(object) { + var type = typeof object; + + if (type === 'object') { + if (object === null) { + return 'null'; + } + if (object instanceof Boolean) { + return 'boolean'; + } + if (object instanceof Number) { + return 'number'; + } + if (object instanceof String) { + return 'string'; + } + if (Array.isArray(object)) { + return 'array'; + } + if (object instanceof Date) { + return 'date'; + } + if (object.nodeType !== undefined) { + return 'dom'; + } + if (object._isAMomentObject === true) { + return 'moment'; + } + return 'object'; + } else if (type === 'number') { + return 'number'; + } else if (type === 'boolean') { + return 'boolean'; + } else if (type === 'string') { + return 'string'; + } else if (type === undefined) { + return 'undefined'; + } + return type; + } + }, { + key: 'getSuggestion', + value: function getSuggestion(option, options, path) { + var localSearch = Validator.findInOptions(option, options, path, false); + var globalSearch = Validator.findInOptions(option, allOptions, [], true); + + var localSearchThreshold = 8; + var globalSearchThreshold = 4; + + if (localSearch.indexMatch !== undefined) { + console.log('%cUnknown option detected: "' + option + '" in ' + Validator.printLocation(localSearch.path, option, '') + 'Perhaps it was incomplete? Did you mean: "' + localSearch.indexMatch + '"?\n\n', printStyle); + } else if (globalSearch.distance <= globalSearchThreshold && localSearch.distance > globalSearch.distance) { + console.log('%cUnknown option detected: "' + option + '" in ' + Validator.printLocation(localSearch.path, option, '') + 'Perhaps it was misplaced? Matching option found at: ' + Validator.printLocation(globalSearch.path, globalSearch.closestMatch, ''), printStyle); + } else if (localSearch.distance <= localSearchThreshold) { + console.log('%cUnknown option detected: "' + option + '". Did you mean "' + localSearch.closestMatch + '"?' + Validator.printLocation(localSearch.path, option), printStyle); + } else { + console.log('%cUnknown option detected: "' + option + '". Did you mean one of these: ' + Validator.print(Object.keys(options)) + Validator.printLocation(path, option), printStyle); + } + + errorFound = true; + } + + /** + * traverse the options in search for a match. + * @param option + * @param options + * @param path + * @param recursive + * @returns {{closestMatch: string, path: Array, distance: number}} + */ + }, { + key: 'findInOptions', + value: function findInOptions(option, options, path) { + var recursive = arguments.length <= 3 || arguments[3] === undefined ? false : arguments[3]; + + var min = 1e9; + var closestMatch = ''; + var closestMatchPath = []; + var lowerCaseOption = option.toLowerCase(); + var indexMatch = undefined; + for (var op in options) { + var distance = undefined; + if (options[op].__type__ !== undefined && recursive === true) { + var result = Validator.findInOptions(option, options[op], util.copyAndExtendArray(path, op)); + if (min > result.distance) { + closestMatch = result.closestMatch; + closestMatchPath = result.path; + min = result.distance; + indexMatch = result.indexMatch; + } + } else { + if (op.toLowerCase().indexOf(lowerCaseOption) !== -1) { + indexMatch = op; + } + distance = Validator.levenshteinDistance(option, op); + if (min > distance) { + closestMatch = op; + closestMatchPath = util.copyArray(path); + min = distance; + } + } + } + return { closestMatch: closestMatch, path: closestMatchPath, distance: min, indexMatch: indexMatch }; + } + }, { + key: 'printLocation', + value: function printLocation(path, option) { + var prefix = arguments.length <= 2 || arguments[2] === undefined ? 'Problem value found at: \n' : arguments[2]; + + var str = '\n\n' + prefix + 'options = {\n'; + for (var i = 0; i < path.length; i++) { + for (var j = 0; j < i + 1; j++) { + str += ' '; + } + str += path[i] + ': {\n'; + } + for (var j = 0; j < path.length + 1; j++) { + str += ' '; + } + str += option + '\n'; + for (var i = 0; i < path.length + 1; i++) { + for (var j = 0; j < path.length - i; j++) { + str += ' '; + } + str += '}\n'; + } + return str + '\n\n'; + } + }, { + key: 'print', + value: function print(options) { + return JSON.stringify(options).replace(/(\")|(\[)|(\])|(,"__type__")/g, "").replace(/(\,)/g, ', '); + } + + // Compute the edit distance between the two given strings + // http://en.wikibooks.org/wiki/Algorithm_Implementation/Strings/Levenshtein_distance#JavaScript + /* + Copyright (c) 2011 Andrei Mackenzie + 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. + */ + }, { + key: 'levenshteinDistance', + value: function levenshteinDistance(a, b) { + if (a.length === 0) return b.length; + if (b.length === 0) return a.length; + + var matrix = []; + + // increment along the first column of each row + var i; + for (i = 0; i <= b.length; i++) { + matrix[i] = [i]; + } + + // increment each column in the first row + var j; + for (j = 0; j <= a.length; j++) { + matrix[0][j] = j; + } + + // Fill in the rest of the matrix + for (i = 1; i <= b.length; i++) { + for (j = 1; j <= a.length; j++) { + if (b.charAt(i - 1) == a.charAt(j - 1)) { + matrix[i][j] = matrix[i - 1][j - 1]; + } else { + matrix[i][j] = Math.min(matrix[i - 1][j - 1] + 1, // substitution + Math.min(matrix[i][j - 1] + 1, // insertion + matrix[i - 1][j] + 1)); // deletion + } + } + } + + return matrix[b.length][a.length]; + } + }]); + + return Validator; + })(); + + exports['default'] = Validator; + exports.printStyle = printStyle; + +/***/ }, +/* 48 */ +/***/ function(module, exports) { + + /** + * This object contains all possible options. It will check if the types are correct, if required if the option is one + * of the allowed values. + * + * __any__ means that the name of the property does not matter. + * __type__ is a required field for all objects and contains the allowed types of all objects + */ + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + var string = 'string'; + var boolean = 'boolean'; + var number = 'number'; + var array = 'array'; + var date = 'date'; + var object = 'object'; // should only be in a __type__ property + var dom = 'dom'; + var moment = 'moment'; + var any = 'any'; + + var allOptions = { + configure: { + enabled: { boolean: boolean }, + filter: { boolean: boolean, 'function': 'function' }, + container: { dom: dom }, + __type__: { object: object, boolean: boolean, 'function': 'function' } + }, + + //globals : + align: { string: string }, + autoResize: { boolean: boolean }, + throttleRedraw: { number: number }, + clickToUse: { boolean: boolean }, + dataAttributes: { string: string, array: array }, + editable: { + add: { boolean: boolean, 'undefined': 'undefined' }, + remove: { boolean: boolean, 'undefined': 'undefined' }, + updateGroup: { boolean: boolean, 'undefined': 'undefined' }, + updateTime: { boolean: boolean, 'undefined': 'undefined' }, + __type__: { boolean: boolean, object: object } + }, + end: { number: number, date: date, string: string, moment: moment }, + format: { + minorLabels: { + millisecond: { string: string, 'undefined': 'undefined' }, + second: { string: string, 'undefined': 'undefined' }, + minute: { string: string, 'undefined': 'undefined' }, + hour: { string: string, 'undefined': 'undefined' }, + weekday: { string: string, 'undefined': 'undefined' }, + day: { string: string, 'undefined': 'undefined' }, + month: { string: string, 'undefined': 'undefined' }, + year: { string: string, 'undefined': 'undefined' }, + __type__: { object: object } + }, + majorLabels: { + millisecond: { string: string, 'undefined': 'undefined' }, + second: { string: string, 'undefined': 'undefined' }, + minute: { string: string, 'undefined': 'undefined' }, + hour: { string: string, 'undefined': 'undefined' }, + weekday: { string: string, 'undefined': 'undefined' }, + day: { string: string, 'undefined': 'undefined' }, + month: { string: string, 'undefined': 'undefined' }, + year: { string: string, 'undefined': 'undefined' }, + __type__: { object: object } + }, + __type__: { object: object } + }, + moment: { 'function': 'function' }, + groupOrder: { string: string, 'function': 'function' }, + groupEditable: { + add: { boolean: boolean, 'undefined': 'undefined' }, + remove: { boolean: boolean, 'undefined': 'undefined' }, + order: { boolean: boolean, 'undefined': 'undefined' }, + __type__: { boolean: boolean, object: object } + }, + groupOrderSwap: { 'function': 'function' }, + height: { string: string, number: number }, + hiddenDates: { object: object, array: array }, + locale: { string: string }, + locales: { + __any__: { any: any }, + __type__: { object: object } + }, + margin: { + axis: { number: number }, + item: { + horizontal: { number: number, 'undefined': 'undefined' }, + vertical: { number: number, 'undefined': 'undefined' }, + __type__: { object: object, number: number } + }, + __type__: { object: object, number: number } + }, + max: { date: date, number: number, string: string, moment: moment }, + maxHeight: { number: number, string: string }, + min: { date: date, number: number, string: string, moment: moment }, + minHeight: { number: number, string: string }, + moveable: { boolean: boolean }, + multiselect: { boolean: boolean }, + onAdd: { 'function': 'function' }, + onUpdate: { 'function': 'function' }, + onMove: { 'function': 'function' }, + onMoving: { 'function': 'function' }, + onRemove: { 'function': 'function' }, + onAddGroup: { 'function': 'function' }, + onMoveGroup: { 'function': 'function' }, + onRemoveGroup: { 'function': 'function' }, + order: { 'function': 'function' }, + orientation: { + axis: { string: string, 'undefined': 'undefined' }, + item: { string: string, 'undefined': 'undefined' }, + __type__: { string: string, object: object } + }, + selectable: { boolean: boolean }, + showCurrentTime: { boolean: boolean }, + showMajorLabels: { boolean: boolean }, + showMinorLabels: { boolean: boolean }, + stack: { boolean: boolean }, + snap: { 'function': 'function', 'null': 'null' }, + start: { date: date, number: number, string: string, moment: moment }, + template: { 'function': 'function' }, + groupTemplate: { 'function': 'function' }, + timeAxis: { + scale: { string: string, 'undefined': 'undefined' }, + step: { number: number, 'undefined': 'undefined' }, + __type__: { object: object } + }, + type: { string: string }, + width: { string: string, number: number }, + zoomable: { boolean: boolean }, + zoomKey: { string: ['ctrlKey', 'altKey', 'metaKey', ''] }, + zoomMax: { number: number }, + zoomMin: { number: number }, + + __type__: { object: object } + }; + + var configureOptions = { + global: { + align: ['center', 'left', 'right'], + autoResize: true, + throttleRedraw: [10, 0, 1000, 10], + clickToUse: false, + // dataAttributes: ['all'], // FIXME: can be 'all' or string[] + editable: { + add: false, + remove: false, + updateGroup: false, + updateTime: false + }, + end: '', + format: { + minorLabels: { + millisecond: 'SSS', + second: 's', + minute: 'HH:mm', + hour: 'HH:mm', + weekday: 'ddd D', + day: 'D', + month: 'MMM', + year: 'YYYY' + }, + majorLabels: { + millisecond: 'HH:mm:ss', + second: 'D MMMM HH:mm', + minute: 'ddd D MMMM', + hour: 'ddd D MMMM', + weekday: 'MMMM YYYY', + day: 'MMMM YYYY', + month: 'YYYY', + year: '' + } + }, + + //groupOrder: {string, 'function': 'function'}, + groupsDraggable: false, + height: '', + //hiddenDates: {object, array}, + locale: '', + margin: { + axis: [20, 0, 100, 1], + item: { + horizontal: [10, 0, 100, 1], + vertical: [10, 0, 100, 1] + } + }, + max: '', + maxHeight: '', + min: '', + minHeight: '', + moveable: false, + multiselect: false, + //onAdd: {'function': 'function'}, + //onUpdate: {'function': 'function'}, + //onMove: {'function': 'function'}, + //onMoving: {'function': 'function'}, + //onRename: {'function': 'function'}, + //order: {'function': 'function'}, + orientation: { + axis: ['both', 'bottom', 'top'], + item: ['bottom', 'top'] + }, + selectable: true, + showCurrentTime: false, + showMajorLabels: true, + showMinorLabels: true, + stack: true, + //snap: {'function': 'function', nada}, + start: '', + //template: {'function': 'function'}, + //timeAxis: { + // scale: ['millisecond', 'second', 'minute', 'hour', 'weekday', 'day', 'month', 'year'], + // step: [1, 1, 10, 1] + //}, + type: ['box', 'point', 'range', 'background'], + width: '100%', + zoomable: true, + zoomKey: ['ctrlKey', 'altKey', 'metaKey', ''], + zoomMax: [315360000000000, 10, 315360000000000, 1], + zoomMin: [10, 10, 315360000000000, 1] + } + }; + + exports.allOptions = allOptions; + exports.configureOptions = configureOptions; + +/***/ }, +/* 49 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var Emitter = __webpack_require__(12); + var Hammer = __webpack_require__(20); + var moment = __webpack_require__(2); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + var Range = __webpack_require__(24); + var Core = __webpack_require__(28); + var TimeAxis = __webpack_require__(39); + var CurrentTime = __webpack_require__(44); + var CustomTime = __webpack_require__(42); + var LineGraph = __webpack_require__(50); + + var Configurator = __webpack_require__(45); + var Validator = __webpack_require__(47)['default']; + var printStyle = __webpack_require__(47).printStyle; + var allOptions = __webpack_require__(58).allOptions; + var configureOptions = __webpack_require__(58).configureOptions; + + /** + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array} [items] + * @param {Object} [options] See Graph2d.setOptions for the available options. + * @constructor + * @extends Core + */ + function Graph2d(container, items, groups, options) { + // if the third element is options, the forth is groups (optionally); + if (!(Array.isArray(groups) || groups instanceof DataSet) && groups instanceof Object) { + var forthArgument = options; + options = groups; + groups = forthArgument; + } + + var me = this; + this.defaultOptions = { + start: null, + end: null, + + autoResize: true, + + orientation: { + axis: 'bottom', // axis orientation: 'bottom', 'top', or 'both' + item: 'bottom' // not relevant for Graph2d + }, + + moment: moment, + + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util.deepExtend({}, this.defaultOptions); + + // Create the DOM, props, and emitter + this._create(container); + + // all components listed here will be repainted automatically + this.components = []; + + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this) + }, + hiddenDates: [], + util: { + toScreen: me._toScreen.bind(me), + toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width + toTime: me._toTime.bind(me), + toGlobalTime: me._toGlobalTime.bind(me) + } + }; + + // range + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; + + // time axis + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); + //this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); + + // current time bar + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); + + // item set + this.linegraph = new LineGraph(this.body); + this.components.push(this.linegraph); + + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet + + this.on('tap', function (event) { + me.emit('click', me.getEventProperties(event)); + }); + this.on('doubletap', function (event) { + me.emit('doubleClick', me.getEventProperties(event)); + }); + this.dom.root.oncontextmenu = function (event) { + me.emit('contextmenu', me.getEventProperties(event)); + }; + + // apply options + if (options) { + this.setOptions(options); + } + + // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + if (groups) { + this.setGroups(groups); + } + + // create itemset + if (items) { + this.setItems(items); + } else { + this._redraw(); + } + } + + // Extend the functionality from Core + Graph2d.prototype = new Core(); + + Graph2d.prototype.setOptions = function (options) { + // validate options + var errorFound = Validator.validate(options, allOptions); + if (errorFound === true) { + console.log('%cErrors have been found in the supplied options object.', printStyle); + } + + Core.prototype.setOptions.call(this, options); + }; + + /** + * Set items + * @param {vis.DataSet | Array | null} items + */ + Graph2d.prototype.setItems = function (items) { + var initialLoad = this.itemsData == null; + + // convert to type DataSet when needed + var newDataSet; + if (!items) { + newDataSet = null; + } else if (items instanceof DataSet || items instanceof DataView) { + newDataSet = items; + } else { + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: 'Date', + end: 'Date' + } + }); + } + + // set items + this.itemsData = newDataSet; + this.linegraph && this.linegraph.setItems(newDataSet); + + if (initialLoad) { + if (this.options.start != undefined || this.options.end != undefined) { + var start = this.options.start != undefined ? this.options.start : null; + var end = this.options.end != undefined ? this.options.end : null; + + this.setWindow(start, end, { animation: false }); + } else { + this.fit({ animation: false }); + } + } + }; + + /** + * Set groups + * @param {vis.DataSet | Array} groups + */ + Graph2d.prototype.setGroups = function (groups) { + // convert to type DataSet when needed + var newDataSet; + if (!groups) { + newDataSet = null; + } else if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = groups; + } else { + // turn an array into a dataset + newDataSet = new DataSet(groups); + } + + this.groupsData = newDataSet; + this.linegraph.setGroups(newDataSet); + }; + + /** + * Returns an object containing an SVG element with the icon of the group (size determined by iconWidth and iconHeight), the label of the group (content) and the yAxisOrientation of the group (left or right). + * @param groupId + * @param width + * @param height + */ + Graph2d.prototype.getLegend = function (groupId, width, height) { + if (width === undefined) { + width = 15; + } + if (height === undefined) { + height = 15; + } + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].getLegend(width, height); + } else { + return "cannot find group:" + groupId; + } + }; + + /** + * This checks if the visible option of the supplied group (by ID) is true or false. + * @param groupId + * @returns {*} + */ + Graph2d.prototype.isGroupVisible = function (groupId) { + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].visible && (this.linegraph.options.groups.visibility[groupId] === undefined || this.linegraph.options.groups.visibility[groupId] == true); + } else { + return false; + } + }; + + /** + * Get the data range of the item set. + * @returns {{min: Date, max: Date}} range A range with a start and end Date. + * When no minimum is found, min==null + * When no maximum is found, max==null + */ + Graph2d.prototype.getDataRange = function () { + var min = null; + var max = null; + + // calculate min from start filed + for (var groupId in this.linegraph.groups) { + if (this.linegraph.groups.hasOwnProperty(groupId)) { + if (this.linegraph.groups[groupId].visible == true) { + for (var i = 0; i < this.linegraph.groups[groupId].itemsData.length; i++) { + var item = this.linegraph.groups[groupId].itemsData[i]; + var value = util.convert(item.x, 'Date').valueOf(); + min = min == null ? value : min > value ? value : min; + max = max == null ? value : max < value ? value : max; + } + } + } + } + + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; + }; + + /** + * Generate Timeline related information from an event + * @param {Event} event + * @return {Object} An object with related information, like on which area + * The event happened, whether clicked on an item, etc. + */ + Graph2d.prototype.getEventProperties = function (event) { + var clientX = event.center ? event.center.x : event.clientX; + var clientY = event.center ? event.center.y : event.clientY; + var x = clientX - util.getAbsoluteLeft(this.dom.centerContainer); + var y = clientY - util.getAbsoluteTop(this.dom.centerContainer); + var time = this._toTime(x); + + var customTime = CustomTime.customTimeFromTarget(event); + + var element = util.getTarget(event); + var what = null; + if (util.hasParent(element, this.timeAxis.dom.foreground)) { + what = 'axis'; + } else if (this.timeAxis2 && util.hasParent(element, this.timeAxis2.dom.foreground)) { + what = 'axis'; + } else if (util.hasParent(element, this.linegraph.yAxisLeft.dom.frame)) { + what = 'data-axis'; + } else if (util.hasParent(element, this.linegraph.yAxisRight.dom.frame)) { + what = 'data-axis'; + } else if (util.hasParent(element, this.linegraph.legendLeft.dom.frame)) { + what = 'legend'; + } else if (util.hasParent(element, this.linegraph.legendRight.dom.frame)) { + what = 'legend'; + } else if (customTime != null) { + what = 'custom-time'; + } else if (util.hasParent(element, this.currentTime.bar)) { + what = 'current-time'; + } else if (util.hasParent(element, this.dom.center)) { + what = 'background'; + } + + var value = []; + var yAxisLeft = this.linegraph.yAxisLeft; + var yAxisRight = this.linegraph.yAxisRight; + if (!yAxisLeft.hidden) { + value.push(yAxisLeft.screenToValue(y)); + } + if (!yAxisRight.hidden) { + value.push(yAxisRight.screenToValue(y)); + } + + return { + event: event, + what: what, + pageX: event.srcEvent ? event.srcEvent.pageX : event.pageX, + pageY: event.srcEvent ? event.srcEvent.pageY : event.pageY, + x: x, + y: y, + time: time, + value: value + }; + }; + + /** + * Load a configurator + * @return {Object} + * @private + */ + Graph2d.prototype._createConfigurator = function () { + return new Configurator(this, this.dom.container, configureOptions); + }; + + module.exports = Graph2d; + +/***/ }, +/* 50 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(7); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + var Component = __webpack_require__(26); + var DataAxis = __webpack_require__(51); + var GraphGroup = __webpack_require__(53); + var Legend = __webpack_require__(57); + var BarFunctions = __webpack_require__(56); + var LineFunctions = __webpack_require__(54); + + var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + + /** + * This is the constructor of the LineGraph. It requires a Timeline body and options. + * + * @param body + * @param options + * @constructor + */ + function LineGraph(body, options) { + this.id = util.randomUUID(); + this.body = body; + + this.defaultOptions = { + yAxisOrientation: 'left', + defaultGroup: 'default', + sort: true, + sampling: true, + stack: false, + graphHeight: '400px', + shaded: { + enabled: false, + orientation: 'bottom' // top, bottom + }, + style: 'line', // line, bar + barChart: { + width: 50, + sideBySide: false, + align: 'center' // left, center, right + }, + interpolation: { + enabled: true, + parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + alpha: 0.5 + }, + drawPoints: { + enabled: true, + size: 6, + style: 'square' // square, circle + }, + dataAxis: { + showMinorLabels: true, + showMajorLabels: true, + icons: false, + width: '40px', + visible: true, + alignZeros: true, + left: { + range: { min: undefined, max: undefined }, + format: function format(value) { + return value; + }, + title: { text: undefined, style: undefined } + }, + right: { + range: { min: undefined, max: undefined }, + format: function format(value) { + return value; + }, + title: { text: undefined, style: undefined } + } + }, + legend: { + enabled: false, + icons: true, + left: { + visible: true, + position: 'top-left' // top/bottom - left,right + }, + right: { + visible: true, + position: 'top-right' // top/bottom - left,right + } + }, + groups: { + visibility: {} + } + }; + + // options is shared by this ItemSet and all its items + this.options = util.extend({}, this.defaultOptions); + this.dom = {}; + this.props = {}; + this.hammer = null; + this.groups = {}; + this.abortedGraphUpdate = false; + this.updateSVGheight = false; + this.updateSVGheightOnResize = false; + + var me = this; + this.itemsData = null; // DataSet + this.groupsData = null; // DataSet + + // listeners for the DataSet of the items + this.itemListeners = { + 'add': function add(event, params, senderId) { + me._onAdd(params.items); + }, + 'update': function update(event, params, senderId) { + me._onUpdate(params.items); + }, + 'remove': function remove(event, params, senderId) { + me._onRemove(params.items); + } + }; + + // listeners for the DataSet of the groups + this.groupListeners = { + 'add': function add(event, params, senderId) { + me._onAddGroups(params.items); + }, + 'update': function update(event, params, senderId) { + me._onUpdateGroups(params.items); + }, + 'remove': function remove(event, params, senderId) { + me._onRemoveGroups(params.items); + } + }; + + this.items = {}; // object with an Item for every data item + this.selection = []; // list with the ids of all selected nodes + this.lastStart = this.body.range.start; + this.touchParams = {}; // stores properties while dragging + + this.svgElements = {}; + this.setOptions(options); + this.groupsUsingDefaultStyles = [0]; + this.COUNTER = 0; + this.body.emitter.on('rangechanged', function () { + me.lastStart = me.body.range.start; + me.svg.style.left = util.option.asSize(-me.props.width); + me.redraw.call(me, true); + }); + + // create the HTML DOM + this._create(); + this.framework = { svg: this.svg, svgElements: this.svgElements, options: this.options, groups: this.groups }; + this.body.emitter.emit('change'); + } + + LineGraph.prototype = new Component(); + + /** + * Create the HTML DOM for the ItemSet + */ + LineGraph.prototype._create = function () { + var frame = document.createElement('div'); + frame.className = 'vis-line-graph'; + this.dom.frame = frame; + + // create svg element for graph drawing. + this.svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); + this.svg.style.position = 'relative'; + this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px'; + this.svg.style.display = 'block'; + frame.appendChild(this.svg); + + // data axis + this.options.dataAxis.orientation = 'left'; + this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); + + this.options.dataAxis.orientation = 'right'; + this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); + delete this.options.dataAxis.orientation; + + // legends + this.legendLeft = new Legend(this.body, this.options.legend, 'left', this.options.groups); + this.legendRight = new Legend(this.body, this.options.legend, 'right', this.options.groups); + + this.show(); + }; + + /** + * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. + * @param {object} options + */ + LineGraph.prototype.setOptions = function (options) { + if (options) { + var fields = ['sampling', 'defaultGroup', 'stack', 'height', 'graphHeight', 'yAxisOrientation', 'style', 'barChart', 'dataAxis', 'sort', 'groups']; + if (options.graphHeight === undefined && options.height !== undefined && this.body.domProps.centerContainer.height !== undefined) { + this.updateSVGheight = true; + this.updateSVGheightOnResize = true; + } else if (this.body.domProps.centerContainer.height !== undefined && options.graphHeight !== undefined) { + if (parseInt((options.graphHeight + '').replace("px", '')) < this.body.domProps.centerContainer.height) { + this.updateSVGheight = true; + } + } + util.selectiveDeepExtend(fields, this.options, options); + util.mergeOptions(this.options, options, 'interpolation'); + util.mergeOptions(this.options, options, 'drawPoints'); + util.mergeOptions(this.options, options, 'shaded'); + util.mergeOptions(this.options, options, 'legend'); + + if (options.interpolation) { + if (typeof options.interpolation == 'object') { + if (options.interpolation.parametrization) { + if (options.interpolation.parametrization == 'uniform') { + this.options.interpolation.alpha = 0; + } else if (options.interpolation.parametrization == 'chordal') { + this.options.interpolation.alpha = 1.0; + } else { + this.options.interpolation.parametrization = 'centripetal'; + this.options.interpolation.alpha = 0.5; + } + } + } + } + + if (this.yAxisLeft) { + if (options.dataAxis !== undefined) { + this.yAxisLeft.setOptions(this.options.dataAxis); + this.yAxisRight.setOptions(this.options.dataAxis); + } + } + + if (this.legendLeft) { + if (options.legend !== undefined) { + this.legendLeft.setOptions(this.options.legend); + this.legendRight.setOptions(this.options.legend); + } + } + + if (this.groups.hasOwnProperty(UNGROUPED)) { + this.groups[UNGROUPED].setOptions(options); + } + } + + // this is used to redraw the graph if the visibility of the groups is changed. + if (this.dom.frame) { + this.redraw(true); + } + }; + + /** + * Hide the component from the DOM + */ + LineGraph.prototype.hide = function () { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + }; + + /** + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed + */ + LineGraph.prototype.show = function () { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } + }; + + /** + * Set items + * @param {vis.DataSet | null} items + */ + LineGraph.prototype.setItems = function (items) { + var me = this, + ids, + oldItemsData = this.itemsData; + + // replace the dataset + if (!items) { + this.itemsData = null; + } else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (oldItemsData) { + // unsubscribe from old dataset + util.forEach(this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); + + // remove all drawn items + ids = oldItemsData.getIds(); + this._onRemove(ids); + } + + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); + + // add all new items + ids = this.itemsData.getIds(); + this._onAdd(ids); + } + this._updateUngrouped(); + //this._updateGraph(); + this.redraw(true); + }; + + /** + * Set groups + * @param {vis.DataSet} groups + */ + LineGraph.prototype.setGroups = function (groups) { + var me = this; + var ids; + + // unsubscribe from current dataset + if (this.groupsData) { + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.off(event, callback); + }); + + // remove all drawn groups + ids = this.groupsData.getIds(); + this.groupsData = null; + this._onRemoveGroups(ids); // note: this will cause a redraw + } + + // replace the dataset + if (!groups) { + this.groupsData = null; + } else if (groups instanceof DataSet || groups instanceof DataView) { + this.groupsData = groups; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + util.forEach(this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); + + // draw all ms + ids = this.groupsData.getIds(); + this._onAddGroups(ids); + } + this._onUpdate(); + }; + + /** + * Update the data + * @param [ids] + * @private + */ + LineGraph.prototype._onUpdate = function (ids) { + this._updateUngrouped(); + this._updateAllGroupData(); + //this._updateGraph(); + this.redraw(true); + }; + LineGraph.prototype._onAdd = function (ids) { + this._onUpdate(ids); + }; + LineGraph.prototype._onRemove = function (ids) { + this._onUpdate(ids); + }; + LineGraph.prototype._onUpdateGroups = function (groupIds) { + for (var i = 0; i < groupIds.length; i++) { + var group = this.groupsData.get(groupIds[i]); + this._updateGroup(group, groupIds[i]); + } + + //this._updateGraph(); + this.redraw(true); + }; + LineGraph.prototype._onAddGroups = function (groupIds) { + this._onUpdateGroups(groupIds); + }; + + /** + * this cleans the group out off the legends and the dataaxis, updates the ungrouped and updates the graph + * @param {Array} groupIds + * @private + */ + LineGraph.prototype._onRemoveGroups = function (groupIds) { + for (var i = 0; i < groupIds.length; i++) { + if (this.groups.hasOwnProperty(groupIds[i])) { + if (this.groups[groupIds[i]].options.yAxisOrientation == 'right') { + this.yAxisRight.removeGroup(groupIds[i]); + this.legendRight.removeGroup(groupIds[i]); + this.legendRight.redraw(); + } else { + this.yAxisLeft.removeGroup(groupIds[i]); + this.legendLeft.removeGroup(groupIds[i]); + this.legendLeft.redraw(); + } + delete this.groups[groupIds[i]]; + } + } + this._updateUngrouped(); + //this._updateGraph(); + this.redraw(true); + }; + + /** + * update a group object with the group dataset entree + * + * @param group + * @param groupId + * @private + */ + LineGraph.prototype._updateGroup = function (group, groupId) { + if (!this.groups.hasOwnProperty(groupId)) { + this.groups[groupId] = new GraphGroup(group, groupId, this.options, this.groupsUsingDefaultStyles); + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.addGroup(groupId, this.groups[groupId]); + this.legendRight.addGroup(groupId, this.groups[groupId]); + } else { + this.yAxisLeft.addGroup(groupId, this.groups[groupId]); + this.legendLeft.addGroup(groupId, this.groups[groupId]); + } + } else { + this.groups[groupId].update(group); + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.updateGroup(groupId, this.groups[groupId]); + this.legendRight.updateGroup(groupId, this.groups[groupId]); + } else { + this.yAxisLeft.updateGroup(groupId, this.groups[groupId]); + this.legendLeft.updateGroup(groupId, this.groups[groupId]); + } + } + this.legendLeft.redraw(); + this.legendRight.redraw(); + }; + + /** + * this updates all groups, it is used when there is an update the the itemset. + * + * @private + */ + LineGraph.prototype._updateAllGroupData = function () { + if (this.itemsData != null) { + var groupsContent = {}; + var groupId; + for (groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + groupsContent[groupId] = []; + } + } + for (var itemId in this.itemsData._data) { + if (this.itemsData._data.hasOwnProperty(itemId)) { + var item = this.itemsData._data[itemId]; + if (groupsContent[item.group] === undefined) { + throw new Error('Cannot find referenced group ' + item.group + '. Possible reason: items added before groups? Groups need to be added before items, as items refer to groups.'); + } + item.x = util.convert(item.x, 'Date'); + groupsContent[item.group].push(item); + } + } + for (groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + this.groups[groupId].setItems(groupsContent[groupId]); + } + } + } + }; + + /** + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. This anonymous group is called 'graph'. + * @protected + */ + LineGraph.prototype._updateUngrouped = function () { + if (this.itemsData && this.itemsData != null) { + var ungroupedCounter = 0; + for (var itemId in this.itemsData._data) { + if (this.itemsData._data.hasOwnProperty(itemId)) { + var item = this.itemsData._data[itemId]; + if (item != undefined) { + if (item.hasOwnProperty('group')) { + if (item.group === undefined) { + item.group = UNGROUPED; + } + } else { + item.group = UNGROUPED; + } + ungroupedCounter = item.group == UNGROUPED ? ungroupedCounter + 1 : ungroupedCounter; + } + } + } + + if (ungroupedCounter == 0) { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); + } else { + var group = { id: UNGROUPED, content: this.options.defaultGroup }; + this._updateGroup(group, UNGROUPED); + } + } else { + delete this.groups[UNGROUPED]; + this.legendLeft.removeGroup(UNGROUPED); + this.legendRight.removeGroup(UNGROUPED); + this.yAxisLeft.removeGroup(UNGROUPED); + this.yAxisRight.removeGroup(UNGROUPED); + } + + this.legendLeft.redraw(); + this.legendRight.redraw(); + }; + + /** + * Redraw the component, mandatory function + * @return {boolean} Returns true if the component is resized + */ + LineGraph.prototype.redraw = function (forceGraphUpdate) { + var resized = false; + + // calculate actual size and position + this.props.width = this.dom.frame.offsetWidth; + this.props.height = this.body.domProps.centerContainer.height - this.body.domProps.border.top - this.body.domProps.border.bottom; + + // update the graph if there is no lastWidth or with, used for the initial draw + if (this.lastWidth === undefined && this.props.width) { + forceGraphUpdate = true; + } + + // check if this component is resized + resized = this._isResized() || resized; + + // check whether zoomed (in that case we need to re-stack everything) + var visibleInterval = this.body.range.end - this.body.range.start; + var zoomed = visibleInterval != this.lastVisibleInterval; + this.lastVisibleInterval = visibleInterval; + + // the svg element is three times as big as the width, this allows for fully dragging left and right + // without reloading the graph. the controls for this are bound to events in the constructor + if (resized == true) { + this.svg.style.width = util.option.asSize(3 * this.props.width); + this.svg.style.left = util.option.asSize(-this.props.width); + + // if the height of the graph is set as proportional, change the height of the svg + if ((this.options.height + '').indexOf("%") != -1 || this.updateSVGheightOnResize == true) { + this.updateSVGheight = true; + } + } + + // update the height of the graph on each redraw of the graph. + if (this.updateSVGheight == true) { + if (this.options.graphHeight != this.props.height + 'px') { + this.options.graphHeight = this.props.height + 'px'; + this.svg.style.height = this.props.height + 'px'; + } + this.updateSVGheight = false; + } else { + this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px'; + } + + // zoomed is here to ensure that animations are shown correctly. + if (resized == true || zoomed == true || this.abortedGraphUpdate == true || forceGraphUpdate == true) { + resized = this._updateGraph() || resized; + } else { + // move the whole svg while dragging + if (this.lastStart != 0) { + var offset = this.body.range.start - this.lastStart; + var range = this.body.range.end - this.body.range.start; + if (this.props.width != 0) { + var rangePerPixelInv = this.props.width / range; + var xOffset = offset * rangePerPixelInv; + this.svg.style.left = -this.props.width - xOffset + 'px'; + } + } + } + + this.legendLeft.redraw(); + this.legendRight.redraw(); + return resized; + }; + + /** + * Update and redraw the graph. + * + */ + LineGraph.prototype._updateGraph = function () { + // reset the svg elements + DOMutil.prepareElements(this.svgElements); + if (this.props.width != 0 && this.itemsData != null) { + var group, i; + var preprocessedGroupData = {}; + var processedGroupData = {}; + var groupRanges = {}; + var changeCalled = false; + + // getting group Ids + var groupIds = []; + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + group = this.groups[groupId]; + if (group.visible == true && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == true)) { + groupIds.push(groupId); + } + } + } + if (groupIds.length > 0) { + // this is the range of the SVG canvas + var minDate = this.body.util.toGlobalTime(-this.body.domProps.root.width); + var maxDate = this.body.util.toGlobalTime(2 * this.body.domProps.root.width); + var groupsData = {}; + // fill groups data, this only loads the data we require based on the timewindow + this._getRelevantData(groupIds, groupsData, minDate, maxDate); + + // apply sampling, if disabled, it will pass through this function. + this._applySampling(groupIds, groupsData); + + // we transform the X coordinates to detect collisions + for (i = 0; i < groupIds.length; i++) { + preprocessedGroupData[groupIds[i]] = this._convertXcoordinates(groupsData[groupIds[i]]); + } + + // now all needed data has been collected we start the processing. + this._getYRanges(groupIds, preprocessedGroupData, groupRanges); + + // update the Y axis first, we use this data to draw at the correct Y points + // changeCalled is required to clean the SVG on a change emit. + changeCalled = this._updateYAxis(groupIds, groupRanges); + var MAX_CYCLES = 5; + if (changeCalled == true && this.COUNTER < MAX_CYCLES) { + DOMutil.cleanupElements(this.svgElements); + this.abortedGraphUpdate = true; + this.COUNTER++; + this.body.emitter.emit('change'); + return true; + } else { + if (this.COUNTER > MAX_CYCLES) { + console.log("WARNING: there may be an infinite loop in the _updateGraph emitter cycle."); + } + this.COUNTER = 0; + this.abortedGraphUpdate = false; + + // With the yAxis scaled correctly, use this to get the Y values of the points. + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + processedGroupData[groupIds[i]] = this._convertYcoordinates(groupsData[groupIds[i]], group); + } + + // draw the groups + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.options.style != 'bar') { + // bar needs to be drawn enmasse + group.draw(processedGroupData[groupIds[i]], group, this.framework); + } + } + BarFunctions.draw(groupIds, processedGroupData, this.framework); + } + } + } + + // cleanup unused svg elements + DOMutil.cleanupElements(this.svgElements); + return false; + }; + + /** + * first select and preprocess the data from the datasets. + * the groups have their preselection of data, we now loop over this data to see + * what data we need to draw. Sorted data is much faster. + * more optimization is possible by doing the sampling before and using the binary search + * to find the end date to determine the increment. + * + * @param {array} groupIds + * @param {object} groupsData + * @param {date} minDate + * @param {date} maxDate + * @private + */ + LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) { + var group, i, j, item; + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + groupsData[groupIds[i]] = []; + var dataContainer = groupsData[groupIds[i]]; + // optimization for sorted data + if (group.options.sort == true) { + var guess = Math.max(0, util.binarySearchValue(group.itemsData, minDate, 'x', 'before')); + for (j = guess; j < group.itemsData.length; j++) { + item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > maxDate) { + dataContainer.push(item); + break; + } else { + dataContainer.push(item); + } + } + } + } else { + for (j = 0; j < group.itemsData.length; j++) { + item = group.itemsData[j]; + if (item !== undefined) { + if (item.x > minDate && item.x < maxDate) { + dataContainer.push(item); + } + } + } + } + } + } + }; + + /** + * + * @param groupIds + * @param groupsData + * @private + */ + LineGraph.prototype._applySampling = function (groupIds, groupsData) { + var group; + if (groupIds.length > 0) { + for (var i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + if (group.options.sampling == true) { + var dataContainer = groupsData[groupIds[i]]; + if (dataContainer.length > 0) { + var increment = 1; + var amountOfPoints = dataContainer.length; + + // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop + // of width changing of the yAxis. + var xDistance = this.body.util.toGlobalScreen(dataContainer[dataContainer.length - 1].x) - this.body.util.toGlobalScreen(dataContainer[0].x); + var pointsPerPixel = amountOfPoints / xDistance; + increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1, Math.round(pointsPerPixel))); + + var sampledData = []; + for (var j = 0; j < amountOfPoints; j += increment) { + sampledData.push(dataContainer[j]); + } + groupsData[groupIds[i]] = sampledData; + } + } + } + } + }; + + /** + * + * + * @param {array} groupIds + * @param {object} groupsData + * @param {object} groupRanges | this is being filled here + * @private + */ + LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) { + var groupData, group, i; + var combinedDataLeft = []; + var combinedDataRight = []; + var options; + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + groupData = groupsData[groupIds[i]]; + options = this.groups[groupIds[i]].options; + if (groupData.length > 0) { + group = this.groups[groupIds[i]]; + // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. + if (options.stack === true && options.style === 'bar') { + if (options.yAxisOrientation === 'left') { + combinedDataLeft = combinedDataLeft.concat(group.getData(groupData)); + } else { + combinedDataRight = combinedDataRight.concat(group.getData(groupData)); + } + } else { + groupRanges[groupIds[i]] = group.getYRange(groupData, groupIds[i]); + } + } + } + + // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. + BarFunctions.getStackedYRange(combinedDataLeft, groupRanges, groupIds, '__barStackLeft', 'left'); + BarFunctions.getStackedYRange(combinedDataRight, groupRanges, groupIds, '__barStackRight', 'right'); + // if line graphs are stacked, their range need to be handled differently and accumulated over all groups. + //LineFunctions.getStackedYRange(combinedDataLeft , groupRanges, groupIds, '__lineStackLeft' , 'left' ); + //LineFunctions.getStackedYRange(combinedDataRight, groupRanges, groupIds, '__lineStackRight', 'right'); + } + }; + + /** + * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden. + * @param {Array} groupIds + * @param {Object} groupRanges + * @private + */ + LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { + var resized = false; + var yAxisLeftUsed = false; + var yAxisRightUsed = false; + var minLeft = 1e9, + minRight = 1e9, + maxLeft = -1e9, + maxRight = -1e9, + minVal, + maxVal; + // if groups are present + if (groupIds.length > 0) { + // this is here to make sure that if there are no items in the axis but there are groups, that there is no infinite draw/redraw loop. + for (var i = 0; i < groupIds.length; i++) { + var group = this.groups[groupIds[i]]; + if (group && group.options.yAxisOrientation != 'right') { + yAxisLeftUsed = true; + minLeft = 1e9; + maxLeft = -1e9; + } else if (group && group.options.yAxisOrientation) { + yAxisRightUsed = true; + minRight = 1e9; + maxRight = -1e9; + } + } + + // if there are items: + for (var i = 0; i < groupIds.length; i++) { + if (groupRanges.hasOwnProperty(groupIds[i])) { + if (groupRanges[groupIds[i]].ignore !== true) { + minVal = groupRanges[groupIds[i]].min; + maxVal = groupRanges[groupIds[i]].max; + + if (groupRanges[groupIds[i]].yAxisOrientation != 'right') { + yAxisLeftUsed = true; + minLeft = minLeft > minVal ? minVal : minLeft; + maxLeft = maxLeft < maxVal ? maxVal : maxLeft; + } else { + yAxisRightUsed = true; + minRight = minRight > minVal ? minVal : minRight; + maxRight = maxRight < maxVal ? maxVal : maxRight; + } + } + } + } + + if (yAxisLeftUsed == true) { + this.yAxisLeft.setRange(minLeft, maxLeft); + } + if (yAxisRightUsed == true) { + this.yAxisRight.setRange(minRight, maxRight); + } + } + resized = this._toggleAxisVisiblity(yAxisLeftUsed, this.yAxisLeft) || resized; + resized = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || resized; + + if (yAxisRightUsed == true && yAxisLeftUsed == true) { + this.yAxisLeft.drawIcons = true; + this.yAxisRight.drawIcons = true; + } else { + this.yAxisLeft.drawIcons = false; + this.yAxisRight.drawIcons = false; + } + this.yAxisRight.master = !yAxisLeftUsed; + if (this.yAxisRight.master == false) { + if (yAxisRightUsed == true) { + this.yAxisLeft.lineOffset = this.yAxisRight.width; + } else { + this.yAxisLeft.lineOffset = 0; + } + + resized = this.yAxisLeft.redraw() || resized; + this.yAxisRight.stepPixels = this.yAxisLeft.stepPixels; + this.yAxisRight.zeroCrossing = this.yAxisLeft.zeroCrossing; + this.yAxisRight.amountOfSteps = this.yAxisLeft.amountOfSteps; + resized = this.yAxisRight.redraw() || resized; + } else { + resized = this.yAxisRight.redraw() || resized; + } + + // clean the accumulated lists + var tempGroups = ['__barStackLeft', '__barStackRight', '__lineStackLeft', '__lineStackRight']; + for (var i = 0; i < tempGroups.length; i++) { + if (groupIds.indexOf(tempGroups[i]) != -1) { + groupIds.splice(groupIds.indexOf(tempGroups[i]), 1); + } + } + + return resized; + }; + + /** + * This shows or hides the Y axis if needed. If there is a change, the changed event is emitted by the updateYAxis function + * + * @param {boolean} axisUsed + * @returns {boolean} + * @private + * @param axis + */ + LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { + var changed = false; + if (axisUsed == false) { + if (axis.dom.frame.parentNode && axis.hidden == false) { + axis.hide(); + changed = true; + } + } else { + if (!axis.dom.frame.parentNode && axis.hidden == true) { + axis.show(); + changed = true; + } + } + return changed; + }; + + /** + * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for + * the yAxis. + * + * @param datapoints + * @returns {Array} + * @private + */ + LineGraph.prototype._convertXcoordinates = function (datapoints) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; + + for (var i = 0; i < datapoints.length; i++) { + xValue = toScreen(datapoints[i].x) + this.props.width; + yValue = datapoints[i].y; + extractedData.push({ x: xValue, y: yValue }); + } + + return extractedData; + }; + + /** + * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for + * the yAxis. + * + * @param datapoints + * @param group + * @returns {Array} + * @private + */ + LineGraph.prototype._convertYcoordinates = function (datapoints, group) { + var extractedData = []; + var xValue, yValue; + var toScreen = this.body.util.toScreen; + var axis = this.yAxisLeft; + var svgHeight = Number(this.svg.style.height.replace('px', '')); + if (group.options.yAxisOrientation == 'right') { + axis = this.yAxisRight; + } + + for (var i = 0; i < datapoints.length; i++) { + var labelValue = datapoints[i].label ? datapoints[i].label : null; + xValue = toScreen(datapoints[i].x) + this.props.width; + yValue = Math.round(axis.convertValue(datapoints[i].y)); + extractedData.push({ x: xValue, y: yValue, label: labelValue }); + } + + group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); + + return extractedData; + }; + + module.exports = LineGraph; + +/***/ }, +/* 51 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(7); + var Component = __webpack_require__(26); + var DataStep = __webpack_require__(52); + + /** + * A horizontal time axis + * @param {Object} [options] See DataAxis.setOptions for the available + * options. + * @constructor DataAxis + * @extends Component + * @param body + */ + function DataAxis(body, options, svg, linegraphOptions) { + this.id = util.randomUUID(); + this.body = body; + + this.defaultOptions = { + orientation: 'left', // supported: 'left', 'right' + showMinorLabels: true, + showMajorLabels: true, + icons: true, + majorLinesOffset: 7, + minorLinesOffset: 4, + labelOffsetX: 10, + labelOffsetY: 2, + iconWidth: 20, + width: '40px', + visible: true, + alignZeros: true, + left: { + range: { min: undefined, max: undefined }, + format: function format(value) { + return value; + }, + title: { text: undefined, style: undefined } + }, + right: { + range: { min: undefined, max: undefined }, + format: function format(value) { + return value; + }, + title: { text: undefined, style: undefined } + } + }; + + this.linegraphOptions = linegraphOptions; + this.linegraphSVG = svg; + this.props = {}; + this.DOMelements = { // dynamic elements + lines: {}, + labels: {}, + title: {} + }; + + this.dom = {}; + + this.range = { start: 0, end: 0 }; + + this.options = util.extend({}, this.defaultOptions); + this.conversionFactor = 1; + + this.setOptions(options); + this.width = Number(('' + this.options.width).replace("px", "")); + this.minWidth = this.width; + this.height = this.linegraphSVG.offsetHeight; + this.hidden = false; + + this.stepPixels = 25; + this.zeroCrossing = -1; + this.amountOfSteps = -1; + + this.lineOffset = 0; + this.master = true; + this.svgElements = {}; + this.iconsRemoved = false; + + this.groups = {}; + this.amountOfGroups = 0; + + // create the HTML DOM + this._create(); + + var me = this; + this.body.emitter.on("verticalDrag", function () { + me.dom.lineContainer.style.top = me.body.domProps.scrollTop + 'px'; + }); + } + + DataAxis.prototype = new Component(); + + DataAxis.prototype.addGroup = function (label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; + }; + + DataAxis.prototype.updateGroup = function (label, graphOptions) { + this.groups[label] = graphOptions; + }; + + DataAxis.prototype.removeGroup = function (label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + }; + + DataAxis.prototype.setOptions = function (options) { + if (options) { + var redraw = false; + if (this.options.orientation != options.orientation && options.orientation !== undefined) { + redraw = true; + } + var fields = ['orientation', 'showMinorLabels', 'showMajorLabels', 'icons', 'majorLinesOffset', 'minorLinesOffset', 'labelOffsetX', 'labelOffsetY', 'iconWidth', 'width', 'visible', 'left', 'right', 'alignZeros']; + util.selectiveExtend(fields, this.options, options); + + this.minWidth = Number(('' + this.options.width).replace("px", "")); + + if (redraw === true && this.dom.frame) { + this.hide(); + this.show(); + } + } + }; + + /** + * Create the HTML DOM for the DataAxis + */ + DataAxis.prototype._create = function () { + this.dom.frame = document.createElement('div'); + this.dom.frame.style.width = this.options.width; + this.dom.frame.style.height = this.height; + + this.dom.lineContainer = document.createElement('div'); + this.dom.lineContainer.style.width = '100%'; + this.dom.lineContainer.style.height = this.height; + this.dom.lineContainer.style.position = 'relative'; + + // create svg element for graph drawing. + this.svg = document.createElementNS('http://www.w3.org/2000/svg', "svg"); + this.svg.style.position = "absolute"; + this.svg.style.top = '0px'; + this.svg.style.height = '100%'; + this.svg.style.width = '100%'; + this.svg.style.display = "block"; + this.dom.frame.appendChild(this.svg); + }; + + DataAxis.prototype._redrawGroupIcons = function () { + DOMutil.prepareElements(this.svgElements); + + var x; + var iconWidth = this.options.iconWidth; + var iconHeight = 15; + var iconOffset = 4; + var y = iconOffset + 0.5 * iconHeight; + + if (this.options.orientation === 'left') { + x = iconOffset; + } else { + x = this.width - iconWidth - iconOffset; + } + + var groupArray = Object.keys(this.groups); + groupArray.sort(function (a, b) { + return a < b ? -1 : 1; + }); + + for (var i = 0; i < groupArray.length; i++) { + var groupId = groupArray[i]; + if (this.groups[groupId].visible === true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] === true)) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + iconOffset; + } + } + + DOMutil.cleanupElements(this.svgElements); + this.iconsRemoved = false; + }; + + DataAxis.prototype._cleanupIcons = function () { + if (this.iconsRemoved === false) { + DOMutil.prepareElements(this.svgElements); + DOMutil.cleanupElements(this.svgElements); + this.iconsRemoved = true; + } + }; + + /** + * Create the HTML DOM for the DataAxis + */ + DataAxis.prototype.show = function () { + this.hidden = false; + if (!this.dom.frame.parentNode) { + if (this.options.orientation === 'left') { + this.body.dom.left.appendChild(this.dom.frame); + } else { + this.body.dom.right.appendChild(this.dom.frame); + } + } + + if (!this.dom.lineContainer.parentNode) { + this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); + } + }; + + /** + * Create the HTML DOM for the DataAxis + */ + DataAxis.prototype.hide = function () { + this.hidden = true; + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + + if (this.dom.lineContainer.parentNode) { + this.dom.lineContainer.parentNode.removeChild(this.dom.lineContainer); + } + }; + + /** + * Set a range (start and end) + * @param end + * @param start + * @param end + */ + DataAxis.prototype.setRange = function (start, end) { + if (this.master === false && this.options.alignZeros === true && this.zeroCrossing != -1) { + if (start > 0) { + start = 0; + } + } + this.range.start = start; + this.range.end = end; + }; + + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + DataAxis.prototype.redraw = function () { + var resized = false; + var activeGroups = 0; + + // Make sure the line container adheres to the vertical scrolling. + this.dom.lineContainer.style.top = this.body.domProps.scrollTop + 'px'; + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible === true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] === true)) { + activeGroups++; + } + } + } + if (this.amountOfGroups === 0 || activeGroups === 0) { + this.hide(); + } else { + this.show(); + this.height = Number(this.linegraphSVG.style.height.replace("px", "")); + + // svg offsetheight did not work in firefox and explorer... + this.dom.lineContainer.style.height = this.height + 'px'; + this.width = this.options.visible === true ? Number(('' + this.options.width).replace("px", "")) : 0; + + var props = this.props; + var frame = this.dom.frame; + + // update classname + frame.className = 'vis-data-axis'; + + // calculate character width and height + this._calculateCharSize(); + + var orientation = this.options.orientation; + var showMinorLabels = this.options.showMinorLabels; + var showMajorLabels = this.options.showMajorLabels; + + // determine the width and height of the elements for the axis + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + + props.minorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.minorLinesOffset; + props.minorLineHeight = 1; + props.majorLineWidth = this.body.dom.backgroundHorizontal.offsetWidth - this.lineOffset - this.width + 2 * this.options.majorLinesOffset; + props.majorLineHeight = 1; + + // take frame offline while updating (is almost twice as fast) + if (orientation === 'left') { + frame.style.top = '0'; + frame.style.left = '0'; + frame.style.bottom = ''; + frame.style.width = this.width + 'px'; + frame.style.height = this.height + "px"; + this.props.width = this.body.domProps.left.width; + this.props.height = this.body.domProps.left.height; + } else { + // right + frame.style.top = ''; + frame.style.bottom = '0'; + frame.style.left = '0'; + frame.style.width = this.width + 'px'; + frame.style.height = this.height + "px"; + this.props.width = this.body.domProps.right.width; + this.props.height = this.body.domProps.right.height; + } + + resized = this._redrawLabels(); + resized = this._isResized() || resized; + + if (this.options.icons === true) { + this._redrawGroupIcons(); + } else { + this._cleanupIcons(); + } + + this._redrawTitle(orientation); + } + return resized; + }; + + /** + * Repaint major and minor text labels and vertical grid lines + * @private + */ + DataAxis.prototype._redrawLabels = function () { + var resized = false; + DOMutil.prepareElements(this.DOMelements.lines); + DOMutil.prepareElements(this.DOMelements.labels); + var orientation = this.options['orientation']; + + // get the range for the slaved axis + var step; + if (this.master === false) { + var stepSize, rangeStart, rangeEnd, minimumStep; + if (this.zeroCrossing !== -1 && this.options.alignZeros === true) { + if (this.range.end > 0) { + stepSize = this.range.end / this.zeroCrossing; // size of one step + rangeStart = this.range.end - this.amountOfSteps * stepSize; + rangeEnd = this.range.end; + } else { + // all of the range (including start) has to be done before the zero crossing. + stepSize = -1 * this.range.start / (this.amountOfSteps - this.zeroCrossing); // absolute size of a step + rangeStart = this.range.start; + rangeEnd = this.range.start + stepSize * this.amountOfSteps; + } + } else { + rangeStart = this.range.start; + rangeEnd = this.range.end; + } + minimumStep = this.stepPixels; + } else { + // calculate range and step (step such that we have space for 7 characters per label) + minimumStep = this.props.majorCharHeight; + rangeStart = this.range.start; + rangeEnd = this.range.end; + } + + this.step = step = new DataStep(rangeStart, rangeEnd, minimumStep, this.dom.frame.offsetHeight, this.options[this.options.orientation].range, this.options[this.options.orientation].format, this.master === false && this.options.alignZeros // does the step have to align zeros? only if not master and the options is on + ); + + // the slave axis needs to use the same horizontal lines as the master axis. + if (this.master === true) { + this.stepPixels = this.dom.frame.offsetHeight / step.marginRange * step.step; + this.amountOfSteps = Math.ceil(this.dom.frame.offsetHeight / this.stepPixels); + } else { + // align with zero + if (this.options.alignZeros === true && this.zeroCrossing !== -1) { + // distance is the amount of steps away from the zero crossing we are. + var distance = (step.current - this.zeroCrossing * step.step) / step.step; + this.step.shift(distance); + } + } + + // value at the bottom of the SVG + this.valueAtBottom = step.marginEnd; + + this.maxLabelSize = 0; + var y = 0; // init value + var stepIndex = 0; // init value + var isMajor = false; // init value + while (stepIndex < this.amountOfSteps) { + y = Math.round(stepIndex * this.stepPixels); + isMajor = step.isMajor(); + + if (stepIndex > 0 && stepIndex !== this.amountOfSteps) { + if (this.options['showMinorLabels'] && isMajor === false || this.master === false && this.options['showMinorLabels'] === true) { + this._redrawLabel(y - 2, step.getCurrent(), orientation, 'vis-y-axis vis-minor', this.props.minorCharHeight); + } + + if (isMajor && this.options['showMajorLabels'] && this.master === true || this.options['showMinorLabels'] === false && this.master === false && isMajor === true) { + if (y >= 0) { + this._redrawLabel(y - 2, step.getCurrent(), orientation, 'vis-y-axis vis-major', this.props.majorCharHeight); + } + this._redrawLine(y, orientation, 'vis-grid vis-horizontal vis-major', this.options.majorLinesOffset, this.props.majorLineWidth); + } else { + this._redrawLine(y, orientation, 'vis-grid vis-horizontal vis-minor', this.options.minorLinesOffset, this.props.minorLineWidth); + } + } + + // get zero crossing + if (this.master === true && step.current === 0) { + this.zeroCrossing = stepIndex; + } + + step.next(); + stepIndex += 1; + } + + // get zero crossing if it's the last step + if (this.master === true && step.current === 0) { + this.zeroCrossing = stepIndex; + } + + this.conversionFactor = this.stepPixels / step.step; + + // Note that title is rotated, so we're using the height, not width! + var titleWidth = 0; + if (this.options[orientation].title !== undefined && this.options[orientation].title.text !== undefined) { + titleWidth = this.props.titleCharHeight; + } + var offset = this.options.icons === true ? Math.max(this.options.iconWidth, titleWidth) + this.options.labelOffsetX + 15 : titleWidth + this.options.labelOffsetX + 15; + + // this will resize the yAxis to accommodate the labels. + if (this.maxLabelSize > this.width - offset && this.options.visible === true) { + this.width = this.maxLabelSize + offset; + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + this.redraw(); + resized = true; + } + // this will resize the yAxis if it is too big for the labels. + else if (this.maxLabelSize < this.width - offset && this.options.visible === true && this.width > this.minWidth) { + this.width = Math.max(this.minWidth, this.maxLabelSize + offset); + this.options.width = this.width + "px"; + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + this.redraw(); + resized = true; + } else { + DOMutil.cleanupElements(this.DOMelements.lines); + DOMutil.cleanupElements(this.DOMelements.labels); + resized = false; + } + + return resized; + }; + + DataAxis.prototype.convertValue = function (value) { + var invertedValue = this.valueAtBottom - value; + var convertedValue = invertedValue * this.conversionFactor; + return convertedValue; + }; + + DataAxis.prototype.screenToValue = function (x) { + return this.valueAtBottom - x / this.conversionFactor; + }; + + /** + * Create a label for the axis at position x + * @private + * @param y + * @param text + * @param orientation + * @param className + * @param characterHeight + */ + DataAxis.prototype._redrawLabel = function (y, text, orientation, className, characterHeight) { + // reuse redundant label + var label = DOMutil.getDOMElement('div', this.DOMelements.labels, this.dom.frame); //this.dom.redundant.labels.shift(); + label.className = className; + label.innerHTML = text; + if (orientation === 'left') { + label.style.left = '-' + this.options.labelOffsetX + 'px'; + label.style.textAlign = "right"; + } else { + label.style.right = '-' + this.options.labelOffsetX + 'px'; + label.style.textAlign = "left"; + } + + label.style.top = y - 0.5 * characterHeight + this.options.labelOffsetY + 'px'; + + text += ''; + + var largestWidth = Math.max(this.props.majorCharWidth, this.props.minorCharWidth); + if (this.maxLabelSize < text.length * largestWidth) { + this.maxLabelSize = text.length * largestWidth; + } + }; + + /** + * Create a minor line for the axis at position y + * @param y + * @param orientation + * @param className + * @param offset + * @param width + */ + DataAxis.prototype._redrawLine = function (y, orientation, className, offset, width) { + if (this.master === true) { + var line = DOMutil.getDOMElement('div', this.DOMelements.lines, this.dom.lineContainer); //this.dom.redundant.lines.shift(); + line.className = className; + line.innerHTML = ''; + + if (orientation === 'left') { + line.style.left = this.width - offset + 'px'; + } else { + line.style.right = this.width - offset + 'px'; + } + + line.style.width = width + 'px'; + line.style.top = y + 'px'; + } + }; + + /** + * Create a title for the axis + * @private + * @param orientation + */ + DataAxis.prototype._redrawTitle = function (orientation) { + DOMutil.prepareElements(this.DOMelements.title); + + // Check if the title is defined for this axes + if (this.options[orientation].title !== undefined && this.options[orientation].title.text !== undefined) { + var title = DOMutil.getDOMElement('div', this.DOMelements.title, this.dom.frame); + title.className = 'vis-y-axis vis-title vis-' + orientation; + title.innerHTML = this.options[orientation].title.text; + + // Add style - if provided + if (this.options[orientation].title.style !== undefined) { + util.addCssText(title, this.options[orientation].title.style); + } + + if (orientation === 'left') { + title.style.left = this.props.titleCharHeight + 'px'; + } else { + title.style.right = this.props.titleCharHeight + 'px'; + } + + title.style.width = this.height + 'px'; + } + + // we need to clean up in case we did not use all elements. + DOMutil.cleanupElements(this.DOMelements.title); + }; + + /** + * Determine the size of text on the axis (both major and minor axis). + * The size is calculated only once and then cached in this.props. + * @private + */ + DataAxis.prototype._calculateCharSize = function () { + // determine the char width and height on the minor axis + if (!('minorCharHeight' in this.props)) { + var textMinor = document.createTextNode('0'); + var measureCharMinor = document.createElement('div'); + measureCharMinor.className = 'vis-y-axis vis-minor vis-measure'; + measureCharMinor.appendChild(textMinor); + this.dom.frame.appendChild(measureCharMinor); + + this.props.minorCharHeight = measureCharMinor.clientHeight; + this.props.minorCharWidth = measureCharMinor.clientWidth; + + this.dom.frame.removeChild(measureCharMinor); + } + + if (!('majorCharHeight' in this.props)) { + var textMajor = document.createTextNode('0'); + var measureCharMajor = document.createElement('div'); + measureCharMajor.className = 'vis-y-axis vis-major vis-measure'; + measureCharMajor.appendChild(textMajor); + this.dom.frame.appendChild(measureCharMajor); + + this.props.majorCharHeight = measureCharMajor.clientHeight; + this.props.majorCharWidth = measureCharMajor.clientWidth; + + this.dom.frame.removeChild(measureCharMajor); + } + + if (!('titleCharHeight' in this.props)) { + var textTitle = document.createTextNode('0'); + var measureCharTitle = document.createElement('div'); + measureCharTitle.className = 'vis-y-axis vis-title vis-measure'; + measureCharTitle.appendChild(textTitle); + this.dom.frame.appendChild(measureCharTitle); + + this.props.titleCharHeight = measureCharTitle.clientHeight; + this.props.titleCharWidth = measureCharTitle.clientWidth; + + this.dom.frame.removeChild(measureCharTitle); + } + }; + + module.exports = DataAxis; + +/***/ }, +/* 52 */ +/***/ function(module, exports) { + + /** + * @constructor DataStep + * The class DataStep is an iterator for data for the lineGraph. You provide a start data point and an + * end data point. The class itself determines the best scale (step size) based on the + * provided start Date, end Date, and minimumStep. + * + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * + * Alternatively, you can set a scale by hand. + * After creation, you can initialize the class by executing first(). Then you + * can iterate from the start date to the end date via next(). You can check if + * the end date is reached with the function hasNext(). After each step, you can + * retrieve the current date via getCurrent(). + * The DataStep has scales ranging from milliseconds, seconds, minutes, hours, + * days, to years. + * + * Version: 1.2 + * + * @param {Date} [start] The start date, for example new Date(2010, 9, 21) + * or new Date(2010, 9, 21, 23, 45, 00) + * @param {Date} [end] The end date + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + */ + 'use strict'; + + function DataStep(start, end, minimumStep, containerHeight, customRange, formattingFunction, alignZeros) { + // variables + this.current = 0; + + this.autoScale = true; + this.stepIndex = 0; + this.step = 1; + this.scale = 1; + this.formattingFunction = formattingFunction; + + this.marginStart; + this.marginEnd; + this.deadSpace = 0; + + this.majorSteps = [1, 2, 5, 10]; + this.minorSteps = [0.25, 0.5, 1, 2]; + + this.alignZeros = alignZeros; + + this.setRange(start, end, minimumStep, containerHeight, customRange); + } + + /** + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Number} [start] The start date and time. + * @param {Number} [end] The end date and time. + * @param {Number} [minimumStep] Optional. Minimum step size in milliseconds + */ + DataStep.prototype.setRange = function (start, end, minimumStep, containerHeight, customRange) { + this._start = customRange.min === undefined ? start : customRange.min; + this._end = customRange.max === undefined ? end : customRange.max; + if (this._start === this._end) { + this._start = customRange.min === undefined ? this._start - 0.75 : this._start; + this._end = customRange.max === undefined ? this._end + 1 : this._end;; + } + + if (this.autoScale === true) { + this.setMinimumStep(minimumStep, containerHeight); + } + + this.setFirst(customRange); + }; + + /** + * Automatically determine the scale that bests fits the provided minimum step + * @param {Number} [minimumStep] The minimum step size in pixels + */ + DataStep.prototype.setMinimumStep = function (minimumStep, containerHeight) { + // round to floor + var range = this._end - this._start; + var safeRange = range * 1.2; + var minimumStepValue = minimumStep * (safeRange / containerHeight); + var orderOfMagnitude = Math.round(Math.log(safeRange) / Math.LN10); + + var minorStepIdx = -1; + var magnitudefactor = Math.pow(10, orderOfMagnitude); + + var start = 0; + if (orderOfMagnitude < 0) { + start = orderOfMagnitude; + } + + var solutionFound = false; + for (var i = start; Math.abs(i) <= Math.abs(orderOfMagnitude); i++) { + magnitudefactor = Math.pow(10, i); + for (var j = 0; j < this.minorSteps.length; j++) { + var stepSize = magnitudefactor * this.minorSteps[j]; + if (stepSize >= minimumStepValue) { + solutionFound = true; + minorStepIdx = j; + break; + } + } + if (solutionFound === true) { + break; + } + } + this.stepIndex = minorStepIdx; + this.scale = magnitudefactor; + this.step = magnitudefactor * this.minorSteps[minorStepIdx]; + }; + + /** + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date + */ + DataStep.prototype.setFirst = function (customRange) { + if (customRange === undefined) { + customRange = {}; + } + + var niceStart = customRange.min === undefined ? this._start - this.scale * 2 * this.minorSteps[this.stepIndex] : customRange.min; + var niceEnd = customRange.max === undefined ? this._end + this.scale * this.minorSteps[this.stepIndex] : customRange.max; + + this.marginEnd = customRange.max === undefined ? this.roundToMinor(niceEnd) : customRange.max; + this.marginStart = customRange.min === undefined ? this.roundToMinor(niceStart) : customRange.min; + + // if we need to align the zero's we need to make sure that there is a zero to use. + if (this.alignZeros === true && (this.marginEnd - this.marginStart) % this.step != 0) { + this.marginEnd += this.marginEnd % this.step; + } + + this.deadSpace = this.roundToMinor(niceEnd) - niceEnd + this.roundToMinor(niceStart) - niceStart; + this.marginRange = this.marginEnd - this.marginStart; + + this.current = this.marginEnd; + }; + + DataStep.prototype.roundToMinor = function (value) { + var rounded = value - value % (this.scale * this.minorSteps[this.stepIndex]); + if (value % (this.scale * this.minorSteps[this.stepIndex]) > 0.5 * (this.scale * this.minorSteps[this.stepIndex])) { + return rounded + this.scale * this.minorSteps[this.stepIndex]; + } else { + return rounded; + } + }; + + /** + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date + */ + DataStep.prototype.hasNext = function () { + return this.current >= this.marginStart; + }; + + /** + * Do the next step + */ + DataStep.prototype.next = function () { + var prev = this.current; + this.current -= this.step; + + // safety mechanism: if current time is still unchanged, move to the end + if (this.current === prev) { + this.current = this._end; + } + }; + + /** + * Do the next step + */ + DataStep.prototype.previous = function () { + this.current += this.step; + this.marginEnd += this.step; + this.marginRange = this.marginEnd - this.marginStart; + }; + + /** + * Get the current datetime + * @return {String} current The current date + */ + DataStep.prototype.getCurrent = function () { + // prevent round-off errors when close to zero + var current = Math.abs(this.current) < this.step / 2 ? 0 : this.current; + var returnValue = current.toPrecision(5); + if (typeof this.formattingFunction === 'function') { + returnValue = this.formattingFunction(current); + } + + if (typeof returnValue === 'number') { + return '' + returnValue; + } else if (typeof returnValue === 'string') { + return returnValue; + } else { + return current.toPrecision(5); + } + }; + + /** + * Check if the current value is a major value (for example when the step + * is DAY, a major value is each first day of the MONTH) + * @return {boolean} true if current date is major, else false. + */ + DataStep.prototype.isMajor = function () { + return this.current % (this.scale * this.majorSteps[this.stepIndex]) === 0; + }; + + DataStep.prototype.shift = function (steps) { + if (steps < 0) { + for (var i = 0; i < -steps; i++) { + this.previous(); + } + } else if (steps > 0) { + for (var i = 0; i < steps; i++) { + this.next(); + } + } + }; + + module.exports = DataStep; + +/***/ }, +/* 53 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(7); + var Line = __webpack_require__(54); + var Bar = __webpack_require__(56); + var Points = __webpack_require__(55); + + /** + * /** + * @param {object} group | the object of the group from the dataset + * @param {string} groupId | ID of the group + * @param {object} options | the default options + * @param {array} groupsUsingDefaultStyles | this array has one entree. + * It is passed as an array so it is passed by reference. + * It enumerates through the default styles + * @constructor + */ + function GraphGroup(group, groupId, options, groupsUsingDefaultStyles) { + this.id = groupId; + var fields = ['sampling', 'style', 'sort', 'yAxisOrientation', 'barChart', 'drawPoints', 'shaded', 'interpolation']; + this.options = util.selectiveBridgeObject(fields, options); + this.usingDefaultStyle = group.className === undefined; + this.groupsUsingDefaultStyles = groupsUsingDefaultStyles; + this.zeroPosition = 0; + this.update(group); + if (this.usingDefaultStyle == true) { + this.groupsUsingDefaultStyles[0] += 1; + } + this.itemsData = []; + this.visible = group.visible === undefined ? true : group.visible; + } + + /** + * this loads a reference to all items in this group into this group. + * @param {array} items + */ + GraphGroup.prototype.setItems = function (items) { + if (items != null) { + this.itemsData = items; + if (this.options.sort == true) { + this.itemsData.sort(function (a, b) { + return a.x - b.x; + }); + } + // typecast all items to numbers. Takes around 10ms for 500.000 items + for (var i = 0; i < this.itemsData.length; i++) { + this.itemsData[i].y = Number(this.itemsData[i].y); + } + } else { + this.itemsData = []; + } + }; + + /** + * this is used for plotting barcharts, this way, we only have to calculate it once. + * @param pos + */ + GraphGroup.prototype.setZeroPosition = function (pos) { + this.zeroPosition = pos; + }; + + /** + * set the options of the graph group over the default options. + * @param options + */ + GraphGroup.prototype.setOptions = function (options) { + if (options !== undefined) { + var fields = ['sampling', 'style', 'sort', 'yAxisOrientation', 'barChart', 'excludeFromLegend']; + util.selectiveDeepExtend(fields, this.options, options); + + // if the group's drawPoints is a function delegate the callback to the onRender property + if (typeof options.drawPoints == 'function') { + options.drawPoints = { + onRender: options.drawPoints + }; + } + + util.mergeOptions(this.options, options, 'interpolation'); + util.mergeOptions(this.options, options, 'drawPoints'); + util.mergeOptions(this.options, options, 'shaded'); + + if (options.interpolation) { + if (typeof options.interpolation == 'object') { + if (options.interpolation.parametrization) { + if (options.interpolation.parametrization == 'uniform') { + this.options.interpolation.alpha = 0; + } else if (options.interpolation.parametrization == 'chordal') { + this.options.interpolation.alpha = 1.0; + } else { + this.options.interpolation.parametrization = 'centripetal'; + this.options.interpolation.alpha = 0.5; + } + } + } + } + } + + if (this.options.style == 'line') { + this.type = new Line(this.id, this.options); + } else if (this.options.style == 'bar') { + this.type = new Bar(this.id, this.options); + } else if (this.options.style == 'points') { + this.type = new Points(this.id, this.options); + } + }; + + /** + * this updates the current group class with the latest group dataset entree, used in _updateGroup in linegraph + * @param group + */ + GraphGroup.prototype.update = function (group) { + this.group = group; + this.content = group.content || 'graph'; + this.className = group.className || this.className || 'vis-graph-group' + this.groupsUsingDefaultStyles[0] % 10; + this.visible = group.visible === undefined ? true : group.visible; + this.style = group.style; + this.setOptions(group.options); + }; + + /** + * draw the icon for the legend. + * + * @param x + * @param y + * @param JSONcontainer + * @param SVGcontainer + * @param iconWidth + * @param iconHeight + */ + GraphGroup.prototype.drawIcon = function (x, y, JSONcontainer, SVGcontainer, iconWidth, iconHeight) { + var fillHeight = iconHeight * 0.5; + var path, fillPath; + + var outline = DOMutil.getSVGElement("rect", JSONcontainer, SVGcontainer); + outline.setAttributeNS(null, "x", x); + outline.setAttributeNS(null, "y", y - fillHeight); + outline.setAttributeNS(null, "width", iconWidth); + outline.setAttributeNS(null, "height", 2 * fillHeight); + outline.setAttributeNS(null, "class", "vis-outline"); + + if (this.options.style == 'line') { + path = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); + path.setAttributeNS(null, "class", this.className); + if (this.style !== undefined) { + path.setAttributeNS(null, "style", this.style); + } + + path.setAttributeNS(null, "d", "M" + x + "," + y + " L" + (x + iconWidth) + "," + y + ""); + if (this.options.shaded.enabled == true) { + fillPath = DOMutil.getSVGElement("path", JSONcontainer, SVGcontainer); + if (this.options.shaded.orientation == 'top') { + fillPath.setAttributeNS(null, "d", "M" + x + ", " + (y - fillHeight) + "L" + x + "," + y + " L" + (x + iconWidth) + "," + y + " L" + (x + iconWidth) + "," + (y - fillHeight)); + } else { + fillPath.setAttributeNS(null, "d", "M" + x + "," + y + " " + "L" + x + "," + (y + fillHeight) + " " + "L" + (x + iconWidth) + "," + (y + fillHeight) + "L" + (x + iconWidth) + "," + y); + } + fillPath.setAttributeNS(null, "class", this.className + " vis-icon-fill"); + } + + if (this.options.drawPoints.enabled == true) { + var groupTemplate = { + style: this.options.drawPoints.style, + size: this.options.drawPoints.size, + className: this.className + }; + DOMutil.drawPoint(x + 0.5 * iconWidth, y, groupTemplate, JSONcontainer, SVGcontainer); + } + } else { + var barWidth = Math.round(0.3 * iconWidth); + var bar1Height = Math.round(0.4 * iconHeight); + var bar2Height = Math.round(0.75 * iconHeight); + + var offset = Math.round((iconWidth - 2 * barWidth) / 3); + + DOMutil.drawBar(x + 0.5 * barWidth + offset, y + fillHeight - bar1Height - 1, barWidth, bar1Height, this.className + ' vis-bar', JSONcontainer, SVGcontainer, this.style); + DOMutil.drawBar(x + 1.5 * barWidth + offset + 2, y + fillHeight - bar2Height - 1, barWidth, bar2Height, this.className + ' vis-bar', JSONcontainer, SVGcontainer, this.style); + } + }; + + /** + * return the legend entree for this group. + * + * @param iconWidth + * @param iconHeight + * @returns {{icon: HTMLElement, label: (group.content|*|string), orientation: (.options.yAxisOrientation|*)}} + */ + GraphGroup.prototype.getLegend = function (iconWidth, iconHeight) { + var svg = document.createElementNS('http://www.w3.org/2000/svg', "svg"); + this.drawIcon(0, 0.5 * iconHeight, [], svg, iconWidth, iconHeight); + return { icon: svg, label: this.content, orientation: this.options.yAxisOrientation }; + }; + + GraphGroup.prototype.getYRange = function (groupData) { + return this.type.getYRange(groupData); + }; + + GraphGroup.prototype.getData = function (groupData) { + return this.type.getData(groupData); + }; + + GraphGroup.prototype.draw = function (dataset, group, framework) { + this.type.draw(dataset, group, framework); + }; + + module.exports = GraphGroup; + +/***/ }, +/* 54 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var DOMutil = __webpack_require__(7); + var Points = __webpack_require__(55); + + function Line(groupId, options) { + this.groupId = groupId; + this.options = options; + } + + Line.prototype.getData = function (groupData) { + var combinedData = []; + for (var j = 0; j < groupData.length; j++) { + combinedData.push({ + x: groupData[j].x, + y: groupData[j].y, + groupId: this.groupId + }); + } + return combinedData; + }; + + Line.prototype.getYRange = function (groupData) { + var yMin = groupData[0].y; + var yMax = groupData[0].y; + for (var j = 0; j < groupData.length; j++) { + yMin = yMin > groupData[j].y ? groupData[j].y : yMin; + yMax = yMax < groupData[j].y ? groupData[j].y : yMax; + } + return { min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation }; + }; + + Line.getStackedYRange = function (combinedData, groupRanges, groupIds, groupLabel, orientation) { + if (combinedData.length > 0) { + // sort by time and by group + combinedData.sort(function (a, b) { + if (a.x === b.x) { + return a.groupId < b.groupId ? -1 : 1; + } else { + return a.x - b.x; + } + }); + var intersections = {}; + + Line._getDataIntersections(intersections, combinedData); + groupRanges[groupLabel] = Line._getStackedYRange(intersections, combinedData); + groupRanges[groupLabel].yAxisOrientation = orientation; + groupIds.push(groupLabel); + } + }; + + Line._getStackedYRange = function (intersections, combinedData) { + var key; + var yMin = combinedData[0].y; + var yMax = combinedData[0].y; + for (var i = 0; i < combinedData.length; i++) { + key = combinedData[i].x; + if (intersections[key] === undefined) { + yMin = yMin > combinedData[i].y ? combinedData[i].y : yMin; + yMax = yMax < combinedData[i].y ? combinedData[i].y : yMax; + } else { + if (combinedData[i].y < 0) { + intersections[key].accumulatedNegative += combinedData[i].y; + } else { + intersections[key].accumulatedPositive += combinedData[i].y; + } + } + } + for (var xpos in intersections) { + if (intersections.hasOwnProperty(xpos)) { + yMin = yMin > intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMin; + yMin = yMin > intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMin; + yMax = yMax < intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMax; + yMax = yMax < intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMax; + } + } + + return { min: yMin, max: yMax }; + }; + + /** + * Fill the intersections object with counters of how many datapoints share the same x coordinates + * @param intersections + * @param combinedData + * @private + */ + Line._getDataIntersections = function (intersections, combinedData) { + // get intersections + var coreDistance; + for (var i = 0; i < combinedData.length; i++) { + if (i + 1 < combinedData.length) { + coreDistance = Math.abs(combinedData[i + 1].x - combinedData[i].x); + } + if (i > 0) { + coreDistance = Math.min(coreDistance, Math.abs(combinedData[i - 1].x - combinedData[i].x)); + } + if (coreDistance === 0) { + if (intersections[combinedData[i].x] === undefined) { + intersections[combinedData[i].x] = { amount: 0, resolved: 0, accumulatedPositive: 0, accumulatedNegative: 0 }; + } + intersections[combinedData[i].x].amount += 1; + } + } + }; + + /** + * draw a line graph + * + * @param dataset + * @param group + */ + Line.prototype.draw = function (dataset, group, framework) { + if (dataset != null) { + if (dataset.length > 0) { + var path, d; + var svgHeight = Number(framework.svg.style.height.replace('px', '')); + path = DOMutil.getSVGElement('path', framework.svgElements, framework.svg); + path.setAttributeNS(null, "class", group.className); + if (group.style !== undefined) { + path.setAttributeNS(null, "style", group.style); + } + + // construct path from dataset + if (group.options.interpolation.enabled == true) { + d = Line._catmullRom(dataset, group); + } else { + d = Line._linear(dataset); + } + + // append with points for fill and finalize the path + if (group.options.shaded.enabled == true) { + var fillPath = DOMutil.getSVGElement('path', framework.svgElements, framework.svg); + var dFill; + if (group.options.shaded.orientation == 'top') { + dFill = 'M' + dataset[0].x + ',' + 0 + ' ' + d + 'L' + dataset[dataset.length - 1].x + ',' + 0; + } else { + dFill = 'M' + dataset[0].x + ',' + svgHeight + ' ' + d + 'L' + dataset[dataset.length - 1].x + ',' + svgHeight; + } + fillPath.setAttributeNS(null, 'class', group.className + ' vis-fill'); + if (group.options.shaded.style !== undefined) { + fillPath.setAttributeNS(null, 'style', group.options.shaded.style); + } + fillPath.setAttributeNS(null, 'd', dFill); + } + // copy properties to path for drawing. + path.setAttributeNS(null, 'd', 'M' + d); + + // draw points + if (group.options.drawPoints.enabled == true) { + Points.draw(dataset, group, framework); + } + } + } + }; + + /** + * This uses an uniform parametrization of the interpolation algorithm: + * 'On the Parameterization of Catmull-Rom Curves' by Cem Yuksel et al. + * @param data + * @returns {string} + * @private + */ + Line._catmullRomUniform = function (data) { + // catmull rom + var p0, p1, p2, p3, bp1, bp2; + var d = Math.round(data[0].x) + ',' + Math.round(data[0].y) + ' '; + var normalization = 1 / 6; + var length = data.length; + for (var i = 0; i < length - 1; i++) { + + p0 = i == 0 ? data[0] : data[i - 1]; + p1 = data[i]; + p2 = data[i + 1]; + p3 = i + 2 < length ? data[i + 2] : p2; + + // Catmull-Rom to Cubic Bezier conversion matrix + // 0 1 0 0 + // -1/6 1 1/6 0 + // 0 1/6 1 -1/6 + // 0 0 1 0 + + // bp0 = { x: p1.x, y: p1.y }; + bp1 = { x: (-p0.x + 6 * p1.x + p2.x) * normalization, y: (-p0.y + 6 * p1.y + p2.y) * normalization }; + bp2 = { x: (p1.x + 6 * p2.x - p3.x) * normalization, y: (p1.y + 6 * p2.y - p3.y) * normalization }; + // bp0 = { x: p2.x, y: p2.y }; + + d += 'C' + bp1.x + ',' + bp1.y + ' ' + bp2.x + ',' + bp2.y + ' ' + p2.x + ',' + p2.y + ' '; + } + + return d; + }; + + /** + * This uses either the chordal or centripetal parameterization of the catmull-rom algorithm. + * By default, the centripetal parameterization is used because this gives the nicest results. + * These parameterizations are relatively heavy because the distance between 4 points have to be calculated. + * + * One optimization can be used to reuse distances since this is a sliding window approach. + * @param data + * @param group + * @returns {string} + * @private + */ + Line._catmullRom = function (data, group) { + var alpha = group.options.interpolation.alpha; + if (alpha == 0 || alpha === undefined) { + return this._catmullRomUniform(data); + } else { + var p0, p1, p2, p3, bp1, bp2, d1, d2, d3, A, B, N, M; + var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; + var d = Math.round(data[0].x) + ',' + Math.round(data[0].y) + ' '; + var length = data.length; + for (var i = 0; i < length - 1; i++) { + + p0 = i == 0 ? data[0] : data[i - 1]; + p1 = data[i]; + p2 = data[i + 1]; + p3 = i + 2 < length ? data[i + 2] : p2; + + d1 = Math.sqrt(Math.pow(p0.x - p1.x, 2) + Math.pow(p0.y - p1.y, 2)); + d2 = Math.sqrt(Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2)); + d3 = Math.sqrt(Math.pow(p2.x - p3.x, 2) + Math.pow(p2.y - p3.y, 2)); + + // Catmull-Rom to Cubic Bezier conversion matrix + + // A = 2d1^2a + 3d1^a * d2^a + d3^2a + // B = 2d3^2a + 3d3^a * d2^a + d2^2a + + // [ 0 1 0 0 ] + // [ -d2^2a /N A/N d1^2a /N 0 ] + // [ 0 d3^2a /M B/M -d2^2a /M ] + // [ 0 0 1 0 ] + + d3powA = Math.pow(d3, alpha); + d3pow2A = Math.pow(d3, 2 * alpha); + d2powA = Math.pow(d2, alpha); + d2pow2A = Math.pow(d2, 2 * alpha); + d1powA = Math.pow(d1, alpha); + d1pow2A = Math.pow(d1, 2 * alpha); + + A = 2 * d1pow2A + 3 * d1powA * d2powA + d2pow2A; + B = 2 * d3pow2A + 3 * d3powA * d2powA + d2pow2A; + N = 3 * d1powA * (d1powA + d2powA); + if (N > 0) { + N = 1 / N; + } + M = 3 * d3powA * (d3powA + d2powA); + if (M > 0) { + M = 1 / M; + } + + bp1 = { x: (-d2pow2A * p0.x + A * p1.x + d1pow2A * p2.x) * N, + y: (-d2pow2A * p0.y + A * p1.y + d1pow2A * p2.y) * N }; + + bp2 = { x: (d3pow2A * p1.x + B * p2.x - d2pow2A * p3.x) * M, + y: (d3pow2A * p1.y + B * p2.y - d2pow2A * p3.y) * M }; + + if (bp1.x == 0 && bp1.y == 0) { + bp1 = p1; + } + if (bp2.x == 0 && bp2.y == 0) { + bp2 = p2; + } + d += 'C' + bp1.x + ',' + bp1.y + ' ' + bp2.x + ',' + bp2.y + ' ' + p2.x + ',' + p2.y + ' '; + } + + return d; + } + }; + + /** + * this generates the SVG path for a linear drawing between datapoints. + * @param data + * @returns {string} + * @private + */ + Line._linear = function (data) { + // linear + var d = ''; + for (var i = 0; i < data.length; i++) { + if (i == 0) { + d += data[i].x + ',' + data[i].y; + } else { + d += ' ' + data[i].x + ',' + data[i].y; + } + } + return d; + }; + + module.exports = Line; + +/***/ }, +/* 55 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var DOMutil = __webpack_require__(7); + + function Points(groupId, options) { + this.groupId = groupId; + this.options = options; + } + + Points.prototype.getYRange = function (groupData) { + var yMin = groupData[0].y; + var yMax = groupData[0].y; + for (var j = 0; j < groupData.length; j++) { + yMin = yMin > groupData[j].y ? groupData[j].y : yMin; + yMax = yMax < groupData[j].y ? groupData[j].y : yMax; + } + return { min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation }; + }; + + Points.prototype.draw = function (dataset, group, framework, offset) { + Points.draw(dataset, group, framework, offset); + }; + + /** + * draw the data points + * + * @param {Array} dataset + * @param {Object} JSONcontainer + * @param {Object} svg | SVG DOM element + * @param {GraphGroup} group + * @param {Number} [offset] + */ + Points.draw = function (dataset, group, framework, offset) { + offset = offset || 0; + var callback = getCallback(); + + for (var i = 0; i < dataset.length; i++) { + if (!callback) { + // draw the point the simple way. + DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, getGroupTemplate(), framework.svgElements, framework.svg, dataset[i].label); + } else { + var callbackResult = callback(dataset[i], group, framework); // result might be true, false or an object + if (callbackResult === true || typeof callbackResult === 'object') { + DOMutil.drawPoint(dataset[i].x + offset, dataset[i].y, getGroupTemplate(callbackResult), framework.svgElements, framework.svg, dataset[i].label); + } + } + } + + function getGroupTemplate(callbackResult) { + callbackResult = typeof callbackResult === 'undefined' ? {} : callbackResult; + return { + style: callbackResult.style || group.options.drawPoints.style, + size: callbackResult.size || group.options.drawPoints.size, + className: callbackResult.className || group.className + }; + } + + function getCallback() { + var callback = undefined; + // check for the graph2d onRender + if (framework.options.drawPoints.onRender && typeof framework.options.drawPoints.onRender == 'function') { + callback = framework.options.drawPoints.onRender; + } + + // override it with the group onRender if defined + if (group.group.options && group.group.options.drawPoints && group.group.options.drawPoints.onRender && typeof group.group.options.drawPoints.onRender == 'function') { + callback = group.group.options.drawPoints.onRender; + } + + return callback; + } + }; + + module.exports = Points; + +/***/ }, +/* 56 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var DOMutil = __webpack_require__(7); + var Points = __webpack_require__(55); + + function Bargraph(groupId, options) { + this.groupId = groupId; + this.options = options; + } + + Bargraph.prototype.getYRange = function (groupData) { + var yMin = groupData[0].y; + var yMax = groupData[0].y; + for (var j = 0; j < groupData.length; j++) { + yMin = yMin > groupData[j].y ? groupData[j].y : yMin; + yMax = yMax < groupData[j].y ? groupData[j].y : yMax; + } + return { min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation }; + }; + + Bargraph.prototype.getData = function (groupData) { + var combinedData = []; + for (var j = 0; j < groupData.length; j++) { + combinedData.push({ + x: groupData[j].x, + y: groupData[j].y, + groupId: this.groupId + }); + } + return combinedData; + }; + + /** + * draw a bar graph + * + * @param groupIds + * @param processedGroupData + */ + Bargraph.draw = function (groupIds, processedGroupData, framework) { + var combinedData = []; + var intersections = {}; + var coreDistance; + var key, drawData; + var group; + var i, j; + var barPoints = 0; + + // combine all barchart data + for (i = 0; i < groupIds.length; i++) { + group = framework.groups[groupIds[i]]; + if (group.options.style === 'bar') { + if (group.visible === true && (framework.options.groups.visibility[groupIds[i]] === undefined || framework.options.groups.visibility[groupIds[i]] === true)) { + for (j = 0; j < processedGroupData[groupIds[i]].length; j++) { + combinedData.push({ + x: processedGroupData[groupIds[i]][j].x, + y: processedGroupData[groupIds[i]][j].y, + groupId: groupIds[i], + label: processedGroupData[groupIds[i]][j].label + }); + barPoints += 1; + } + } + } + } + + if (barPoints === 0) { + return; + } + + // sort by time and by group + combinedData.sort(function (a, b) { + if (a.x === b.x) { + return a.groupId < b.groupId ? -1 : 1; + } else { + return a.x - b.x; + } + }); + + // get intersections + Bargraph._getDataIntersections(intersections, combinedData); + + // plot barchart + for (i = 0; i < combinedData.length; i++) { + group = framework.groups[combinedData[i].groupId]; + var minWidth = 0.1 * group.options.barChart.width; + + key = combinedData[i].x; + var heightOffset = 0; + if (intersections[key] === undefined) { + if (i + 1 < combinedData.length) { + coreDistance = Math.abs(combinedData[i + 1].x - key); + } + if (i > 0) { + coreDistance = Math.min(coreDistance, Math.abs(combinedData[i - 1].x - key)); + } + drawData = Bargraph._getSafeDrawData(coreDistance, group, minWidth); + } else { + var nextKey = i + (intersections[key].amount - intersections[key].resolved); + var prevKey = i - (intersections[key].resolved + 1); + if (nextKey < combinedData.length) { + coreDistance = Math.abs(combinedData[nextKey].x - key); + } + if (prevKey > 0) { + coreDistance = Math.min(coreDistance, Math.abs(combinedData[prevKey].x - key)); + } + drawData = Bargraph._getSafeDrawData(coreDistance, group, minWidth); + intersections[key].resolved += 1; + + if (group.options.stack === true) { + if (combinedData[i].y < group.zeroPosition) { + heightOffset = intersections[key].accumulatedNegative; + intersections[key].accumulatedNegative += group.zeroPosition - combinedData[i].y; + } else { + heightOffset = intersections[key].accumulatedPositive; + intersections[key].accumulatedPositive += group.zeroPosition - combinedData[i].y; + } + } else if (group.options.barChart.sideBySide === true) { + drawData.width = drawData.width / intersections[key].amount; + drawData.offset += intersections[key].resolved * drawData.width - 0.5 * drawData.width * (intersections[key].amount + 1); + if (group.options.barChart.align === 'left') { + drawData.offset -= 0.5 * drawData.width; + } else if (group.options.barChart.align === 'right') { + drawData.offset += 0.5 * drawData.width; + } + } + } + DOMutil.drawBar(combinedData[i].x + drawData.offset, combinedData[i].y - heightOffset, drawData.width, group.zeroPosition - combinedData[i].y, group.className + ' vis-bar', framework.svgElements, framework.svg, group.style); + // draw points + if (group.options.drawPoints.enabled === true) { + var pointData = { + x: combinedData[i].x + drawData.offset, + y: combinedData[i].y - heightOffset, + groupId: combinedData[i].groupId, + label: combinedData[i].label + }; + Points.draw([pointData], group, framework, drawData.offset); + //DOMutil.drawPoint(combinedData[i].x + drawData.offset, combinedData[i].y, group, framework.svgElements, framework.svg); + } + } + }; + + /** + * Fill the intersections object with counters of how many datapoints share the same x coordinates + * @param intersections + * @param combinedData + * @private + */ + Bargraph._getDataIntersections = function (intersections, combinedData) { + // get intersections + var coreDistance; + for (var i = 0; i < combinedData.length; i++) { + if (i + 1 < combinedData.length) { + coreDistance = Math.abs(combinedData[i + 1].x - combinedData[i].x); + } + if (i > 0) { + coreDistance = Math.min(coreDistance, Math.abs(combinedData[i - 1].x - combinedData[i].x)); + } + if (coreDistance === 0) { + if (intersections[combinedData[i].x] === undefined) { + intersections[combinedData[i].x] = { amount: 0, resolved: 0, accumulatedPositive: 0, accumulatedNegative: 0 }; + } + intersections[combinedData[i].x].amount += 1; + } + } + }; + + /** + * Get the width and offset for bargraphs based on the coredistance between datapoints + * + * @param coreDistance + * @param group + * @param minWidth + * @returns {{width: Number, offset: Number}} + * @private + */ + Bargraph._getSafeDrawData = function (coreDistance, group, minWidth) { + var width, offset; + if (coreDistance < group.options.barChart.width && coreDistance > 0) { + width = coreDistance < minWidth ? minWidth : coreDistance; + + offset = 0; // recalculate offset with the new width; + if (group.options.barChart.align === 'left') { + offset -= 0.5 * coreDistance; + } else if (group.options.barChart.align === 'right') { + offset += 0.5 * coreDistance; + } + } else { + // default settings + width = group.options.barChart.width; + offset = 0; + if (group.options.barChart.align === 'left') { + offset -= 0.5 * group.options.barChart.width; + } else if (group.options.barChart.align === 'right') { + offset += 0.5 * group.options.barChart.width; + } + } + + return { width: width, offset: offset }; + }; + + Bargraph.getStackedYRange = function (combinedData, groupRanges, groupIds, groupLabel, orientation) { + if (combinedData.length > 0) { + // sort by time and by group + combinedData.sort(function (a, b) { + if (a.x === b.x) { + return a.groupId < b.groupId ? -1 : 1; + } else { + return a.x - b.x; + } + }); + var intersections = {}; + + Bargraph._getDataIntersections(intersections, combinedData); + groupRanges[groupLabel] = Bargraph._getStackedYRange(intersections, combinedData); + groupRanges[groupLabel].yAxisOrientation = orientation; + groupIds.push(groupLabel); + } + }; + + Bargraph._getStackedYRange = function (intersections, combinedData) { + var key; + var yMin = combinedData[0].y; + var yMax = combinedData[0].y; + for (var i = 0; i < combinedData.length; i++) { + key = combinedData[i].x; + if (intersections[key] === undefined) { + yMin = yMin > combinedData[i].y ? combinedData[i].y : yMin; + yMax = yMax < combinedData[i].y ? combinedData[i].y : yMax; + } else { + if (combinedData[i].y < 0) { + intersections[key].accumulatedNegative += combinedData[i].y; + } else { + intersections[key].accumulatedPositive += combinedData[i].y; + } + } + } + for (var xpos in intersections) { + if (intersections.hasOwnProperty(xpos)) { + yMin = yMin > intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMin; + yMin = yMin > intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMin; + yMax = yMax < intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMax; + yMax = yMax < intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMax; + } + } + + return { min: yMin, max: yMax }; + }; + + module.exports = Bargraph; + +/***/ }, +/* 57 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + var util = __webpack_require__(1); + var DOMutil = __webpack_require__(7); + var Component = __webpack_require__(26); + + /** + * Legend for Graph2d + */ + function Legend(body, options, side, linegraphOptions) { + this.body = body; + this.defaultOptions = { + enabled: true, + icons: true, + iconSize: 20, + iconSpacing: 6, + left: { + visible: true, + position: 'top-left' // top/bottom - left,center,right + }, + right: { + visible: true, + position: 'top-left' // top/bottom - left,center,right + } + }; + this.side = side; + this.options = util.extend({}, this.defaultOptions); + this.linegraphOptions = linegraphOptions; + + this.svgElements = {}; + this.dom = {}; + this.groups = {}; + this.amountOfGroups = 0; + this._create(); + + this.setOptions(options); + } + + Legend.prototype = new Component(); + + Legend.prototype.clear = function () { + this.groups = {}; + this.amountOfGroups = 0; + }; + + Legend.prototype.addGroup = function (label, graphOptions) { + + // Include a group only if the group option 'excludeFromLegend: false' is not set. + if (graphOptions.options.excludeFromLegend != true) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + this.amountOfGroups += 1; + } + }; + + Legend.prototype.updateGroup = function (label, graphOptions) { + this.groups[label] = graphOptions; + }; + + Legend.prototype.removeGroup = function (label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + }; + + Legend.prototype._create = function () { + this.dom.frame = document.createElement('div'); + this.dom.frame.className = 'vis-legend'; + this.dom.frame.style.position = "absolute"; + this.dom.frame.style.top = "10px"; + this.dom.frame.style.display = "block"; + + this.dom.textArea = document.createElement('div'); + this.dom.textArea.className = 'vis-legend-text'; + this.dom.textArea.style.position = "relative"; + this.dom.textArea.style.top = "0px"; + + this.svg = document.createElementNS('http://www.w3.org/2000/svg', "svg"); + this.svg.style.position = 'absolute'; + this.svg.style.top = 0 + 'px'; + this.svg.style.width = this.options.iconSize + 5 + 'px'; + this.svg.style.height = '100%'; + + this.dom.frame.appendChild(this.svg); + this.dom.frame.appendChild(this.dom.textArea); + }; + + /** + * Hide the component from the DOM + */ + Legend.prototype.hide = function () { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + }; + + /** + * Show the component in the DOM (when not already visible). + * @return {Boolean} changed + */ + Legend.prototype.show = function () { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } + }; + + Legend.prototype.setOptions = function (options) { + var fields = ['enabled', 'orientation', 'icons', 'left', 'right']; + util.selectiveDeepExtend(fields, this.options, options); + }; + + Legend.prototype.redraw = function () { + var activeGroups = 0; + var groupArray = Object.keys(this.groups); + groupArray.sort(function (a, b) { + return a < b ? -1 : 1; + }); + + for (var i = 0; i < groupArray.length; i++) { + var groupId = groupArray[i]; + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + activeGroups++; + } + } + + if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) { + this.hide(); + } else { + this.show(); + if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'bottom-left') { + this.dom.frame.style.left = '4px'; + this.dom.frame.style.textAlign = "left"; + this.dom.textArea.style.textAlign = "left"; + this.dom.textArea.style.left = this.options.iconSize + 15 + 'px'; + this.dom.textArea.style.right = ''; + this.svg.style.left = 0 + 'px'; + this.svg.style.right = ''; + } else { + this.dom.frame.style.right = '4px'; + this.dom.frame.style.textAlign = "right"; + this.dom.textArea.style.textAlign = "right"; + this.dom.textArea.style.right = this.options.iconSize + 15 + 'px'; + this.dom.textArea.style.left = ''; + this.svg.style.right = 0 + 'px'; + this.svg.style.left = ''; + } + + if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'top-right') { + this.dom.frame.style.top = 4 - Number(this.body.dom.center.style.top.replace("px", "")) + 'px'; + this.dom.frame.style.bottom = ''; + } else { + var scrollableHeight = this.body.domProps.center.height - this.body.domProps.centerContainer.height; + this.dom.frame.style.bottom = 4 + scrollableHeight + Number(this.body.dom.center.style.top.replace("px", "")) + 'px'; + this.dom.frame.style.top = ''; + } + + if (this.options.icons == false) { + this.dom.frame.style.width = this.dom.textArea.offsetWidth + 10 + 'px'; + this.dom.textArea.style.right = ''; + this.dom.textArea.style.left = ''; + this.svg.style.width = '0px'; + } else { + this.dom.frame.style.width = this.options.iconSize + 15 + this.dom.textArea.offsetWidth + 10 + 'px'; + this.drawLegendIcons(); + } + + var content = ''; + for (var i = 0; i < groupArray.length; i++) { + var groupId = groupArray[i]; + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + content += this.groups[groupId].content + '
'; + } + } + this.dom.textArea.innerHTML = content; + this.dom.textArea.style.lineHeight = 0.75 * this.options.iconSize + this.options.iconSpacing + 'px'; + } + }; + + Legend.prototype.drawLegendIcons = function () { + if (this.dom.frame.parentNode) { + var groupArray = Object.keys(this.groups); + groupArray.sort(function (a, b) { + return a < b ? -1 : 1; + }); + + DOMutil.prepareElements(this.svgElements); + var padding = window.getComputedStyle(this.dom.frame).paddingTop; + var iconOffset = Number(padding.replace('px', '')); + var x = iconOffset; + var iconWidth = this.options.iconSize; + var iconHeight = 0.75 * this.options.iconSize; + var y = iconOffset + 0.5 * iconHeight + 3; + + this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; + + for (var i = 0; i < groupArray.length; i++) { + var groupId = groupArray[i]; + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + this.groups[groupId].drawIcon(x, y, this.svgElements, this.svg, iconWidth, iconHeight); + y += iconHeight + this.options.iconSpacing; + } + } + + DOMutil.cleanupElements(this.svgElements); + } + }; + + module.exports = Legend; + +/***/ }, +/* 58 */ +/***/ function(module, exports) { + + /** + * This object contains all possible options. It will check if the types are correct, if required if the option is one + * of the allowed values. + * + * __any__ means that the name of the property does not matter. + * __type__ is a required field for all objects and contains the allowed types of all objects + */ + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + var string = 'string'; + var boolean = 'boolean'; + var number = 'number'; + var array = 'array'; + var date = 'date'; + var object = 'object'; // should only be in a __type__ property + var dom = 'dom'; + var moment = 'moment'; + var any = 'any'; + + var allOptions = { + configure: { + enabled: { boolean: boolean }, + filter: { boolean: boolean, 'function': 'function' }, + container: { dom: dom }, + __type__: { object: object, boolean: boolean, 'function': 'function' } + }, + + //globals : + yAxisOrientation: { string: ['left', 'right'] }, + defaultGroup: { string: string }, + sort: { boolean: boolean }, + sampling: { boolean: boolean }, + stack: { boolean: boolean }, + graphHeight: { string: string, number: number }, + shaded: { + enabled: { boolean: boolean }, + orientation: { string: ['bottom', 'top'] }, // top, bottom + __type__: { boolean: boolean, object: object } + }, + style: { string: ['line', 'bar', 'points'] }, // line, bar + barChart: { + width: { number: number }, + sideBySide: { boolean: boolean }, + align: { string: ['left', 'center', 'right'] }, + __type__: { object: object } + }, + interpolation: { + enabled: { boolean: boolean }, + parametrization: { string: ['centripetal', 'chordal', 'uniform'] }, // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + alpha: { number: number }, + __type__: { object: object, boolean: boolean } + }, + drawPoints: { + enabled: { boolean: boolean }, + onRender: { 'function': 'function' }, + size: { number: number }, + style: { string: ['square', 'circle'] }, // square, circle + __type__: { object: object, boolean: boolean, 'function': 'function' } + }, + dataAxis: { + showMinorLabels: { boolean: boolean }, + showMajorLabels: { boolean: boolean }, + icons: { boolean: boolean }, + width: { string: string, number: number }, + visible: { boolean: boolean }, + alignZeros: { boolean: boolean }, + left: { + range: { min: { number: number }, max: { number: number }, __type__: { object: object } }, + format: { 'function': 'function' }, + title: { text: { string: string, number: number }, style: { string: string }, __type__: { object: object } }, + __type__: { object: object } + }, + right: { + range: { min: { number: number }, max: { number: number }, __type__: { object: object } }, + format: { 'function': 'function' }, + title: { text: { string: string, number: number }, style: { string: string }, __type__: { object: object } }, + __type__: { object: object } + }, + __type__: { object: object } + }, + legend: { + enabled: { boolean: boolean }, + icons: { boolean: boolean }, + left: { + visible: { boolean: boolean }, + position: { string: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] }, + __type__: { object: object } + }, + right: { + visible: { boolean: boolean }, + position: { string: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] }, + __type__: { object: object } + }, + __type__: { object: object, boolean: boolean } + }, + groups: { + visibility: { any: any }, + __type__: { object: object } + }, + + autoResize: { boolean: boolean }, + throttleRedraw: { number: number }, + clickToUse: { boolean: boolean }, + end: { number: number, date: date, string: string, moment: moment }, + format: { + minorLabels: { + millisecond: { string: string, 'undefined': 'undefined' }, + second: { string: string, 'undefined': 'undefined' }, + minute: { string: string, 'undefined': 'undefined' }, + hour: { string: string, 'undefined': 'undefined' }, + weekday: { string: string, 'undefined': 'undefined' }, + day: { string: string, 'undefined': 'undefined' }, + month: { string: string, 'undefined': 'undefined' }, + year: { string: string, 'undefined': 'undefined' }, + __type__: { object: object } + }, + majorLabels: { + millisecond: { string: string, 'undefined': 'undefined' }, + second: { string: string, 'undefined': 'undefined' }, + minute: { string: string, 'undefined': 'undefined' }, + hour: { string: string, 'undefined': 'undefined' }, + weekday: { string: string, 'undefined': 'undefined' }, + day: { string: string, 'undefined': 'undefined' }, + month: { string: string, 'undefined': 'undefined' }, + year: { string: string, 'undefined': 'undefined' }, + __type__: { object: object } + }, + __type__: { object: object } + }, + moment: { 'function': 'function' }, + height: { string: string, number: number }, + hiddenDates: { object: object, array: array }, + locale: { string: string }, + locales: { + __any__: { any: any }, + __type__: { object: object } + }, + max: { date: date, number: number, string: string, moment: moment }, + maxHeight: { number: number, string: string }, + min: { date: date, number: number, string: string, moment: moment }, + minHeight: { number: number, string: string }, + moveable: { boolean: boolean }, + multiselect: { boolean: boolean }, + orientation: { string: string }, + showCurrentTime: { boolean: boolean }, + showMajorLabels: { boolean: boolean }, + showMinorLabels: { boolean: boolean }, + start: { date: date, number: number, string: string, moment: moment }, + timeAxis: { + scale: { string: string, 'undefined': 'undefined' }, + step: { number: number, 'undefined': 'undefined' }, + __type__: { object: object } + }, + width: { string: string, number: number }, + zoomable: { boolean: boolean }, + zoomKey: { string: ['ctrlKey', 'altKey', 'metaKey', ''] }, + zoomMax: { number: number }, + zoomMin: { number: number }, + __type__: { object: object } + }; + + var configureOptions = { + global: { + //yAxisOrientation: ['left','right'], // TDOO: enable as soon as Grahp2d doesn't crash when changing this on the fly + sort: true, + sampling: true, + stack: false, + shaded: { + enabled: false, + orientation: ['top', 'bottom'] // top, bottom + }, + style: ['line', 'bar', 'points'], // line, bar + barChart: { + width: [50, 5, 100, 5], + sideBySide: false, + align: ['left', 'center', 'right'] // left, center, right + }, + interpolation: { + enabled: true, + parametrization: ['centripetal', 'chordal', 'uniform'] // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + }, + drawPoints: { + enabled: true, + size: [6, 2, 30, 1], + style: ['square', 'circle'] // square, circle + }, + dataAxis: { + showMinorLabels: true, + showMajorLabels: true, + icons: false, + width: [40, 0, 200, 1], + visible: true, + alignZeros: true, + left: { + //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined}, + //format: function (value) {return value;}, + title: { text: '', style: '' } + }, + right: { + //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined}, + //format: function (value) {return value;}, + title: { text: '', style: '' } + } + }, + legend: { + enabled: false, + icons: true, + left: { + visible: true, + position: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] // top/bottom - left,right + }, + right: { + visible: true, + position: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] // top/bottom - left,right + } + }, + + autoResize: true, + throttleRedraw: [10, 0, 1000, 10], + clickToUse: false, + end: '', + format: { + minorLabels: { + millisecond: 'SSS', + second: 's', + minute: 'HH:mm', + hour: 'HH:mm', + weekday: 'ddd D', + day: 'D', + month: 'MMM', + year: 'YYYY' + }, + majorLabels: { + millisecond: 'HH:mm:ss', + second: 'D MMMM HH:mm', + minute: 'ddd D MMMM', + hour: 'ddd D MMMM', + weekday: 'MMMM YYYY', + day: 'MMMM YYYY', + month: 'YYYY', + year: '' + } + }, + + height: '', + locale: '', + max: '', + maxHeight: '', + min: '', + minHeight: '', + moveable: true, + orientation: ['both', 'bottom', 'top'], + showCurrentTime: false, + showMajorLabels: true, + showMinorLabels: true, + start: '', + width: '100%', + zoomable: true, + zoomKey: ['ctrlKey', 'altKey', 'metaKey', ''], + zoomMax: [315360000000000, 10, 315360000000000, 1], + zoomMin: [10, 10, 315360000000000, 1] + } + }; + + exports.allOptions = allOptions; + exports.configureOptions = configureOptions; + +/***/ }, +/* 59 */ +/***/ function(module, exports, __webpack_require__) { + + // Load custom shapes into CanvasRenderingContext2D + 'use strict'; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + var _modulesGroups = __webpack_require__(60); + + var _modulesGroups2 = _interopRequireDefault(_modulesGroups); + + var _modulesNodesHandler = __webpack_require__(61); + + var _modulesNodesHandler2 = _interopRequireDefault(_modulesNodesHandler); + + var _modulesEdgesHandler = __webpack_require__(81); + + var _modulesEdgesHandler2 = _interopRequireDefault(_modulesEdgesHandler); + + var _modulesPhysicsEngine = __webpack_require__(90); + + var _modulesPhysicsEngine2 = _interopRequireDefault(_modulesPhysicsEngine); + + var _modulesClustering = __webpack_require__(99); + + var _modulesClustering2 = _interopRequireDefault(_modulesClustering); + + var _modulesCanvasRenderer = __webpack_require__(101); + + var _modulesCanvasRenderer2 = _interopRequireDefault(_modulesCanvasRenderer); + + var _modulesCanvas = __webpack_require__(102); + + var _modulesCanvas2 = _interopRequireDefault(_modulesCanvas); + + var _modulesView = __webpack_require__(103); + + var _modulesView2 = _interopRequireDefault(_modulesView); + + var _modulesInteractionHandler = __webpack_require__(105); + + var _modulesInteractionHandler2 = _interopRequireDefault(_modulesInteractionHandler); + + var _modulesSelectionHandler = __webpack_require__(108); + + var _modulesSelectionHandler2 = _interopRequireDefault(_modulesSelectionHandler); + + var _modulesLayoutEngine = __webpack_require__(109); + + var _modulesLayoutEngine2 = _interopRequireDefault(_modulesLayoutEngine); + + var _modulesManipulationSystem = __webpack_require__(110); + + var _modulesManipulationSystem2 = _interopRequireDefault(_modulesManipulationSystem); + + var _sharedConfigurator = __webpack_require__(45); + + var _sharedConfigurator2 = _interopRequireDefault(_sharedConfigurator); + + var _sharedValidator = __webpack_require__(47); + + var _sharedValidator2 = _interopRequireDefault(_sharedValidator); + + var _optionsJs = __webpack_require__(111); + + var _modulesKamadaKawaiJs = __webpack_require__(112); + + var _modulesKamadaKawaiJs2 = _interopRequireDefault(_modulesKamadaKawaiJs); + + /** + * @constructor Network + * Create a network visualization, displaying nodes and edges. + * + * @param {Element} container The DOM element in which the Network will + * be created. Normally a div element. + * @param {Object} data An object containing parameters + * {Array} nodes + * {Array} edges + * @param {Object} options Options + */ + __webpack_require__(114); + + var Emitter = __webpack_require__(12); + var Hammer = __webpack_require__(20); + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + var dotparser = __webpack_require__(115); + var gephiParser = __webpack_require__(116); + var Images = __webpack_require__(117); + var Activator = __webpack_require__(40); + var locales = __webpack_require__(118); + + function Network(container, data, options) { + var _this = this; + + if (!(this instanceof Network)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } + + // set constant values + this.options = {}; + this.defaultOptions = { + locale: 'en', + locales: locales, + clickToUse: false + }; + util.extend(this.options, this.defaultOptions); + + // containers for nodes and edges + this.body = { + container: container, + nodes: {}, + nodeIndices: [], + edges: {}, + edgeIndices: [], + emitter: { + on: this.on.bind(this), + off: this.off.bind(this), + emit: this.emit.bind(this), + once: this.once.bind(this) + }, + eventListeners: { + onTap: function onTap() {}, + onTouch: function onTouch() {}, + onDoubleTap: function onDoubleTap() {}, + onHold: function onHold() {}, + onDragStart: function onDragStart() {}, + onDrag: function onDrag() {}, + onDragEnd: function onDragEnd() {}, + onMouseWheel: function onMouseWheel() {}, + onPinch: function onPinch() {}, + onMouseMove: function onMouseMove() {}, + onRelease: function onRelease() {}, + onContext: function onContext() {} + }, + data: { + nodes: null, // A DataSet or DataView + edges: null // A DataSet or DataView + }, + functions: { + createNode: function createNode() {}, + createEdge: function createEdge() {}, + getPointer: function getPointer() {} + }, + modules: {}, + view: { + scale: 1, + translation: { x: 0, y: 0 } + } + }; + + // bind the event listeners + this.bindEventListeners(); + + // setting up all modules + this.images = new Images(function () { + return _this.body.emitter.emit("_requestRedraw"); + }); // object with images + this.groups = new _modulesGroups2['default'](); // object with groups + this.canvas = new _modulesCanvas2['default'](this.body); // DOM handler + this.selectionHandler = new _modulesSelectionHandler2['default'](this.body, this.canvas); // Selection handler + this.interactionHandler = new _modulesInteractionHandler2['default'](this.body, this.canvas, this.selectionHandler); // Interaction handler handles all the hammer bindings (that are bound by canvas), key + this.view = new _modulesView2['default'](this.body, this.canvas); // camera handler, does animations and zooms + this.renderer = new _modulesCanvasRenderer2['default'](this.body, this.canvas); // renderer, starts renderloop, has events that modules can hook into + this.physics = new _modulesPhysicsEngine2['default'](this.body); // physics engine, does all the simulations + this.layoutEngine = new _modulesLayoutEngine2['default'](this.body); // layout engine for inital layout and hierarchical layout + this.clustering = new _modulesClustering2['default'](this.body); // clustering api + this.manipulation = new _modulesManipulationSystem2['default'](this.body, this.canvas, this.selectionHandler); // data manipulation system + + this.nodesHandler = new _modulesNodesHandler2['default'](this.body, this.images, this.groups, this.layoutEngine); // Handle adding, deleting and updating of nodes as well as global options + this.edgesHandler = new _modulesEdgesHandler2['default'](this.body, this.images, this.groups); // Handle adding, deleting and updating of edges as well as global options + + this.body.modules["kamadaKawai"] = new _modulesKamadaKawaiJs2['default'](this.body, 150, 0.05); // Layouting algorithm. + this.body.modules["clustering"] = this.clustering; + + // create the DOM elements + this.canvas._create(); + + // apply options + this.setOptions(options); + + // load data (the disable start variable will be the same as the enabled clustering) + this.setData(data); + } + + // Extend Network with an Emitter mixin + Emitter(Network.prototype); + + /** + * Set options + * @param {Object} options + */ + Network.prototype.setOptions = function (options) { + var _this2 = this; + + if (options !== undefined) { + + var errorFound = _sharedValidator2['default'].validate(options, _optionsJs.allOptions); + if (errorFound === true) { + console.log('%cErrors have been found in the supplied options object.', _sharedValidator.printStyle); + } + + // copy the global fields over + var fields = ['locale', 'locales', 'clickToUse']; + util.selectiveDeepExtend(fields, this.options, options); + + // the hierarchical system can adapt the edges and the physics to it's own options because not all combinations work with the hierarichical system. + options = this.layoutEngine.setOptions(options.layout, options); + + this.canvas.setOptions(options); // options for canvas are in globals + + // pass the options to the modules + this.groups.setOptions(options.groups); + this.nodesHandler.setOptions(options.nodes); + this.edgesHandler.setOptions(options.edges); + this.physics.setOptions(options.physics); + this.manipulation.setOptions(options.manipulation, options, this.options); // manipulation uses the locales in the globals + + this.interactionHandler.setOptions(options.interaction); + this.renderer.setOptions(options.interaction); // options for rendering are in interaction + this.selectionHandler.setOptions(options.interaction); // options for selection are in interaction + + // reload the settings of the nodes to apply changes in groups that are not referenced by pointer. + if (options.groups !== undefined) { + this.body.emitter.emit("refreshNodes"); + } + // these two do not have options at the moment, here for completeness + //this.view.setOptions(options.view); + //this.clustering.setOptions(options.clustering); + + if ('configure' in options) { + if (!this.configurator) { + this.configurator = new _sharedConfigurator2['default'](this, this.body.container, _optionsJs.configureOptions, this.canvas.pixelRatio); + } + + this.configurator.setOptions(options.configure); + } + + // if the configuration system is enabled, copy all options and put them into the config system + if (this.configurator && this.configurator.options.enabled === true) { + var networkOptions = { nodes: {}, edges: {}, layout: {}, interaction: {}, manipulation: {}, physics: {}, global: {} }; + util.deepExtend(networkOptions.nodes, this.nodesHandler.options); + util.deepExtend(networkOptions.edges, this.edgesHandler.options); + util.deepExtend(networkOptions.layout, this.layoutEngine.options); + // load the selectionHandler and render default options in to the interaction group + util.deepExtend(networkOptions.interaction, this.selectionHandler.options); + util.deepExtend(networkOptions.interaction, this.renderer.options); + + util.deepExtend(networkOptions.interaction, this.interactionHandler.options); + util.deepExtend(networkOptions.manipulation, this.manipulation.options); + util.deepExtend(networkOptions.physics, this.physics.options); + + // load globals into the global object + util.deepExtend(networkOptions.global, this.canvas.options); + util.deepExtend(networkOptions.global, this.options); + + this.configurator.setModuleOptions(networkOptions); + } + + // handle network global options + if (options.clickToUse !== undefined) { + if (options.clickToUse === true) { + if (this.activator === undefined) { + this.activator = new Activator(this.canvas.frame); + this.activator.on('change', function () { + _this2.body.emitter.emit("activate"); + }); + } + } else { + if (this.activator !== undefined) { + this.activator.destroy(); + delete this.activator; + } + this.body.emitter.emit("activate"); + } + } else { + this.body.emitter.emit("activate"); + } + + this.canvas.setSize(); + // start the physics simulation. Can be safely called multiple times. + this.body.emitter.emit("startSimulation"); + } + }; + + /** + * Update the this.body.nodeIndices with the most recent node index list + * @private + */ + Network.prototype._updateVisibleIndices = function () { + var nodes = this.body.nodes; + var edges = this.body.edges; + this.body.nodeIndices = []; + this.body.edgeIndices = []; + + for (var nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + if (nodes[nodeId].options.hidden === false) { + this.body.nodeIndices.push(nodeId); + } + } + } + + for (var edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + if (edges[edgeId].options.hidden === false) { + this.body.edgeIndices.push(edgeId); + } + } + } + }; + + /** + * Bind all events + */ + Network.prototype.bindEventListeners = function () { + var _this3 = this; + + // this event will trigger a rebuilding of the cache everything. Used when nodes or edges have been added or removed. + this.body.emitter.on("_dataChanged", function () { + // update shortcut lists + _this3._updateVisibleIndices(); + _this3.physics.updatePhysicsData(); + _this3.body.emitter.emit("_requestRedraw"); + // call the dataUpdated event because the only difference between the two is the updating of the indices + _this3.body.emitter.emit("_dataUpdated"); + }); + + // this is called when options of EXISTING nodes or edges have changed. + this.body.emitter.on("_dataUpdated", function () { + // update values + _this3._updateValueRange(_this3.body.nodes); + _this3._updateValueRange(_this3.body.edges); + // start simulation (can be called safely, even if already running) + _this3.body.emitter.emit("startSimulation"); + _this3.body.emitter.emit("_requestRedraw"); + }); + }; + + /** + * Set nodes and edges, and optionally options as well. + * + * @param {Object} data Object containing parameters: + * {Array | DataSet | DataView} [nodes] Array with nodes + * {Array | DataSet | DataView} [edges] Array with edges + * {String} [dot] String containing data in DOT format + * {String} [gephi] String containing data in gephi JSON format + * {Options} [options] Object with options + */ + Network.prototype.setData = function (data) { + // reset the physics engine. + this.body.emitter.emit("resetPhysics"); + this.body.emitter.emit("_resetData"); + + // unselect all to ensure no selections from old data are carried over. + this.selectionHandler.unselectAll(); + + if (data && data.dot && (data.nodes || data.edges)) { + throw new SyntaxError('Data must contain either parameter "dot" or ' + ' parameter pair "nodes" and "edges", but not both.'); + } + + // set options + this.setOptions(data && data.options); + // set all data + if (data && data.dot) { + console.log('The dot property has been depricated. Please use the static convertDot method to convert DOT into vis.network format and use the normal data format with nodes and edges. This converter is used like this: var data = vis.network.convertDot(dotString);'); + // parse DOT file + var dotData = dotparser.DOTToGraph(data.dot); + this.setData(dotData); + return; + } else if (data && data.gephi) { + // parse DOT file + console.log('The gephi property has been depricated. Please use the static convertGephi method to convert gephi into vis.network format and use the normal data format with nodes and edges. This converter is used like this: var data = vis.network.convertGephi(gephiJson);'); + var gephiData = gephiParser.parseGephi(data.gephi); + this.setData(gephiData); + return; + } else { + this.nodesHandler.setData(data && data.nodes, true); + this.edgesHandler.setData(data && data.edges, true); + } + + // emit change in data + this.body.emitter.emit("_dataChanged"); + + // emit data loaded + this.body.emitter.emit("_dataLoaded"); + + // find a stable position or start animating to a stable position + this.body.emitter.emit("initPhysics"); + }; + + /** + * Cleans up all bindings of the network, removing it fully from the memory IF the variable is set to null after calling this function. + * var network = new vis.Network(..); + * network.destroy(); + * network = null; + */ + Network.prototype.destroy = function () { + this.body.emitter.emit("destroy"); + // clear events + this.body.emitter.off(); + this.off(); + + // delete modules + delete this.groups; + delete this.canvas; + delete this.selectionHandler; + delete this.interactionHandler; + delete this.view; + delete this.renderer; + delete this.physics; + delete this.layoutEngine; + delete this.clustering; + delete this.manipulation; + delete this.nodesHandler; + delete this.edgesHandler; + delete this.configurator; + delete this.images; + + for (var nodeId in this.body.nodes) { + delete this.body.nodes[nodeId]; + } + for (var edgeId in this.body.edges) { + delete this.body.edges[edgeId]; + } + + // remove the container and everything inside it recursively + util.recursiveDOMDelete(this.body.container); + }; + + /** + * Update the values of all object in the given array according to the current + * value range of the objects in the array. + * @param {Object} obj An object containing a set of Edges or Nodes + * The objects must have a method getValue() and + * setValueRange(min, max). + * @private + */ + Network.prototype._updateValueRange = function (obj) { + var id; + + // determine the range of the objects + var valueMin = undefined; + var valueMax = undefined; + var valueTotal = 0; + for (id in obj) { + if (obj.hasOwnProperty(id)) { + var value = obj[id].getValue(); + if (value !== undefined) { + valueMin = valueMin === undefined ? value : Math.min(value, valueMin); + valueMax = valueMax === undefined ? value : Math.max(value, valueMax); + valueTotal += value; + } + } + } + + // adjust the range of all objects + if (valueMin !== undefined && valueMax !== undefined) { + for (id in obj) { + if (obj.hasOwnProperty(id)) { + obj[id].setValueRange(valueMin, valueMax, valueTotal); + } + } + } + }; + + /** + * Returns true when the Network is active. + * @returns {boolean} + */ + Network.prototype.isActive = function () { + return !this.activator || this.activator.active; + }; + + Network.prototype.setSize = function () { + return this.canvas.setSize.apply(this.canvas, arguments); + }; + Network.prototype.canvasToDOM = function () { + return this.canvas.canvasToDOM.apply(this.canvas, arguments); + }; + Network.prototype.DOMtoCanvas = function () { + return this.canvas.DOMtoCanvas.apply(this.canvas, arguments); + }; + Network.prototype.findNode = function () { + return this.clustering.findNode.apply(this.clustering, arguments); + }; + Network.prototype.isCluster = function () { + return this.clustering.isCluster.apply(this.clustering, arguments); + }; + Network.prototype.openCluster = function () { + return this.clustering.openCluster.apply(this.clustering, arguments); + }; + Network.prototype.cluster = function () { + return this.clustering.cluster.apply(this.clustering, arguments); + }; + Network.prototype.getNodesInCluster = function () { + return this.clustering.getNodesInCluster.apply(this.clustering, arguments); + }; + Network.prototype.clusterByConnection = function () { + return this.clustering.clusterByConnection.apply(this.clustering, arguments); + }; + Network.prototype.clusterByHubsize = function () { + return this.clustering.clusterByHubsize.apply(this.clustering, arguments); + }; + Network.prototype.clusterOutliers = function () { + return this.clustering.clusterOutliers.apply(this.clustering, arguments); + }; + Network.prototype.getSeed = function () { + return this.layoutEngine.getSeed.apply(this.layoutEngine, arguments); + }; + Network.prototype.enableEditMode = function () { + return this.manipulation.enableEditMode.apply(this.manipulation, arguments); + }; + Network.prototype.disableEditMode = function () { + return this.manipulation.disableEditMode.apply(this.manipulation, arguments); + }; + Network.prototype.addNodeMode = function () { + return this.manipulation.addNodeMode.apply(this.manipulation, arguments); + }; + Network.prototype.editNode = function () { + return this.manipulation.editNode.apply(this.manipulation, arguments); + }; + Network.prototype.editNodeMode = function () { + console.log("Deprecated: Please use editNode instead of editNodeMode.");return this.manipulation.editNode.apply(this.manipulation, arguments); + }; + Network.prototype.addEdgeMode = function () { + return this.manipulation.addEdgeMode.apply(this.manipulation, arguments); + }; + Network.prototype.editEdgeMode = function () { + return this.manipulation.editEdgeMode.apply(this.manipulation, arguments); + }; + Network.prototype.deleteSelected = function () { + return this.manipulation.deleteSelected.apply(this.manipulation, arguments); + }; + Network.prototype.getPositions = function () { + return this.nodesHandler.getPositions.apply(this.nodesHandler, arguments); + }; + Network.prototype.storePositions = function () { + return this.nodesHandler.storePositions.apply(this.nodesHandler, arguments); + }; + Network.prototype.moveNode = function () { + return this.nodesHandler.moveNode.apply(this.nodesHandler, arguments); + }; + Network.prototype.getBoundingBox = function () { + return this.nodesHandler.getBoundingBox.apply(this.nodesHandler, arguments); + }; + Network.prototype.getConnectedNodes = function (objectId) { + if (this.body.nodes[objectId] !== undefined) { + return this.nodesHandler.getConnectedNodes.apply(this.nodesHandler, arguments); + } else { + return this.edgesHandler.getConnectedNodes.apply(this.edgesHandler, arguments); + } + }; + Network.prototype.getConnectedEdges = function () { + return this.nodesHandler.getConnectedEdges.apply(this.nodesHandler, arguments); + }; + Network.prototype.startSimulation = function () { + return this.physics.startSimulation.apply(this.physics, arguments); + }; + Network.prototype.stopSimulation = function () { + return this.physics.stopSimulation.apply(this.physics, arguments); + }; + Network.prototype.stabilize = function () { + return this.physics.stabilize.apply(this.physics, arguments); + }; + Network.prototype.getSelection = function () { + return this.selectionHandler.getSelection.apply(this.selectionHandler, arguments); + }; + Network.prototype.getSelectedNodes = function () { + return this.selectionHandler.getSelectedNodes.apply(this.selectionHandler, arguments); + }; + Network.prototype.getSelectedEdges = function () { + return this.selectionHandler.getSelectedEdges.apply(this.selectionHandler, arguments); + }; + Network.prototype.getNodeAt = function () { + var node = this.selectionHandler.getNodeAt.apply(this.selectionHandler, arguments); + if (node !== undefined && node.id !== undefined) { + return node.id; + } + return node; + }; + Network.prototype.getEdgeAt = function () { + var edge = this.selectionHandler.getEdgeAt.apply(this.selectionHandler, arguments); + if (edge !== undefined && edge.id !== undefined) { + return edge.id; + } + return edge; + }; + Network.prototype.selectNodes = function () { + return this.selectionHandler.selectNodes.apply(this.selectionHandler, arguments); + }; + Network.prototype.selectEdges = function () { + return this.selectionHandler.selectEdges.apply(this.selectionHandler, arguments); + }; + Network.prototype.unselectAll = function () { + this.selectionHandler.unselectAll.apply(this.selectionHandler, arguments); + this.redraw(); + }; + Network.prototype.redraw = function () { + return this.renderer.redraw.apply(this.renderer, arguments); + }; + Network.prototype.getScale = function () { + return this.view.getScale.apply(this.view, arguments); + }; + Network.prototype.getViewPosition = function () { + return this.view.getViewPosition.apply(this.view, arguments); + }; + Network.prototype.fit = function () { + return this.view.fit.apply(this.view, arguments); + }; + Network.prototype.moveTo = function () { + return this.view.moveTo.apply(this.view, arguments); + }; + Network.prototype.focus = function () { + return this.view.focus.apply(this.view, arguments); + }; + Network.prototype.releaseNode = function () { + return this.view.releaseNode.apply(this.view, arguments); + }; + Network.prototype.getOptionsFromConfigurator = function () { + var options = {}; + if (this.configurator) { + options = this.configurator.getOptions.apply(this.configurator); + } + return options; + }; + + module.exports = Network; + +/***/ }, +/* 60 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var util = __webpack_require__(1); + + /** + * @class Groups + * This class can store groups and options specific for groups. + */ + + var Groups = (function () { + function Groups() { + _classCallCheck(this, Groups); + + this.clear(); + this.defaultIndex = 0; + this.groupsArray = []; + this.groupIndex = 0; + + this.defaultGroups = [{ border: "#2B7CE9", background: "#97C2FC", highlight: { border: "#2B7CE9", background: "#D2E5FF" }, hover: { border: "#2B7CE9", background: "#D2E5FF" } }, // 0: blue + { border: "#FFA500", background: "#FFFF00", highlight: { border: "#FFA500", background: "#FFFFA3" }, hover: { border: "#FFA500", background: "#FFFFA3" } }, // 1: yellow + { border: "#FA0A10", background: "#FB7E81", highlight: { border: "#FA0A10", background: "#FFAFB1" }, hover: { border: "#FA0A10", background: "#FFAFB1" } }, // 2: red + { border: "#41A906", background: "#7BE141", highlight: { border: "#41A906", background: "#A1EC76" }, hover: { border: "#41A906", background: "#A1EC76" } }, // 3: green + { border: "#E129F0", background: "#EB7DF4", highlight: { border: "#E129F0", background: "#F0B3F5" }, hover: { border: "#E129F0", background: "#F0B3F5" } }, // 4: magenta + { border: "#7C29F0", background: "#AD85E4", highlight: { border: "#7C29F0", background: "#D3BDF0" }, hover: { border: "#7C29F0", background: "#D3BDF0" } }, // 5: purple + { border: "#C37F00", background: "#FFA807", highlight: { border: "#C37F00", background: "#FFCA66" }, hover: { border: "#C37F00", background: "#FFCA66" } }, // 6: orange + { border: "#4220FB", background: "#6E6EFD", highlight: { border: "#4220FB", background: "#9B9BFD" }, hover: { border: "#4220FB", background: "#9B9BFD" } }, // 7: darkblue + { border: "#FD5A77", background: "#FFC0CB", highlight: { border: "#FD5A77", background: "#FFD1D9" }, hover: { border: "#FD5A77", background: "#FFD1D9" } }, // 8: pink + { border: "#4AD63A", background: "#C2FABC", highlight: { border: "#4AD63A", background: "#E6FFE3" }, hover: { border: "#4AD63A", background: "#E6FFE3" } }, // 9: mint + + { border: "#990000", background: "#EE0000", highlight: { border: "#BB0000", background: "#FF3333" }, hover: { border: "#BB0000", background: "#FF3333" } }, // 10:bright red + + { border: "#FF6000", background: "#FF6000", highlight: { border: "#FF6000", background: "#FF6000" }, hover: { border: "#FF6000", background: "#FF6000" } }, // 12: real orange + { border: "#97C2FC", background: "#2B7CE9", highlight: { border: "#D2E5FF", background: "#2B7CE9" }, hover: { border: "#D2E5FF", background: "#2B7CE9" } }, // 13: blue + { border: "#399605", background: "#255C03", highlight: { border: "#399605", background: "#255C03" }, hover: { border: "#399605", background: "#255C03" } }, // 14: green + { border: "#B70054", background: "#FF007E", highlight: { border: "#B70054", background: "#FF007E" }, hover: { border: "#B70054", background: "#FF007E" } }, // 15: magenta + { border: "#AD85E4", background: "#7C29F0", highlight: { border: "#D3BDF0", background: "#7C29F0" }, hover: { border: "#D3BDF0", background: "#7C29F0" } }, // 16: purple + { border: "#4557FA", background: "#000EA1", highlight: { border: "#6E6EFD", background: "#000EA1" }, hover: { border: "#6E6EFD", background: "#000EA1" } }, // 17: darkblue + { border: "#FFC0CB", background: "#FD5A77", highlight: { border: "#FFD1D9", background: "#FD5A77" }, hover: { border: "#FFD1D9", background: "#FD5A77" } }, // 18: pink + { border: "#C2FABC", background: "#74D66A", highlight: { border: "#E6FFE3", background: "#74D66A" }, hover: { border: "#E6FFE3", background: "#74D66A" } }, // 19: mint + + { border: "#EE0000", background: "#990000", highlight: { border: "#FF3333", background: "#BB0000" }, hover: { border: "#FF3333", background: "#BB0000" } } // 20:bright red + ]; + + this.options = {}; + this.defaultOptions = { + useDefaultGroups: true + }; + util.extend(this.options, this.defaultOptions); + } + + _createClass(Groups, [{ + key: "setOptions", + value: function setOptions(options) { + var optionFields = ['useDefaultGroups']; + + if (options !== undefined) { + for (var groupName in options) { + if (options.hasOwnProperty(groupName)) { + if (optionFields.indexOf(groupName) === -1) { + var group = options[groupName]; + this.add(groupName, group); + } + } + } + } + } + + /** + * Clear all groups + */ + }, { + key: "clear", + value: function clear() { + this.groups = {}; + this.groupsArray = []; + } + + /** + * get group options of a groupname. If groupname is not found, a new group + * is added. + * @param {*} groupname Can be a number, string, Date, etc. + * @return {Object} group The created group, containing all group options + */ + }, { + key: "get", + value: function get(groupname) { + var group = this.groups[groupname]; + if (group === undefined) { + if (this.options.useDefaultGroups === false && this.groupsArray.length > 0) { + // create new group + var index = this.groupIndex % this.groupsArray.length; + this.groupIndex++; + group = {}; + group.color = this.groups[this.groupsArray[index]]; + this.groups[groupname] = group; + } else { + // create new group + var index = this.defaultIndex % this.defaultGroups.length; + this.defaultIndex++; + group = {}; + group.color = this.defaultGroups[index]; + this.groups[groupname] = group; + } + } + + return group; + } + + /** + * Add a custom group style + * @param {String} groupName + * @param {Object} style An object containing borderColor, + * backgroundColor, etc. + * @return {Object} group The created group object + */ + }, { + key: "add", + value: function add(groupName, style) { + this.groups[groupName] = style; + this.groupsArray.push(groupName); + return style; + } + }]); + + return Groups; + })(); + + exports["default"] = Groups; + module.exports = exports["default"]; + +/***/ }, +/* 61 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _componentsNode = __webpack_require__(62); + + var _componentsNode2 = _interopRequireDefault(_componentsNode); + + var _componentsSharedLabel = __webpack_require__(63); + + var _componentsSharedLabel2 = _interopRequireDefault(_componentsSharedLabel); + + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + + var NodesHandler = (function () { + function NodesHandler(body, images, groups, layoutEngine) { + var _this = this; + + _classCallCheck(this, NodesHandler); + + this.body = body; + this.images = images; + this.groups = groups; + this.layoutEngine = layoutEngine; + + // create the node API in the body container + this.body.functions.createNode = this.create.bind(this); + + this.nodesListeners = { + add: function add(event, params) { + _this.add(params.items); + }, + update: function update(event, params) { + _this.update(params.items, params.data); + }, + remove: function remove(event, params) { + _this.remove(params.items); + } + }; + + this.options = {}; + this.defaultOptions = { + borderWidth: 1, + borderWidthSelected: 2, + brokenImage: undefined, + color: { + border: '#2B7CE9', + background: '#97C2FC', + highlight: { + border: '#2B7CE9', + background: '#D2E5FF' + }, + hover: { + border: '#2B7CE9', + background: '#D2E5FF' + } + }, + fixed: { + x: false, + y: false + }, + font: { + color: '#343434', + size: 14, // px + face: 'arial', + background: 'none', + strokeWidth: 0, // px + strokeColor: '#ffffff', + align: 'horizontal' + }, + group: undefined, + hidden: false, + icon: { + face: 'FontAwesome', //'FontAwesome', + code: undefined, //'\uf007', + size: 50, //50, + color: '#2B7CE9' //'#aa00ff' + }, + image: undefined, // --> URL + label: undefined, + labelHighlightBold: true, + level: undefined, + mass: 1, + physics: true, + scaling: { + min: 10, + max: 30, + label: { + enabled: false, + min: 14, + max: 30, + maxVisible: 30, + drawThreshold: 5 + }, + customScalingFunction: function customScalingFunction(min, max, total, value) { + if (max === min) { + return 0.5; + } else { + var scale = 1 / (max - min); + return Math.max(0, (value - min) * scale); + } + } + }, + shadow: { + enabled: false, + size: 10, + x: 5, + y: 5 + }, + shape: 'ellipse', + shapeProperties: { + borderDashes: false, // only for borders + borderRadius: 6, // only for box shape + useImageSize: false // only for image and circularImage shapes + }, + size: 25, + title: undefined, + value: undefined, + x: undefined, + y: undefined + }; + util.extend(this.options, this.defaultOptions); + + this.bindEventListeners(); + } + + _createClass(NodesHandler, [{ + key: 'bindEventListeners', + value: function bindEventListeners() { + var _this2 = this; + + // refresh the nodes. Used when reverting from hierarchical layout + this.body.emitter.on('refreshNodes', this.refresh.bind(this)); + this.body.emitter.on('refresh', this.refresh.bind(this)); + this.body.emitter.on('destroy', function () { + delete _this2.body.functions.createNode; + delete _this2.nodesListeners.add; + delete _this2.nodesListeners.update; + delete _this2.nodesListeners.remove; + delete _this2.nodesListeners; + }); + } + }, { + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) { + _componentsNode2['default'].parseOptions(this.options, options); + + // update the shape in all nodes + if (options.shape !== undefined) { + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + this.body.nodes[nodeId].updateShape(); + } + } + } + + // update the font in all nodes + if (options.font !== undefined) { + _componentsSharedLabel2['default'].parseOptions(this.options.font, options); + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + this.body.nodes[nodeId].updateLabelModule(); + this.body.nodes[nodeId]._reset(); + } + } + } + + // update the shape size in all nodes + if (options.size !== undefined) { + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + this.body.nodes[nodeId]._reset(); + } + } + } + + // update the state of the letiables if needed + if (options.hidden !== undefined || options.physics !== undefined) { + this.body.emitter.emit('_dataChanged'); + } + } + } + + /** + * Set a data set with nodes for the network + * @param {Array | DataSet | DataView} nodes The data containing the nodes. + * @private + */ + }, { + key: 'setData', + value: function setData(nodes) { + var _this3 = this; + + var doNotEmit = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + var oldNodesData = this.body.data.nodes; + + if (nodes instanceof DataSet || nodes instanceof DataView) { + this.body.data.nodes = nodes; + } else if (Array.isArray(nodes)) { + this.body.data.nodes = new DataSet(); + this.body.data.nodes.add(nodes); + } else if (!nodes) { + this.body.data.nodes = new DataSet(); + } else { + throw new TypeError('Array or DataSet expected'); + } + + if (oldNodesData) { + // unsubscribe from old dataset + util.forEach(this.nodesListeners, function (callback, event) { + oldNodesData.off(event, callback); + }); + } + + // remove drawn nodes + this.body.nodes = {}; + + if (this.body.data.nodes) { + (function () { + // subscribe to new dataset + var me = _this3; + util.forEach(_this3.nodesListeners, function (callback, event) { + me.body.data.nodes.on(event, callback); + }); + + // draw all new nodes + var ids = _this3.body.data.nodes.getIds(); + _this3.add(ids, true); + })(); + } + + if (doNotEmit === false) { + this.body.emitter.emit("_dataChanged"); + } + } + + /** + * Add nodes + * @param {Number[] | String[]} ids + * @private + */ + }, { + key: 'add', + value: function add(ids) { + var doNotEmit = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + var id = undefined; + var newNodes = []; + for (var i = 0; i < ids.length; i++) { + id = ids[i]; + var properties = this.body.data.nodes.get(id); + var node = this.create(properties); + newNodes.push(node); + this.body.nodes[id] = node; // note: this may replace an existing node + } + + this.layoutEngine.positionInitially(newNodes); + + if (doNotEmit === false) { + this.body.emitter.emit("_dataChanged"); + } + } + + /** + * Update existing nodes, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private + */ + }, { + key: 'update', + value: function update(ids, changedData) { + var nodes = this.body.nodes; + var dataChanged = false; + for (var i = 0; i < ids.length; i++) { + var id = ids[i]; + var node = nodes[id]; + var data = changedData[i]; + if (node !== undefined) { + // update node + dataChanged = node.setOptions(data); + } else { + dataChanged = true; + // create node + node = this.create(data); + nodes[id] = node; + } + } + if (dataChanged === true) { + this.body.emitter.emit("_dataChanged"); + } else { + this.body.emitter.emit("_dataUpdated"); + } + } + + /** + * Remove existing nodes. If nodes do not exist, the method will just ignore it. + * @param {Number[] | String[]} ids + * @private + */ + }, { + key: 'remove', + value: function remove(ids) { + var nodes = this.body.nodes; + + for (var i = 0; i < ids.length; i++) { + var id = ids[i]; + delete nodes[id]; + } + + this.body.emitter.emit("_dataChanged"); + } + + /** + * create a node + * @param properties + * @param constructorClass + */ + }, { + key: 'create', + value: function create(properties) { + var constructorClass = arguments.length <= 1 || arguments[1] === undefined ? _componentsNode2['default'] : arguments[1]; + + return new constructorClass(properties, this.body, this.images, this.groups, this.options); + } + }, { + key: 'refresh', + value: function refresh() { + var clearPositions = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + var nodes = this.body.nodes; + for (var nodeId in nodes) { + var node = undefined; + if (nodes.hasOwnProperty(nodeId)) { + node = nodes[nodeId]; + } + var data = this.body.data.nodes._data[nodeId]; + if (node !== undefined && data !== undefined) { + if (clearPositions === true) { + node.setOptions({ x: null, y: null }); + } + node.setOptions({ fixed: false }); + node.setOptions(data); + } + } + } + + /** + * Returns the positions of the nodes. + * @param ids --> optional, can be array of nodeIds, can be string + * @returns {{}} + */ + }, { + key: 'getPositions', + value: function getPositions(ids) { + var dataArray = {}; + if (ids !== undefined) { + if (Array.isArray(ids) === true) { + for (var i = 0; i < ids.length; i++) { + if (this.body.nodes[ids[i]] !== undefined) { + var node = this.body.nodes[ids[i]]; + dataArray[ids[i]] = { x: Math.round(node.x), y: Math.round(node.y) }; + } + } + } else { + if (this.body.nodes[ids] !== undefined) { + var node = this.body.nodes[ids]; + dataArray[ids] = { x: Math.round(node.x), y: Math.round(node.y) }; + } + } + } else { + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var node = this.body.nodes[this.body.nodeIndices[i]]; + dataArray[this.body.nodeIndices[i]] = { x: Math.round(node.x), y: Math.round(node.y) }; + } + } + return dataArray; + } + + /** + * Load the XY positions of the nodes into the dataset. + */ + }, { + key: 'storePositions', + value: function storePositions() { + // todo: add support for clusters and hierarchical. + var dataArray = []; + var dataset = this.body.data.nodes.getDataSet(); + + for (var nodeId in dataset._data) { + if (dataset._data.hasOwnProperty(nodeId)) { + var node = this.body.nodes[nodeId]; + if (dataset._data[nodeId].x != Math.round(node.x) || dataset._data[nodeId].y != Math.round(node.y)) { + dataArray.push({ id: nodeId, x: Math.round(node.x), y: Math.round(node.y) }); + } + } + } + dataset.update(dataArray); + } + + /** + * get the bounding box of a node. + * @param nodeId + * @returns {j|*} + */ + }, { + key: 'getBoundingBox', + value: function getBoundingBox(nodeId) { + if (this.body.nodes[nodeId] !== undefined) { + return this.body.nodes[nodeId].shape.boundingBox; + } + } + + /** + * Get the Ids of nodes connected to this node. + * @param nodeId + * @returns {Array} + */ + }, { + key: 'getConnectedNodes', + value: function getConnectedNodes(nodeId) { + var nodeList = []; + if (this.body.nodes[nodeId] !== undefined) { + var node = this.body.nodes[nodeId]; + var nodeObj = {}; // used to quickly check if node already exists + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + if (edge.toId == nodeId) { + // these are double equals since ids can be numeric or string + if (nodeObj[edge.fromId] === undefined) { + nodeList.push(edge.fromId); + nodeObj[edge.fromId] = true; + } + } else if (edge.fromId == nodeId) { + // these are double equals since ids can be numeric or string + if (nodeObj[edge.toId] === undefined) { + nodeList.push(edge.toId); + nodeObj[edge.toId] = true; + } + } + } + } + return nodeList; + } + + /** + * Get the ids of the edges connected to this node. + * @param nodeId + * @returns {*} + */ + }, { + key: 'getConnectedEdges', + value: function getConnectedEdges(nodeId) { + var edgeList = []; + if (this.body.nodes[nodeId] !== undefined) { + var node = this.body.nodes[nodeId]; + for (var i = 0; i < node.edges.length; i++) { + edgeList.push(node.edges[i].id); + } + } else { + console.log("NodeId provided for getConnectedEdges does not exist. Provided: ", nodeId); + } + return edgeList; + } + + /** + * Move a node. + * @param String nodeId + * @param Number x + * @param Number y + */ + }, { + key: 'moveNode', + value: function moveNode(nodeId, x, y) { + var _this4 = this; + + if (this.body.nodes[nodeId] !== undefined) { + this.body.nodes[nodeId].x = Number(x); + this.body.nodes[nodeId].y = Number(y); + setTimeout(function () { + _this4.body.emitter.emit("startSimulation"); + }, 0); + } else { + console.log("Node id supplied to moveNode does not exist. Provided: ", nodeId); + } + } + }]); + + return NodesHandler; + })(); + + exports['default'] = NodesHandler; + module.exports = exports['default']; + +/***/ }, +/* 62 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _sharedLabel = __webpack_require__(63); + + var _sharedLabel2 = _interopRequireDefault(_sharedLabel); + + var _nodesShapesBox = __webpack_require__(64); + + var _nodesShapesBox2 = _interopRequireDefault(_nodesShapesBox); + + var _nodesShapesCircle = __webpack_require__(66); + + var _nodesShapesCircle2 = _interopRequireDefault(_nodesShapesCircle); + + var _nodesShapesCircularImage = __webpack_require__(68); + + var _nodesShapesCircularImage2 = _interopRequireDefault(_nodesShapesCircularImage); + + var _nodesShapesDatabase = __webpack_require__(69); + + var _nodesShapesDatabase2 = _interopRequireDefault(_nodesShapesDatabase); + + var _nodesShapesDiamond = __webpack_require__(70); + + var _nodesShapesDiamond2 = _interopRequireDefault(_nodesShapesDiamond); + + var _nodesShapesDot = __webpack_require__(72); + + var _nodesShapesDot2 = _interopRequireDefault(_nodesShapesDot); + + var _nodesShapesEllipse = __webpack_require__(73); + + var _nodesShapesEllipse2 = _interopRequireDefault(_nodesShapesEllipse); + + var _nodesShapesIcon = __webpack_require__(74); + + var _nodesShapesIcon2 = _interopRequireDefault(_nodesShapesIcon); + + var _nodesShapesImage = __webpack_require__(75); + + var _nodesShapesImage2 = _interopRequireDefault(_nodesShapesImage); + + var _nodesShapesSquare = __webpack_require__(76); + + var _nodesShapesSquare2 = _interopRequireDefault(_nodesShapesSquare); + + var _nodesShapesStar = __webpack_require__(77); + + var _nodesShapesStar2 = _interopRequireDefault(_nodesShapesStar); + + var _nodesShapesText = __webpack_require__(78); + + var _nodesShapesText2 = _interopRequireDefault(_nodesShapesText); + + var _nodesShapesTriangle = __webpack_require__(79); + + var _nodesShapesTriangle2 = _interopRequireDefault(_nodesShapesTriangle); + + var _nodesShapesTriangleDown = __webpack_require__(80); + + var _nodesShapesTriangleDown2 = _interopRequireDefault(_nodesShapesTriangleDown); + + var _sharedValidator = __webpack_require__(47); + + var _sharedValidator2 = _interopRequireDefault(_sharedValidator); + + var util = __webpack_require__(1); + + /** + * @class Node + * A node. A node can be connected to other nodes via one or multiple edges. + * @param {object} options An object containing options for the node. All + * options are optional, except for the id. + * {number} id Id of the node. Required + * {string} label Text label for the node + * {number} x Horizontal position of the node + * {number} y Vertical position of the node + * {string} shape Node shape, available: + * "database", "circle", "ellipse", + * "box", "image", "text", "dot", + * "star", "triangle", "triangleDown", + * "square", "icon" + * {string} image An image url + * {string} title An title text, can be HTML + * {anytype} group A group name or number + * @param {Network.Images} imagelist A list with images. Only needed + * when the node has an image + * @param {Network.Groups} grouplist A list with groups. Needed for + * retrieving group options + * @param {Object} constants An object with default values for + * example for the color + * + */ + + var Node = (function () { + function Node(options, body, imagelist, grouplist, globalOptions) { + _classCallCheck(this, Node); + + this.options = util.bridgeObject(globalOptions); + this.globalOptions = globalOptions; + this.body = body; + + this.edges = []; // all edges connected to this node + + // set defaults for the options + this.id = undefined; + this.imagelist = imagelist; + this.grouplist = grouplist; + + // state options + this.x = undefined; + this.y = undefined; + this.baseSize = this.options.size; + this.baseFontSize = this.options.font.size; + this.predefinedPosition = false; // used to check if initial fit should just take the range or approximate + this.selected = false; + this.hover = false; + + this.labelModule = new _sharedLabel2['default'](this.body, this.options); + this.setOptions(options); + } + + /** + * Attach a edge to the node + * @param {Edge} edge + */ + + _createClass(Node, [{ + key: 'attachEdge', + value: function attachEdge(edge) { + if (this.edges.indexOf(edge) === -1) { + this.edges.push(edge); + } + } + + /** + * Detach a edge from the node + * @param {Edge} edge + */ + }, { + key: 'detachEdge', + value: function detachEdge(edge) { + var index = this.edges.indexOf(edge); + if (index != -1) { + this.edges.splice(index, 1); + } + } + + /** + * Set or overwrite options for the node + * @param {Object} options an object with options + * @param {Object} constants and object with default, global options + */ + }, { + key: 'setOptions', + value: function setOptions(options) { + var currentShape = this.options.shape; + if (!options) { + return; + } + // basic options + if (options.id !== undefined) { + this.id = options.id; + } + + if (this.id === undefined) { + throw "Node must have an id"; + } + + // set these options locally + // clear x and y positions + if (options.x !== undefined) { + if (options.x === null) { + this.x = undefined;this.predefinedPosition = false; + } else { + this.x = parseInt(options.x);this.predefinedPosition = true; + } + } + if (options.y !== undefined) { + if (options.y === null) { + this.y = undefined;this.predefinedPosition = false; + } else { + this.y = parseInt(options.y);this.predefinedPosition = true; + } + } + if (options.size !== undefined) { + this.baseSize = options.size; + } + if (options.value !== undefined) { + options.value = parseFloat(options.value); + } + + // copy group options + if (typeof options.group === 'number' || typeof options.group === 'string' && options.group != '') { + var groupObj = this.grouplist.get(options.group); + util.deepExtend(this.options, groupObj); + // the color object needs to be completely defined. Since groups can partially overwrite the colors, we parse it again, just in case. + this.options.color = util.parseColor(this.options.color); + } + + // this transforms all shorthands into fully defined options + Node.parseOptions(this.options, options, true, this.globalOptions); + + // load the images + if (this.options.image !== undefined) { + if (this.imagelist) { + this.imageObj = this.imagelist.load(this.options.image, this.options.brokenImage, this.id); + } else { + throw "No imagelist provided"; + } + } + + this.updateLabelModule(); + this.updateShape(currentShape); + + if (options.hidden !== undefined || options.physics !== undefined) { + return true; + } + return false; + } + + /** + * This process all possible shorthands in the new options and makes sure that the parentOptions are fully defined. + * Static so it can also be used by the handler. + * @param parentOptions + * @param newOptions + */ + }, { + key: 'updateLabelModule', + value: function updateLabelModule() { + if (this.options.label === undefined || this.options.label === null) { + this.options.label = ''; + } + this.labelModule.setOptions(this.options, true); + if (this.labelModule.baseSize !== undefined) { + this.baseFontSize = this.labelModule.baseSize; + } + } + }, { + key: 'updateShape', + value: function updateShape(currentShape) { + if (currentShape === this.options.shape && this.shape) { + this.shape.setOptions(this.options, this.imageObj); + } else { + // choose draw method depending on the shape + switch (this.options.shape) { + case 'box': + this.shape = new _nodesShapesBox2['default'](this.options, this.body, this.labelModule); + break; + case 'circle': + this.shape = new _nodesShapesCircle2['default'](this.options, this.body, this.labelModule); + break; + case 'circularImage': + this.shape = new _nodesShapesCircularImage2['default'](this.options, this.body, this.labelModule, this.imageObj); + break; + case 'database': + this.shape = new _nodesShapesDatabase2['default'](this.options, this.body, this.labelModule); + break; + case 'diamond': + this.shape = new _nodesShapesDiamond2['default'](this.options, this.body, this.labelModule); + break; + case 'dot': + this.shape = new _nodesShapesDot2['default'](this.options, this.body, this.labelModule); + break; + case 'ellipse': + this.shape = new _nodesShapesEllipse2['default'](this.options, this.body, this.labelModule); + break; + case 'icon': + this.shape = new _nodesShapesIcon2['default'](this.options, this.body, this.labelModule); + break; + case 'image': + this.shape = new _nodesShapesImage2['default'](this.options, this.body, this.labelModule, this.imageObj); + break; + case 'square': + this.shape = new _nodesShapesSquare2['default'](this.options, this.body, this.labelModule); + break; + case 'star': + this.shape = new _nodesShapesStar2['default'](this.options, this.body, this.labelModule); + break; + case 'text': + this.shape = new _nodesShapesText2['default'](this.options, this.body, this.labelModule); + break; + case 'triangle': + this.shape = new _nodesShapesTriangle2['default'](this.options, this.body, this.labelModule); + break; + case 'triangleDown': + this.shape = new _nodesShapesTriangleDown2['default'](this.options, this.body, this.labelModule); + break; + default: + this.shape = new _nodesShapesEllipse2['default'](this.options, this.body, this.labelModule); + break; + } + } + this._reset(); + } + + /** + * select this node + */ + }, { + key: 'select', + value: function select() { + this.selected = true; + this._reset(); + } + + /** + * unselect this node + */ + }, { + key: 'unselect', + value: function unselect() { + this.selected = false; + this._reset(); + } + + /** + * Reset the calculated size of the node, forces it to recalculate its size + * @private + */ + }, { + key: '_reset', + value: function _reset() { + this.shape.width = undefined; + this.shape.height = undefined; + } + + /** + * get the title of this node. + * @return {string} title The title of the node, or undefined when no title + * has been set. + */ + }, { + key: 'getTitle', + value: function getTitle() { + return this.options.title; + } + + /** + * Calculate the distance to the border of the Node + * @param {CanvasRenderingContext2D} ctx + * @param {Number} angle Angle in radians + * @returns {number} distance Distance to the border in pixels + */ + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this.shape.distanceToBorder(ctx, angle); + } + + /** + * Check if this node has a fixed x and y position + * @return {boolean} true if fixed, false if not + */ + }, { + key: 'isFixed', + value: function isFixed() { + return this.options.fixed.x && this.options.fixed.y; + } + + /** + * check if this node is selecte + * @return {boolean} selected True if node is selected, else false + */ + }, { + key: 'isSelected', + value: function isSelected() { + return this.selected; + } + + /** + * Retrieve the value of the node. Can be undefined + * @return {Number} value + */ + }, { + key: 'getValue', + value: function getValue() { + return this.options.value; + } + + /** + * Adjust the value range of the node. The node will adjust it's size + * based on its value. + * @param {Number} min + * @param {Number} max + */ + }, { + key: 'setValueRange', + value: function setValueRange(min, max, total) { + if (this.options.value !== undefined) { + var scale = this.options.scaling.customScalingFunction(min, max, total, this.options.value); + var sizeDiff = this.options.scaling.max - this.options.scaling.min; + if (this.options.scaling.label.enabled === true) { + var fontDiff = this.options.scaling.label.max - this.options.scaling.label.min; + this.options.font.size = this.options.scaling.label.min + scale * fontDiff; + } + this.options.size = this.options.scaling.min + scale * sizeDiff; + } else { + this.options.size = this.baseSize; + this.options.font.size = this.baseFontSize; + } + } + + /** + * Draw this node in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + */ + }, { + key: 'draw', + value: function draw(ctx) { + this.shape.draw(ctx, this.x, this.y, this.selected, this.hover); + } + + /** + * Update the bounding box of the shape + */ + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(ctx) { + this.shape.updateBoundingBox(this.x, this.y, ctx); + } + + /** + * Recalculate the size of this node in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + */ + }, { + key: 'resize', + value: function resize(ctx) { + this.shape.resize(ctx, this.selected); + } + + /** + * Check if this object is overlapping with the provided object + * @param {Object} obj an object with parameters left, top, right, bottom + * @return {boolean} True if location is located on node + */ + }, { + key: 'isOverlappingWith', + value: function isOverlappingWith(obj) { + return this.shape.left < obj.right && this.shape.left + this.shape.width > obj.left && this.shape.top < obj.bottom && this.shape.top + this.shape.height > obj.top; + } + + /** + * Check if this object is overlapping with the provided object + * @param {Object} obj an object with parameters left, top, right, bottom + * @return {boolean} True if location is located on node + */ + }, { + key: 'isBoundingBoxOverlappingWith', + value: function isBoundingBoxOverlappingWith(obj) { + return this.shape.boundingBox.left < obj.right && this.shape.boundingBox.right > obj.left && this.shape.boundingBox.top < obj.bottom && this.shape.boundingBox.bottom > obj.top; + } + }], [{ + key: 'parseOptions', + value: function parseOptions(parentOptions, newOptions) { + var allowDeletion = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + var globalOptions = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3]; + + var fields = ['color', 'font', 'fixed', 'shadow']; + util.selectiveNotDeepExtend(fields, parentOptions, newOptions, allowDeletion); + + // merge the shadow options into the parent. + util.mergeOptions(parentOptions, newOptions, 'shadow', allowDeletion, globalOptions); + + // individual shape newOptions + if (newOptions.color !== undefined && newOptions.color !== null) { + var parsedColor = util.parseColor(newOptions.color); + util.fillIfDefined(parentOptions.color, parsedColor); + } else if (allowDeletion === true && newOptions.color === null) { + parentOptions.color = Object.create(globalOptions.color); // this sets the pointer of the option back to the global option. + } + + // handle the fixed options + if (newOptions.fixed !== undefined && newOptions.fixed !== null) { + if (typeof newOptions.fixed === 'boolean') { + parentOptions.fixed.x = newOptions.fixed; + parentOptions.fixed.y = newOptions.fixed; + } else { + if (newOptions.fixed.x !== undefined && typeof newOptions.fixed.x === 'boolean') { + parentOptions.fixed.x = newOptions.fixed.x; + } + if (newOptions.fixed.y !== undefined && typeof newOptions.fixed.y === 'boolean') { + parentOptions.fixed.y = newOptions.fixed.y; + } + } + } + + // handle the font options + if (newOptions.font !== undefined && newOptions.font !== null) { + _sharedLabel2['default'].parseOptions(parentOptions.font, newOptions); + } else if (allowDeletion === true && newOptions.font === null) { + parentOptions.font = Object.create(globalOptions.font); // this sets the pointer of the option back to the global option. + } + + // handle the scaling options, specifically the label part + if (newOptions.scaling !== undefined) { + util.mergeOptions(parentOptions.scaling, newOptions.scaling, 'label', allowDeletion, globalOptions.scaling); + } + } + }]); + + return Node; + })(); + + exports['default'] = Node; + module.exports = exports['default']; + +/***/ }, +/* 63 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; })(); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var util = __webpack_require__(1); + + var Label = (function () { + function Label(body, options) { + _classCallCheck(this, Label); + + this.body = body; + + this.pointToSelf = false; + this.baseSize = undefined; + this.fontOptions = {}; + this.setOptions(options); + this.size = { top: 0, left: 0, width: 0, height: 0, yLine: 0 }; // could be cached + } + + _createClass(Label, [{ + key: 'setOptions', + value: function setOptions(options) { + var allowDeletion = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + this.nodeOptions = options; + + // We want to keep the font options seperated from the node options. + // The node options have to mirror the globals when they are not overruled. + this.fontOptions = util.deepExtend({}, options.font, true); + + if (options.label !== undefined) { + this.labelDirty = true; + } + + if (options.font !== undefined) { + Label.parseOptions(this.fontOptions, options, allowDeletion); + if (typeof options.font === 'string') { + this.baseSize = this.fontOptions.size; + } else if (typeof options.font === 'object') { + if (options.font.size !== undefined) { + this.baseSize = options.font.size; + } + } + } + } + }, { + key: 'draw', + + /** + * Main function. This is called from anything that wants to draw a label. + * @param ctx + * @param x + * @param y + * @param selected + * @param baseline + */ + value: function draw(ctx, x, y, selected) { + var baseline = arguments.length <= 4 || arguments[4] === undefined ? 'middle' : arguments[4]; + + // if no label, return + if (this.nodeOptions.label === undefined) return; + + // check if we have to render the label + var viewFontSize = this.fontOptions.size * this.body.view.scale; + if (this.nodeOptions.label && viewFontSize < this.nodeOptions.scaling.label.drawThreshold - 1) return; + + // update the size cache if required + this.calculateLabelSize(ctx, selected, x, y, baseline); + + // create the fontfill background + this._drawBackground(ctx); + // draw text + this._drawText(ctx, selected, x, y, baseline); + } + + /** + * Draws the label background + * @param {CanvasRenderingContext2D} ctx + * @private + */ + }, { + key: '_drawBackground', + value: function _drawBackground(ctx) { + if (this.fontOptions.background !== undefined && this.fontOptions.background !== "none") { + ctx.fillStyle = this.fontOptions.background; + + var lineMargin = 2; + + switch (this.fontOptions.align) { + case 'middle': + ctx.fillRect(-this.size.width * 0.5, -this.size.height * 0.5, this.size.width, this.size.height); + break; + case 'top': + ctx.fillRect(-this.size.width * 0.5, -(this.size.height + lineMargin), this.size.width, this.size.height); + break; + case 'bottom': + ctx.fillRect(-this.size.width * 0.5, lineMargin, this.size.width, this.size.height); + break; + default: + ctx.fillRect(this.size.left, this.size.top - 0.5 * lineMargin, this.size.width, this.size.height); + break; + } + } + } + + /** + * + * @param ctx + * @param x + * @param baseline + * @private + */ + }, { + key: '_drawText', + value: function _drawText(ctx, selected, x, y) { + var baseline = arguments.length <= 4 || arguments[4] === undefined ? 'middle' : arguments[4]; + + var fontSize = this.fontOptions.size; + var viewFontSize = fontSize * this.body.view.scale; + // this ensures that there will not be HUGE letters on screen by setting an upper limit on the visible text size (regardless of zoomLevel) + if (viewFontSize >= this.nodeOptions.scaling.label.maxVisible) { + fontSize = Number(this.nodeOptions.scaling.label.maxVisible) / this.body.view.scale; + } + + var yLine = this.size.yLine; + + var _getColor2 = this._getColor(viewFontSize); + + var _getColor22 = _slicedToArray(_getColor2, 2); + + var fontColor = _getColor22[0]; + var strokeColor = _getColor22[1]; + + // configure context for drawing the text + + var _setAlignment2 = this._setAlignment(ctx, x, yLine, baseline); + + var _setAlignment22 = _slicedToArray(_setAlignment2, 2); + + x = _setAlignment22[0]; + yLine = _setAlignment22[1]; + ctx.font = (selected && this.nodeOptions.labelHighlightBold ? 'bold ' : '') + fontSize + "px " + this.fontOptions.face; + ctx.fillStyle = fontColor; + ctx.textAlign = 'center'; + + // set the strokeWidth + if (this.fontOptions.strokeWidth > 0) { + ctx.lineWidth = this.fontOptions.strokeWidth; + ctx.strokeStyle = strokeColor; + ctx.lineJoin = 'round'; + } + + // draw the text + for (var i = 0; i < this.lineCount; i++) { + if (this.fontOptions.strokeWidth > 0) { + ctx.strokeText(this.lines[i], x, yLine); + } + ctx.fillText(this.lines[i], x, yLine); + yLine += fontSize; + } + } + }, { + key: '_setAlignment', + value: function _setAlignment(ctx, x, yLine, baseline) { + // check for label alignment (for edges) + // TODO: make alignment for nodes + if (this.fontOptions.align !== 'horizontal' && this.pointToSelf === false) { + x = 0; + yLine = 0; + + var lineMargin = 2; + if (this.fontOptions.align === 'top') { + ctx.textBaseline = 'alphabetic'; + yLine -= 2 * lineMargin; // distance from edge, required because we use alphabetic. Alphabetic has less difference between browsers + } else if (this.fontOptions.align === 'bottom') { + ctx.textBaseline = 'hanging'; + yLine += 2 * lineMargin; // distance from edge, required because we use hanging. Hanging has less difference between browsers + } else { + ctx.textBaseline = 'middle'; + } + } else { + ctx.textBaseline = baseline; + } + + return [x, yLine]; + } + + /** + * fade in when relative scale is between threshold and threshold - 1. + * If the relative scale would be smaller than threshold -1 the draw function would have returned before coming here. + * + * @param viewFontSize + * @returns {*[]} + * @private + */ + }, { + key: '_getColor', + value: function _getColor(viewFontSize) { + var fontColor = this.fontOptions.color || '#000000'; + var strokeColor = this.fontOptions.strokeColor || '#ffffff'; + if (viewFontSize <= this.nodeOptions.scaling.label.drawThreshold) { + var opacity = Math.max(0, Math.min(1, 1 - (this.nodeOptions.scaling.label.drawThreshold - viewFontSize))); + fontColor = util.overrideOpacity(fontColor, opacity); + strokeColor = util.overrideOpacity(strokeColor, opacity); + } + return [fontColor, strokeColor]; + } + + /** + * + * @param ctx + * @param selected + * @returns {{width: number, height: number}} + */ + }, { + key: 'getTextSize', + value: function getTextSize(ctx) { + var selected = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + var size = { + width: this._processLabel(ctx, selected), + height: this.fontOptions.size * this.lineCount, + lineCount: this.lineCount + }; + return size; + } + + /** + * + * @param ctx + * @param selected + * @param x + * @param y + * @param baseline + */ + }, { + key: 'calculateLabelSize', + value: function calculateLabelSize(ctx, selected) { + var x = arguments.length <= 2 || arguments[2] === undefined ? 0 : arguments[2]; + var y = arguments.length <= 3 || arguments[3] === undefined ? 0 : arguments[3]; + var baseline = arguments.length <= 4 || arguments[4] === undefined ? 'middle' : arguments[4]; + + if (this.labelDirty === true) { + this.size.width = this._processLabel(ctx, selected); + } + this.size.height = this.fontOptions.size * this.lineCount; + this.size.left = x - this.size.width * 0.5; + this.size.top = y - this.size.height * 0.5; + this.size.yLine = y + (1 - this.lineCount) * 0.5 * this.fontOptions.size; + if (baseline === "hanging") { + this.size.top += 0.5 * this.fontOptions.size; + this.size.top += 4; // distance from node, required because we use hanging. Hanging has less difference between browsers + this.size.yLine += 4; // distance from node + } + + this.labelDirty = false; + } + + /** + * This calculates the width as well as explodes the label string and calculates the amount of lines. + * @param ctx + * @param selected + * @returns {number} + * @private + */ + }, { + key: '_processLabel', + value: function _processLabel(ctx, selected) { + var width = 0; + var lines = ['']; + var lineCount = 0; + if (this.nodeOptions.label !== undefined) { + lines = String(this.nodeOptions.label).split('\n'); + lineCount = lines.length; + ctx.font = (selected && this.nodeOptions.labelHighlightBold ? 'bold ' : '') + this.fontOptions.size + "px " + this.fontOptions.face; + width = ctx.measureText(lines[0]).width; + for (var i = 1; i < lineCount; i++) { + var lineWidth = ctx.measureText(lines[i]).width; + width = lineWidth > width ? lineWidth : width; + } + } + this.lines = lines; + this.lineCount = lineCount; + + return width; + } + }], [{ + key: 'parseOptions', + value: function parseOptions(parentOptions, newOptions) { + var allowDeletion = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + + if (typeof newOptions.font === 'string') { + var newOptionsArray = newOptions.font.split(" "); + parentOptions.size = newOptionsArray[0].replace("px", ''); + parentOptions.face = newOptionsArray[1]; + parentOptions.color = newOptionsArray[2]; + } else if (typeof newOptions.font === 'object') { + util.fillIfDefined(parentOptions, newOptions.font, allowDeletion); + } + parentOptions.size = Number(parentOptions.size); + } + }]); + + return Label; + })(); + + exports['default'] = Label; + module.exports = exports['default']; + +/***/ }, +/* 64 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilNodeBase = __webpack_require__(65); + + var _utilNodeBase2 = _interopRequireDefault(_utilNodeBase); + + var Box = (function (_NodeBase) { + _inherits(Box, _NodeBase); + + function Box(options, body, labelModule) { + _classCallCheck(this, Box); + + _get(Object.getPrototypeOf(Box.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Box, [{ + key: 'resize', + value: function resize(ctx, selected) { + if (this.width === undefined) { + var margin = 5; + var textSize = this.labelModule.getTextSize(ctx, selected); + this.width = textSize.width + 2 * margin; + this.height = textSize.height + 2 * margin; + this.radius = 0.5 * this.width; + } + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(ctx, selected); + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + + ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border; + ctx.lineWidth = selected ? selectionLineWidth : borderWidth; + ctx.lineWidth /= this.body.view.scale; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + + ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background; + + var borderRadius = this.options.shapeProperties.borderRadius; // only effective for box + ctx.roundRect(this.left, this.top, this.width, this.height, borderRadius); + + // draw shadow if enabled + this.enableShadow(ctx); + // draw the background + ctx.fill(); + // disable shadows for other elements. + this.disableShadow(ctx); + + //draw dashed border if enabled, save and restore is required for firefox not to crash on unix. + ctx.save(); + this.enableBorderDashes(ctx); + //draw the border + ctx.stroke(); + //disable dashed border for other elements + this.disableBorderDashes(ctx); + ctx.restore(); + + this.updateBoundingBox(x, y); + this.labelModule.draw(ctx, x, y, selected); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y) { + this.left = x - this.width * 0.5; + this.top = y - this.height * 0.5; + + this.boundingBox.left = this.left; + this.boundingBox.top = this.top; + this.boundingBox.bottom = this.top + this.height; + this.boundingBox.right = this.left + this.width; + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + this.resize(ctx); + var a = this.width / 2; + var b = this.height / 2; + var w = Math.sin(angle) * a; + var h = Math.cos(angle) * b; + return a * b / Math.sqrt(w * w + h * h); + } + }]); + + return Box; + })(_utilNodeBase2['default']); + + exports['default'] = Box; + module.exports = exports['default']; + +/***/ }, +/* 65 */ +/***/ function(module, exports) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var NodeBase = (function () { + function NodeBase(options, body, labelModule) { + _classCallCheck(this, NodeBase); + + this.body = body; + this.labelModule = labelModule; + this.setOptions(options); + this.top = undefined; + this.left = undefined; + this.height = undefined; + this.width = undefined; + this.radius = undefined; + this.boundingBox = { top: 0, left: 0, right: 0, bottom: 0 }; + } + + _createClass(NodeBase, [{ + key: 'setOptions', + value: function setOptions(options) { + this.options = options; + } + }, { + key: '_distanceToBorder', + value: function _distanceToBorder(ctx, angle) { + var borderWidth = 1; + this.resize(ctx); + return Math.min(Math.abs(this.width / 2 / Math.cos(angle)), Math.abs(this.height / 2 / Math.sin(angle))) + borderWidth; + } + }, { + key: 'enableShadow', + value: function enableShadow(ctx) { + if (this.options.shadow.enabled === true) { + ctx.shadowColor = 'rgba(0,0,0,0.5)'; + ctx.shadowBlur = this.options.shadow.size; + ctx.shadowOffsetX = this.options.shadow.x; + ctx.shadowOffsetY = this.options.shadow.y; + } + } + }, { + key: 'disableShadow', + value: function disableShadow(ctx) { + if (this.options.shadow.enabled === true) { + ctx.shadowColor = 'rgba(0,0,0,0)'; + ctx.shadowBlur = 0; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + } + } + }, { + key: 'enableBorderDashes', + value: function enableBorderDashes(ctx) { + if (this.options.shapeProperties.borderDashes !== false) { + if (ctx.setLineDash !== undefined) { + var dashes = this.options.shapeProperties.borderDashes; + if (dashes === true) { + dashes = [5, 15]; + } + ctx.setLineDash(dashes); + } else { + console.warn("setLineDash is not supported in this browser. The dashed borders cannot be used."); + this.options.shapeProperties.borderDashes = false; + } + } + } + }, { + key: 'disableBorderDashes', + value: function disableBorderDashes(ctx) { + if (this.options.shapeProperties.borderDashes !== false) { + if (ctx.setLineDash !== undefined) { + ctx.setLineDash([0]); + } else { + console.warn("setLineDash is not supported in this browser. The dashed borders cannot be used."); + this.options.shapeProperties.borderDashes = false; + } + } + } + }]); + + return NodeBase; + })(); + + exports['default'] = NodeBase; + module.exports = exports['default']; + +/***/ }, +/* 66 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilCircleImageBase = __webpack_require__(67); + + var _utilCircleImageBase2 = _interopRequireDefault(_utilCircleImageBase); + + var Circle = (function (_CircleImageBase) { + _inherits(Circle, _CircleImageBase); + + function Circle(options, body, labelModule) { + _classCallCheck(this, Circle); + + _get(Object.getPrototypeOf(Circle.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Circle, [{ + key: 'resize', + value: function resize(ctx, selected) { + if (this.width === undefined) { + var margin = 5; + var textSize = this.labelModule.getTextSize(ctx, selected); + var diameter = Math.max(textSize.width, textSize.height) + 2 * margin; + this.options.size = diameter / 2; + + this.width = diameter; + this.height = diameter; + this.radius = 0.5 * this.width; + } + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(ctx, selected); + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + this._drawRawCircle(ctx, x, y, selected, hover, this.options.size); + + this.boundingBox.top = y - this.options.size; + this.boundingBox.left = x - this.options.size; + this.boundingBox.right = x + this.options.size; + this.boundingBox.bottom = y + this.options.size; + + this.updateBoundingBox(x, y); + this.labelModule.draw(ctx, x, y, selected); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y) { + this.boundingBox.top = y - this.options.size; + this.boundingBox.left = x - this.options.size; + this.boundingBox.right = x + this.options.size; + this.boundingBox.bottom = y + this.options.size; + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + this.resize(ctx); + var a = this.width / 2; + var b = this.height / 2; + var w = Math.sin(angle) * a; + var h = Math.cos(angle) * b; + return a * b / Math.sqrt(w * w + h * h); + } + }]); + + return Circle; + })(_utilCircleImageBase2['default']); + + exports['default'] = Circle; + module.exports = exports['default']; + +/***/ }, +/* 67 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilNodeBase = __webpack_require__(65); + + var _utilNodeBase2 = _interopRequireDefault(_utilNodeBase); + + var CircleImageBase = (function (_NodeBase) { + _inherits(CircleImageBase, _NodeBase); + + function CircleImageBase(options, body, labelModule) { + _classCallCheck(this, CircleImageBase); + + _get(Object.getPrototypeOf(CircleImageBase.prototype), 'constructor', this).call(this, options, body, labelModule); + this.labelOffset = 0; + this.imageLoaded = false; + } + + _createClass(CircleImageBase, [{ + key: 'setOptions', + value: function setOptions(options, imageObj) { + this.options = options; + if (imageObj) { + this.imageObj = imageObj; + } + } + + /** + * This function resizes the image by the options size when the image has not yet loaded. If the image has loaded, we + * force the update of the size again. + * + * @private + */ + }, { + key: '_resizeImage', + value: function _resizeImage() { + var force = false; + if (!this.imageObj.width || !this.imageObj.height) { + // undefined or 0 + this.imageLoaded = false; + } else if (this.imageLoaded === false) { + this.imageLoaded = true; + force = true; + } + + if (!this.width || !this.height || force === true) { + // undefined or 0 + var width, height, ratio; + if (this.imageObj.width && this.imageObj.height) { + // not undefined or 0 + width = 0; + height = 0; + } + if (this.options.shapeProperties.useImageSize === false) { + if (this.imageObj.width > this.imageObj.height) { + ratio = this.imageObj.width / this.imageObj.height; + width = this.options.size * 2 * ratio || this.imageObj.width; + height = this.options.size * 2 || this.imageObj.height; + } else { + if (this.imageObj.width && this.imageObj.height) { + // not undefined or 0 + ratio = this.imageObj.height / this.imageObj.width; + } else { + ratio = 1; + } + width = this.options.size * 2; + height = this.options.size * 2 * ratio; + } + } else { + // when not using the size property, we use the image size + width = this.imageObj.width; + height = this.imageObj.height; + } + this.width = width; + this.height = height; + this.radius = 0.5 * this.width; + } + } + }, { + key: '_drawRawCircle', + value: function _drawRawCircle(ctx, x, y, selected, hover, size) { + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + + ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border; + + ctx.lineWidth = selected ? selectionLineWidth : borderWidth; + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background; + ctx.circle(x, y, size); + + // draw shadow if enabled + this.enableShadow(ctx); + // draw the background + ctx.fill(); + // disable shadows for other elements. + this.disableShadow(ctx); + + //draw dashed border if enabled, save and restore is required for firefox not to crash on unix. + ctx.save(); + this.enableBorderDashes(ctx); + //draw the border + ctx.stroke(); + //disable dashed border for other elements + this.disableBorderDashes(ctx); + ctx.restore(); + } + }, { + key: '_drawImageAtPosition', + value: function _drawImageAtPosition(ctx) { + if (this.imageObj.width != 0) { + // draw the image + ctx.globalAlpha = 1.0; + + // draw shadow if enabled + this.enableShadow(ctx); + + // draw image + ctx.drawImage(this.imageObj, this.left, this.top, this.width, this.height); + + // disable shadows for other elements. + this.disableShadow(ctx); + } + } + }, { + key: '_drawImageLabel', + value: function _drawImageLabel(ctx, x, y, selected) { + var yLabel; + var offset = 0; + + if (this.height !== undefined) { + offset = this.height * 0.5; + var labelDimensions = this.labelModule.getTextSize(ctx); + if (labelDimensions.lineCount >= 1) { + offset += labelDimensions.height / 2; + } + } + + yLabel = y + offset; + + if (this.options.label) { + this.labelOffset = offset; + } + this.labelModule.draw(ctx, x, yLabel, selected, 'hanging'); + } + }]); + + return CircleImageBase; + })(_utilNodeBase2['default']); + + exports['default'] = CircleImageBase; + module.exports = exports['default']; + +/***/ }, +/* 68 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilCircleImageBase = __webpack_require__(67); + + var _utilCircleImageBase2 = _interopRequireDefault(_utilCircleImageBase); + + var CircularImage = (function (_CircleImageBase) { + _inherits(CircularImage, _CircleImageBase); + + function CircularImage(options, body, labelModule, imageObj) { + _classCallCheck(this, CircularImage); + + _get(Object.getPrototypeOf(CircularImage.prototype), 'constructor', this).call(this, options, body, labelModule); + this.imageObj = imageObj; + this._swapToImageResizeWhenImageLoaded = true; + } + + _createClass(CircularImage, [{ + key: 'resize', + value: function resize() { + if (this.imageObj.src === undefined || this.imageObj.width === undefined || this.imageObj.height === undefined) { + if (!this.width) { + var diameter = this.options.size * 2; + this.width = diameter; + this.height = diameter; + this._swapToImageResizeWhenImageLoaded = true; + this.radius = 0.5 * this.width; + } + } else { + if (this._swapToImageResizeWhenImageLoaded) { + this.width = undefined; + this.height = undefined; + this._swapToImageResizeWhenImageLoaded = false; + } + this._resizeImage(); + } + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(); + + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + var size = Math.min(0.5 * this.height, 0.5 * this.width); + + // draw the backgroun circle. IMPORTANT: the stroke in this method is used by the clip method below. + this._drawRawCircle(ctx, x, y, selected, hover, size); + + // now we draw in the cicle, we save so we can revert the clip operation after drawing. + ctx.save(); + // clip is used to use the stroke in drawRawCircle as an area that we can draw in. + ctx.clip(); + // draw the image + this._drawImageAtPosition(ctx); + // restore so we can again draw on the full canvas + ctx.restore(); + + this._drawImageLabel(ctx, x, y, selected); + + this.updateBoundingBox(x, y); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y) { + this.boundingBox.top = y - this.options.size; + this.boundingBox.left = x - this.options.size; + this.boundingBox.right = x + this.options.size; + this.boundingBox.bottom = y + this.options.size; + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelModule.size.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelModule.size.left + this.labelModule.size.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelOffset); + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + this.resize(ctx); + return this._distanceToBorder(ctx, angle); + } + }]); + + return CircularImage; + })(_utilCircleImageBase2['default']); + + exports['default'] = CircularImage; + module.exports = exports['default']; + +/***/ }, +/* 69 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilNodeBase = __webpack_require__(65); + + var _utilNodeBase2 = _interopRequireDefault(_utilNodeBase); + + var Database = (function (_NodeBase) { + _inherits(Database, _NodeBase); + + function Database(options, body, labelModule) { + _classCallCheck(this, Database); + + _get(Object.getPrototypeOf(Database.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Database, [{ + key: 'resize', + value: function resize(ctx, selected) { + if (this.width === undefined) { + var margin = 5; + var textSize = this.labelModule.getTextSize(ctx, selected); + var size = textSize.width + 2 * margin; + this.width = size; + this.height = size; + this.radius = 0.5 * this.width; + } + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(ctx, selected); + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + + ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border; + ctx.lineWidth = this.selected ? selectionLineWidth : borderWidth; + ctx.lineWidth *= this.networkScaleInv; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + + ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background; + ctx.database(x - this.width / 2, y - this.height * 0.5, this.width, this.height); + + // draw shadow if enabled + this.enableShadow(ctx); + // draw the background + ctx.fill(); + // disable shadows for other elements. + this.disableShadow(ctx); + + //draw dashed border if enabled, save and restore is required for firefox not to crash on unix. + ctx.save(); + this.enableBorderDashes(ctx); + //draw the border + ctx.stroke(); + //disable dashed border for other elements + this.disableBorderDashes(ctx); + ctx.restore(); + + this.updateBoundingBox(x, y, ctx, selected); + this.labelModule.draw(ctx, x, y, selected); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y, ctx, selected) { + this.resize(ctx, selected); + + this.left = x - this.width * 0.5; + this.top = y - this.height * 0.5; + + this.boundingBox.left = this.left; + this.boundingBox.top = this.top; + this.boundingBox.bottom = this.top + this.height; + this.boundingBox.right = this.left + this.width; + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + this.resize(ctx); + var a = this.width / 2; + var b = this.height / 2; + var w = Math.sin(angle) * a; + var h = Math.cos(angle) * b; + return a * b / Math.sqrt(w * w + h * h); + } + }]); + + return Database; + })(_utilNodeBase2['default']); + + exports['default'] = Database; + module.exports = exports['default']; + +/***/ }, +/* 70 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilShapeBase = __webpack_require__(71); + + var _utilShapeBase2 = _interopRequireDefault(_utilShapeBase); + + var Diamond = (function (_ShapeBase) { + _inherits(Diamond, _ShapeBase); + + function Diamond(options, body, labelModule) { + _classCallCheck(this, Diamond); + + _get(Object.getPrototypeOf(Diamond.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Diamond, [{ + key: 'resize', + value: function resize(ctx) { + this._resizeShape(); + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this._drawShape(ctx, 'diamond', 4, x, y, selected, hover); + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this._distanceToBorder(ctx, angle); + } + }]); + + return Diamond; + })(_utilShapeBase2['default']); + + exports['default'] = Diamond; + module.exports = exports['default']; + +/***/ }, +/* 71 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilNodeBase = __webpack_require__(65); + + var _utilNodeBase2 = _interopRequireDefault(_utilNodeBase); + + var ShapeBase = (function (_NodeBase) { + _inherits(ShapeBase, _NodeBase); + + function ShapeBase(options, body, labelModule) { + _classCallCheck(this, ShapeBase); + + _get(Object.getPrototypeOf(ShapeBase.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(ShapeBase, [{ + key: '_resizeShape', + value: function _resizeShape() { + if (this.width === undefined) { + var size = 2 * this.options.size; + this.width = size; + this.height = size; + this.radius = 0.5 * this.width; + } + } + }, { + key: '_drawShape', + value: function _drawShape(ctx, shape, sizeMultiplier, x, y, selected, hover) { + this._resizeShape(); + + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + + ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border; + ctx.lineWidth = selected ? selectionLineWidth : borderWidth; + ctx.lineWidth /= this.body.view.scale; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background; + ctx[shape](x, y, this.options.size); + + // draw shadow if enabled + this.enableShadow(ctx); + // draw the background + ctx.fill(); + // disable shadows for other elements. + this.disableShadow(ctx); + + //draw dashed border if enabled, save and restore is required for firefox not to crash on unix. + ctx.save(); + this.enableBorderDashes(ctx); + //draw the border + ctx.stroke(); + //disable dashed border for other elements + this.disableBorderDashes(ctx); + ctx.restore(); + + if (this.options.label !== undefined) { + var yLabel = y + 0.5 * this.height + 3; // the + 3 is to offset it a bit below the node. + this.labelModule.draw(ctx, x, yLabel, selected, 'hanging'); + } + + this.updateBoundingBox(x, y); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y) { + this.boundingBox.top = y - this.options.size; + this.boundingBox.left = x - this.options.size; + this.boundingBox.right = x + this.options.size; + this.boundingBox.bottom = y + this.options.size; + + if (this.options.label !== undefined && this.labelModule.size.width > 0) { + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelModule.size.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelModule.size.left + this.labelModule.size.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelModule.size.height + 3); + } + } + }]); + + return ShapeBase; + })(_utilNodeBase2['default']); + + exports['default'] = ShapeBase; + module.exports = exports['default']; + +/***/ }, +/* 72 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilShapeBase = __webpack_require__(71); + + var _utilShapeBase2 = _interopRequireDefault(_utilShapeBase); + + var Dot = (function (_ShapeBase) { + _inherits(Dot, _ShapeBase); + + function Dot(options, body, labelModule) { + _classCallCheck(this, Dot); + + _get(Object.getPrototypeOf(Dot.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Dot, [{ + key: 'resize', + value: function resize(ctx) { + this._resizeShape(); + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this._drawShape(ctx, 'circle', 2, x, y, selected, hover); + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + this.resize(ctx); + return this.options.size + this.options.borderWidth; + } + }]); + + return Dot; + })(_utilShapeBase2['default']); + + exports['default'] = Dot; + module.exports = exports['default']; + +/***/ }, +/* 73 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilNodeBase = __webpack_require__(65); + + var _utilNodeBase2 = _interopRequireDefault(_utilNodeBase); + + var Ellipse = (function (_NodeBase) { + _inherits(Ellipse, _NodeBase); + + function Ellipse(options, body, labelModule) { + _classCallCheck(this, Ellipse); + + _get(Object.getPrototypeOf(Ellipse.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Ellipse, [{ + key: 'resize', + value: function resize(ctx, selected) { + if (this.width === undefined) { + var textSize = this.labelModule.getTextSize(ctx, selected); + + this.width = textSize.width * 1.5; + this.height = textSize.height * 2; + if (this.width < this.height) { + this.width = this.height; + } + this.radius = 0.5 * this.width; + } + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(ctx, selected); + this.left = x - this.width * 0.5; + this.top = y - this.height * 0.5; + + var borderWidth = this.options.borderWidth; + var selectionLineWidth = this.options.borderWidthSelected || 2 * this.options.borderWidth; + + ctx.strokeStyle = selected ? this.options.color.highlight.border : hover ? this.options.color.hover.border : this.options.color.border; + + ctx.lineWidth = selected ? selectionLineWidth : borderWidth; + ctx.lineWidth /= this.body.view.scale; + ctx.lineWidth = Math.min(this.width, ctx.lineWidth); + + ctx.fillStyle = selected ? this.options.color.highlight.background : hover ? this.options.color.hover.background : this.options.color.background; + ctx.ellipse(this.left, this.top, this.width, this.height); + + // draw shadow if enabled + this.enableShadow(ctx); + // draw the background + ctx.fill(); + // disable shadows for other elements. + this.disableShadow(ctx); + + //draw dashed border if enabled, save and restore is required for firefox not to crash on unix. + ctx.save(); + this.enableBorderDashes(ctx); + //draw the border + ctx.stroke(); + //disable dashed border for other elements + this.disableBorderDashes(ctx); + ctx.restore(); + + this.updateBoundingBox(x, y, ctx, selected); + this.labelModule.draw(ctx, x, y, selected); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y, ctx, selected) { + this.resize(ctx, selected); // just in case + + this.left = x - this.width * 0.5; + this.top = y - this.height * 0.5; + + this.boundingBox.left = this.left; + this.boundingBox.top = this.top; + this.boundingBox.bottom = this.top + this.height; + this.boundingBox.right = this.left + this.width; + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + this.resize(ctx); + var a = this.width * 0.5; + var b = this.height * 0.5; + var w = Math.sin(angle) * a; + var h = Math.cos(angle) * b; + return a * b / Math.sqrt(w * w + h * h); + } + }]); + + return Ellipse; + })(_utilNodeBase2['default']); + + exports['default'] = Ellipse; + module.exports = exports['default']; + +/***/ }, +/* 74 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilNodeBase = __webpack_require__(65); + + var _utilNodeBase2 = _interopRequireDefault(_utilNodeBase); + + var Icon = (function (_NodeBase) { + _inherits(Icon, _NodeBase); + + function Icon(options, body, labelModule) { + _classCallCheck(this, Icon); + + _get(Object.getPrototypeOf(Icon.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Icon, [{ + key: 'resize', + value: function resize(ctx) { + if (this.width === undefined) { + var margin = 5; + var iconSize = { + width: Number(this.options.icon.size), + height: Number(this.options.icon.size) + }; + this.width = iconSize.width + 2 * margin; + this.height = iconSize.height + 2 * margin; + this.radius = 0.5 * this.width; + } + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(ctx); + this.options.icon.size = this.options.icon.size || 50; + + this.left = x - this.width * 0.5; + this.top = y - this.height * 0.5; + this._icon(ctx, x, y, selected); + + if (this.options.label !== undefined) { + var iconTextSpacing = 5; + this.labelModule.draw(ctx, x, y + this.height * 0.5 + iconTextSpacing, selected); + } + + this.updateBoundingBox(x, y); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y) { + this.boundingBox.top = y - this.options.icon.size * 0.5; + this.boundingBox.left = x - this.options.icon.size * 0.5; + this.boundingBox.right = x + this.options.icon.size * 0.5; + this.boundingBox.bottom = y + this.options.icon.size * 0.5; + + if (this.options.label !== undefined && this.labelModule.size.width > 0) { + var iconTextSpacing = 5; + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelModule.size.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelModule.size.left + this.labelModule.size.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelModule.size.height + iconTextSpacing); + } + } + }, { + key: '_icon', + value: function _icon(ctx, x, y, selected) { + var iconSize = Number(this.options.icon.size); + + if (this.options.icon.code !== undefined) { + ctx.font = (selected ? "bold " : "") + iconSize + "px " + this.options.icon.face; + + // draw icon + ctx.fillStyle = this.options.icon.color || "black"; + ctx.textAlign = "center"; + ctx.textBaseline = "middle"; + + // draw shadow if enabled + this.enableShadow(ctx); + ctx.fillText(this.options.icon.code, x, y); + + // disable shadows for other elements. + this.disableShadow(ctx); + } else { + console.error('When using the icon shape, you need to define the code in the icon options object. This can be done per node or globally.'); + } + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this._distanceToBorder(ctx, angle); + } + }]); + + return Icon; + })(_utilNodeBase2['default']); + + exports['default'] = Icon; + module.exports = exports['default']; + +/***/ }, +/* 75 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilCircleImageBase = __webpack_require__(67); + + var _utilCircleImageBase2 = _interopRequireDefault(_utilCircleImageBase); + + var Image = (function (_CircleImageBase) { + _inherits(Image, _CircleImageBase); + + function Image(options, body, labelModule, imageObj) { + _classCallCheck(this, Image); + + _get(Object.getPrototypeOf(Image.prototype), 'constructor', this).call(this, options, body, labelModule); + this.imageObj = imageObj; + } + + _createClass(Image, [{ + key: 'resize', + value: function resize() { + this._resizeImage(); + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(); + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + this._drawImageAtPosition(ctx); + + this._drawImageLabel(ctx, x, y, selected || hover); + + this.updateBoundingBox(x, y); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y) { + this.resize(); + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + this.boundingBox.top = this.top; + this.boundingBox.left = this.left; + this.boundingBox.right = this.left + this.width; + this.boundingBox.bottom = this.top + this.height; + + if (this.options.label !== undefined && this.labelModule.size.width > 0) { + this.boundingBox.left = Math.min(this.boundingBox.left, this.labelModule.size.left); + this.boundingBox.right = Math.max(this.boundingBox.right, this.labelModule.size.left + this.labelModule.size.width); + this.boundingBox.bottom = Math.max(this.boundingBox.bottom, this.boundingBox.bottom + this.labelOffset); + } + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + this.resize(ctx); + var a = this.width / 2; + var b = this.height / 2; + var w = Math.sin(angle) * a; + var h = Math.cos(angle) * b; + return a * b / Math.sqrt(w * w + h * h); + } + }]); + + return Image; + })(_utilCircleImageBase2['default']); + + exports['default'] = Image; + module.exports = exports['default']; + +/***/ }, +/* 76 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilShapeBase = __webpack_require__(71); + + var _utilShapeBase2 = _interopRequireDefault(_utilShapeBase); + + var Square = (function (_ShapeBase) { + _inherits(Square, _ShapeBase); + + function Square(options, body, labelModule) { + _classCallCheck(this, Square); + + _get(Object.getPrototypeOf(Square.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Square, [{ + key: 'resize', + value: function resize() { + this._resizeShape(); + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this._drawShape(ctx, 'square', 2, x, y, selected, hover); + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this._distanceToBorder(ctx, angle); + } + }]); + + return Square; + })(_utilShapeBase2['default']); + + exports['default'] = Square; + module.exports = exports['default']; + +/***/ }, +/* 77 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilShapeBase = __webpack_require__(71); + + var _utilShapeBase2 = _interopRequireDefault(_utilShapeBase); + + var Star = (function (_ShapeBase) { + _inherits(Star, _ShapeBase); + + function Star(options, body, labelModule) { + _classCallCheck(this, Star); + + _get(Object.getPrototypeOf(Star.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Star, [{ + key: 'resize', + value: function resize(ctx) { + this._resizeShape(); + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this._drawShape(ctx, 'star', 4, x, y, selected, hover); + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this._distanceToBorder(ctx, angle); + } + }]); + + return Star; + })(_utilShapeBase2['default']); + + exports['default'] = Star; + module.exports = exports['default']; + +/***/ }, +/* 78 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilNodeBase = __webpack_require__(65); + + var _utilNodeBase2 = _interopRequireDefault(_utilNodeBase); + + var Text = (function (_NodeBase) { + _inherits(Text, _NodeBase); + + function Text(options, body, labelModule) { + _classCallCheck(this, Text); + + _get(Object.getPrototypeOf(Text.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Text, [{ + key: 'resize', + value: function resize(ctx, selected) { + if (this.width === undefined) { + var margin = 5; + var textSize = this.labelModule.getTextSize(ctx, selected); + this.width = textSize.width + 2 * margin; + this.height = textSize.height + 2 * margin; + this.radius = 0.5 * this.width; + } + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this.resize(ctx, selected || hover); + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + // draw shadow if enabled + this.enableShadow(ctx); + this.labelModule.draw(ctx, x, y, selected || hover); + + // disable shadows for other elements. + this.disableShadow(ctx); + + this.updateBoundingBox(x, y, ctx, selected); + } + }, { + key: 'updateBoundingBox', + value: function updateBoundingBox(x, y, ctx, selected) { + this.resize(ctx, selected); + + this.left = x - this.width / 2; + this.top = y - this.height / 2; + + this.boundingBox.top = this.top; + this.boundingBox.left = this.left; + this.boundingBox.right = this.left + this.width; + this.boundingBox.bottom = this.top + this.height; + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this._distanceToBorder(ctx, angle); + } + }]); + + return Text; + })(_utilNodeBase2['default']); + + exports['default'] = Text; + module.exports = exports['default']; + +/***/ }, +/* 79 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilShapeBase = __webpack_require__(71); + + var _utilShapeBase2 = _interopRequireDefault(_utilShapeBase); + + var Triangle = (function (_ShapeBase) { + _inherits(Triangle, _ShapeBase); + + function Triangle(options, body, labelModule) { + _classCallCheck(this, Triangle); + + _get(Object.getPrototypeOf(Triangle.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(Triangle, [{ + key: 'resize', + value: function resize(ctx) { + this._resizeShape(); + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this._drawShape(ctx, 'triangle', 3, x, y, selected, hover); + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this._distanceToBorder(ctx, angle); + } + }]); + + return Triangle; + })(_utilShapeBase2['default']); + + exports['default'] = Triangle; + module.exports = exports['default']; + +/***/ }, +/* 80 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilShapeBase = __webpack_require__(71); + + var _utilShapeBase2 = _interopRequireDefault(_utilShapeBase); + + var TriangleDown = (function (_ShapeBase) { + _inherits(TriangleDown, _ShapeBase); + + function TriangleDown(options, body, labelModule) { + _classCallCheck(this, TriangleDown); + + _get(Object.getPrototypeOf(TriangleDown.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + _createClass(TriangleDown, [{ + key: 'resize', + value: function resize(ctx) { + this._resizeShape(); + } + }, { + key: 'draw', + value: function draw(ctx, x, y, selected, hover) { + this._drawShape(ctx, 'triangleDown', 3, x, y, selected, hover); + } + }, { + key: 'distanceToBorder', + value: function distanceToBorder(ctx, angle) { + return this._distanceToBorder(ctx, angle); + } + }]); + + return TriangleDown; + })(_utilShapeBase2['default']); + + exports['default'] = TriangleDown; + module.exports = exports['default']; + +/***/ }, +/* 81 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _componentsEdge = __webpack_require__(82); + + var _componentsEdge2 = _interopRequireDefault(_componentsEdge); + + var _componentsSharedLabel = __webpack_require__(63); + + var _componentsSharedLabel2 = _interopRequireDefault(_componentsSharedLabel); + + var util = __webpack_require__(1); + var DataSet = __webpack_require__(8); + var DataView = __webpack_require__(10); + + var EdgesHandler = (function () { + function EdgesHandler(body, images, groups) { + var _this = this; + + _classCallCheck(this, EdgesHandler); + + this.body = body; + this.images = images; + this.groups = groups; + + // create the edge API in the body container + this.body.functions.createEdge = this.create.bind(this); + + this.edgesListeners = { + add: function add(event, params) { + _this.add(params.items); + }, + update: function update(event, params) { + _this.update(params.items); + }, + remove: function remove(event, params) { + _this.remove(params.items); + } + }; + + this.options = {}; + this.defaultOptions = { + arrows: { + to: { enabled: false, scaleFactor: 1 }, // boolean / {arrowScaleFactor:1} / {enabled: false, arrowScaleFactor:1} + middle: { enabled: false, scaleFactor: 1 }, + from: { enabled: false, scaleFactor: 1 } + }, + color: { + color: '#848484', + highlight: '#848484', + hover: '#848484', + inherit: 'from', + opacity: 1.0 + }, + dashes: false, + font: { + color: '#343434', + size: 14, // px + face: 'arial', + background: 'none', + strokeWidth: 2, // px + strokeColor: '#ffffff', + align: 'horizontal' + }, + hidden: false, + hoverWidth: 1.5, + label: undefined, + labelHighlightBold: true, + length: undefined, + physics: true, + scaling: { + min: 1, + max: 15, + label: { + enabled: true, + min: 14, + max: 30, + maxVisible: 30, + drawThreshold: 5 + }, + customScalingFunction: function customScalingFunction(min, max, total, value) { + if (max === min) { + return 0.5; + } else { + var scale = 1 / (max - min); + return Math.max(0, (value - min) * scale); + } + } + }, + selectionWidth: 1.5, + selfReferenceSize: 20, + shadow: { + enabled: false, + size: 10, + x: 5, + y: 5 + }, + smooth: { + enabled: true, + type: "dynamic", + forceDirection: 'none', + roundness: 0.5 + }, + title: undefined, + width: 1, + value: undefined + }; + + util.extend(this.options, this.defaultOptions); + + this.bindEventListeners(); + } + + _createClass(EdgesHandler, [{ + key: 'bindEventListeners', + value: function bindEventListeners() { + var _this2 = this; + + // this allows external modules to force all dynamic curves to turn static. + this.body.emitter.on("_forceDisableDynamicCurves", function (type) { + if (type === 'dynamic') { + type = 'continuous'; + } + var emitChange = false; + for (var edgeId in _this2.body.edges) { + if (_this2.body.edges.hasOwnProperty(edgeId)) { + var edge = _this2.body.edges[edgeId]; + var edgeData = _this2.body.data.edges._data[edgeId]; + + // only forcilby remove the smooth curve if the data has been set of the edge has the smooth curves defined. + // this is because a change in the global would not affect these curves. + if (edgeData !== undefined) { + var edgeOptions = edgeData.smooth; + if (edgeOptions !== undefined) { + if (edgeOptions.enabled === true && edgeOptions.type === 'dynamic') { + if (type === undefined) { + edge.setOptions({ smooth: false }); + } else { + edge.setOptions({ smooth: { type: type } }); + } + emitChange = true; + } + } + } + } + } + if (emitChange === true) { + _this2.body.emitter.emit("_dataChanged"); + } + }); + + // this is called when options of EXISTING nodes or edges have changed. + this.body.emitter.on("_dataUpdated", function () { + _this2.reconnectEdges(); + _this2.markAllEdgesAsDirty(); + }); + + // refresh the edges. Used when reverting from hierarchical layout + this.body.emitter.on("refreshEdges", this.refresh.bind(this)); + this.body.emitter.on("refresh", this.refresh.bind(this)); + this.body.emitter.on("destroy", function () { + delete _this2.body.functions.createEdge; + delete _this2.edgesListeners.add; + delete _this2.edgesListeners.update; + delete _this2.edgesListeners.remove; + delete _this2.edgesListeners; + }); + } + }, { + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) { + // use the parser from the Edge class to fill in all shorthand notations + _componentsEdge2['default'].parseOptions(this.options, options); + + // hanlde multiple input cases for color + if (options.color !== undefined) { + this.markAllEdgesAsDirty(); + } + + // update smooth settings in all edges + var dataChanged = false; + if (options.smooth !== undefined) { + for (var edgeId in this.body.edges) { + if (this.body.edges.hasOwnProperty(edgeId)) { + dataChanged = this.body.edges[edgeId].updateEdgeType() || dataChanged; + } + } + } + + // update fonts in all edges + if (options.font !== undefined) { + // use the parser from the Label class to fill in all shorthand notations + _componentsSharedLabel2['default'].parseOptions(this.options.font, options); + for (var edgeId in this.body.edges) { + if (this.body.edges.hasOwnProperty(edgeId)) { + this.body.edges[edgeId].updateLabelModule(); + } + } + } + + // update the state of the variables if needed + if (options.hidden !== undefined || options.physics !== undefined || dataChanged === true) { + this.body.emitter.emit('_dataChanged'); + } + } + } + + /** + * Load edges by reading the data table + * @param {Array | DataSet | DataView} edges The data containing the edges. + * @private + * @private + */ + }, { + key: 'setData', + value: function setData(edges) { + var _this3 = this; + + var doNotEmit = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + var oldEdgesData = this.body.data.edges; + + if (edges instanceof DataSet || edges instanceof DataView) { + this.body.data.edges = edges; + } else if (Array.isArray(edges)) { + this.body.data.edges = new DataSet(); + this.body.data.edges.add(edges); + } else if (!edges) { + this.body.data.edges = new DataSet(); + } else { + throw new TypeError('Array or DataSet expected'); + } + + // TODO: is this null or undefined or false? + if (oldEdgesData) { + // unsubscribe from old dataset + util.forEach(this.edgesListeners, function (callback, event) { + oldEdgesData.off(event, callback); + }); + } + + // remove drawn edges + this.body.edges = {}; + + // TODO: is this null or undefined or false? + if (this.body.data.edges) { + // subscribe to new dataset + util.forEach(this.edgesListeners, function (callback, event) { + _this3.body.data.edges.on(event, callback); + }); + + // draw all new nodes + var ids = this.body.data.edges.getIds(); + this.add(ids, true); + } + + if (doNotEmit === false) { + this.body.emitter.emit("_dataChanged"); + } + } + + /** + * Add edges + * @param {Number[] | String[]} ids + * @private + */ + }, { + key: 'add', + value: function add(ids) { + var doNotEmit = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + var edges = this.body.edges; + var edgesData = this.body.data.edges; + + for (var i = 0; i < ids.length; i++) { + var id = ids[i]; + + var oldEdge = edges[id]; + if (oldEdge) { + oldEdge.disconnect(); + } + + var data = edgesData.get(id, { "showInternalIds": true }); + edges[id] = this.create(data); + } + + if (doNotEmit === false) { + this.body.emitter.emit("_dataChanged"); + } + } + + /** + * Update existing edges, or create them when not yet existing + * @param {Number[] | String[]} ids + * @private + */ + }, { + key: 'update', + value: function update(ids) { + var edges = this.body.edges; + var edgesData = this.body.data.edges; + var dataChanged = false; + for (var i = 0; i < ids.length; i++) { + var id = ids[i]; + var data = edgesData.get(id); + var edge = edges[id]; + if (edge !== undefined) { + // update edge + edge.disconnect(); + dataChanged = edge.setOptions(data) || dataChanged; // if a support node is added, data can be changed. + edge.connect(); + } else { + // create edge + this.body.edges[id] = this.create(data); + dataChanged = true; + } + } + + if (dataChanged === true) { + this.body.emitter.emit("_dataChanged"); + } else { + this.body.emitter.emit("_dataUpdated"); + } + } + + /** + * Remove existing edges. Non existing ids will be ignored + * @param {Number[] | String[]} ids + * @private + */ + }, { + key: 'remove', + value: function remove(ids) { + var edges = this.body.edges; + for (var i = 0; i < ids.length; i++) { + var id = ids[i]; + var edge = edges[id]; + if (edge !== undefined) { + edge.cleanup(); + edge.disconnect(); + delete edges[id]; + } + } + + this.body.emitter.emit("_dataChanged"); + } + }, { + key: 'refresh', + value: function refresh() { + var edges = this.body.edges; + for (var edgeId in edges) { + var edge = undefined; + if (edges.hasOwnProperty(edgeId)) { + edge = edges[edgeId]; + } + var data = this.body.data.edges._data[edgeId]; + if (edge !== undefined && data !== undefined) { + edge.setOptions(data); + } + } + } + }, { + key: 'create', + value: function create(properties) { + return new _componentsEdge2['default'](properties, this.body, this.options); + } + }, { + key: 'markAllEdgesAsDirty', + value: function markAllEdgesAsDirty() { + for (var edgeId in this.body.edges) { + this.body.edges[edgeId].edgeType.colorDirty = true; + } + } + + /** + * Reconnect all edges + * @private + */ + }, { + key: 'reconnectEdges', + value: function reconnectEdges() { + var id; + var nodes = this.body.nodes; + var edges = this.body.edges; + + for (id in nodes) { + if (nodes.hasOwnProperty(id)) { + nodes[id].edges = []; + } + } + + for (id in edges) { + if (edges.hasOwnProperty(id)) { + var edge = edges[id]; + edge.from = null; + edge.to = null; + edge.connect(); + } + } + } + }, { + key: 'getConnectedNodes', + value: function getConnectedNodes(edgeId) { + var nodeList = []; + if (this.body.edges[edgeId] !== undefined) { + var edge = this.body.edges[edgeId]; + if (edge.fromId) { + nodeList.push(edge.fromId); + } + if (edge.toId) { + nodeList.push(edge.toId); + } + } + return nodeList; + } + }]); + + return EdgesHandler; + })(); + + exports['default'] = EdgesHandler; + module.exports = exports['default']; + +/***/ }, +/* 82 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _sharedLabel = __webpack_require__(63); + + var _sharedLabel2 = _interopRequireDefault(_sharedLabel); + + var _edgesCubicBezierEdge = __webpack_require__(83); + + var _edgesCubicBezierEdge2 = _interopRequireDefault(_edgesCubicBezierEdge); + + var _edgesBezierEdgeDynamic = __webpack_require__(87); + + var _edgesBezierEdgeDynamic2 = _interopRequireDefault(_edgesBezierEdgeDynamic); + + var _edgesBezierEdgeStatic = __webpack_require__(88); + + var _edgesBezierEdgeStatic2 = _interopRequireDefault(_edgesBezierEdgeStatic); + + var _edgesStraightEdge = __webpack_require__(89); + + var _edgesStraightEdge2 = _interopRequireDefault(_edgesStraightEdge); + + /** + * @class Edge + * + * A edge connects two nodes + * @param {Object} properties Object with options. Must contain + * At least options from and to. + * Available options: from (number), + * to (number), label (string, color (string), + * width (number), style (string), + * length (number), title (string) + * @param {Network} network A Network object, used to find and edge to + * nodes. + * @param {Object} constants An object with default values for + * example for the color + */ + var util = __webpack_require__(1); + + var Edge = (function () { + function Edge(options, body, globalOptions) { + _classCallCheck(this, Edge); + + if (body === undefined) { + throw "No body provided"; + } + this.options = util.bridgeObject(globalOptions); + this.globalOptions = globalOptions; + this.body = body; + + // initialize variables + this.id = undefined; + this.fromId = undefined; + this.toId = undefined; + this.selected = false; + this.hover = false; + this.labelDirty = true; + this.colorDirty = true; + + this.baseWidth = this.options.width; + this.baseFontSize = this.options.font.size; + + this.from = undefined; // a node + this.to = undefined; // a node + + this.edgeType = undefined; + + this.connected = false; + + this.labelModule = new _sharedLabel2['default'](this.body, this.options); + + this.setOptions(options); + } + + /** + * Set or overwrite options for the edge + * @param {Object} options an object with options + * @param doNotEmit + */ + + _createClass(Edge, [{ + key: 'setOptions', + value: function setOptions(options) { + if (!options) { + return; + } + this.colorDirty = true; + + Edge.parseOptions(this.options, options, true, this.globalOptions); + + if (options.id !== undefined) { + this.id = options.id; + } + if (options.from !== undefined) { + this.fromId = options.from; + } + if (options.to !== undefined) { + this.toId = options.to; + } + if (options.title !== undefined) { + this.title = options.title; + } + if (options.value !== undefined) { + options.value = parseFloat(options.value); + } + + // update label Module + this.updateLabelModule(); + + var dataChanged = this.updateEdgeType(); + + // if anything has been updates, reset the selection width and the hover width + this._setInteractionWidths(); + + // A node is connected when it has a from and to node that both exist in the network.body.nodes. + this.connect(); + + if (options.hidden !== undefined || options.physics !== undefined) { + dataChanged = true; + } + + return dataChanged; + } + }, { + key: 'updateLabelModule', + // this sets the pointer of the option back to the global option. + + /** + * update the options in the label module + */ + value: function updateLabelModule() { + this.labelModule.setOptions(this.options, true); + if (this.labelModule.baseSize !== undefined) { + this.baseFontSize = this.labelModule.baseSize; + } + } + + /** + * update the edge type, set the options + * @returns {boolean} + */ + }, { + key: 'updateEdgeType', + value: function updateEdgeType() { + var dataChanged = false; + var changeInType = true; + var smooth = this.options.smooth; + if (this.edgeType !== undefined) { + if (this.edgeType instanceof _edgesBezierEdgeDynamic2['default'] && smooth.enabled === true && smooth.type === 'dynamic') { + changeInType = false; + } + if (this.edgeType instanceof _edgesCubicBezierEdge2['default'] && smooth.enabled === true && smooth.type === 'cubicBezier') { + changeInType = false; + } + if (this.edgeType instanceof _edgesBezierEdgeStatic2['default'] && smooth.enabled === true && smooth.type !== 'dynamic' && smooth.type !== 'cubicBezier') { + changeInType = false; + } + if (this.edgeType instanceof _edgesStraightEdge2['default'] && smooth.enabled === false) { + changeInType = false; + } + + if (changeInType === true) { + dataChanged = this.cleanup(); + } + } + + if (changeInType === true) { + if (this.options.smooth.enabled === true) { + if (this.options.smooth.type === 'dynamic') { + dataChanged = true; + this.edgeType = new _edgesBezierEdgeDynamic2['default'](this.options, this.body, this.labelModule); + } else if (this.options.smooth.type === 'cubicBezier') { + this.edgeType = new _edgesCubicBezierEdge2['default'](this.options, this.body, this.labelModule); + } else { + this.edgeType = new _edgesBezierEdgeStatic2['default'](this.options, this.body, this.labelModule); + } + } else { + this.edgeType = new _edgesStraightEdge2['default'](this.options, this.body, this.labelModule); + } + } else { + // if nothing changes, we just set the options. + this.edgeType.setOptions(this.options); + } + + return dataChanged; + } + + /** + * Connect an edge to its nodes + */ + }, { + key: 'connect', + value: function connect() { + this.disconnect(); + + this.from = this.body.nodes[this.fromId] || undefined; + this.to = this.body.nodes[this.toId] || undefined; + this.connected = this.from !== undefined && this.to !== undefined; + + if (this.connected === true) { + this.from.attachEdge(this); + this.to.attachEdge(this); + } else { + if (this.from) { + this.from.detachEdge(this); + } + if (this.to) { + this.to.detachEdge(this); + } + } + + this.edgeType.connect(); + } + + /** + * Disconnect an edge from its nodes + */ + }, { + key: 'disconnect', + value: function disconnect() { + if (this.from) { + this.from.detachEdge(this); + this.from = undefined; + } + if (this.to) { + this.to.detachEdge(this); + this.to = undefined; + } + + this.connected = false; + } + + /** + * get the title of this edge. + * @return {string} title The title of the edge, or undefined when no title + * has been set. + */ + }, { + key: 'getTitle', + value: function getTitle() { + return this.title; + } + + /** + * check if this node is selecte + * @return {boolean} selected True if node is selected, else false + */ + }, { + key: 'isSelected', + value: function isSelected() { + return this.selected; + } + + /** + * Retrieve the value of the edge. Can be undefined + * @return {Number} value + */ + }, { + key: 'getValue', + value: function getValue() { + return this.options.value; + } + + /** + * Adjust the value range of the edge. The edge will adjust it's width + * based on its value. + * @param {Number} min + * @param {Number} max + * @param total + */ + }, { + key: 'setValueRange', + value: function setValueRange(min, max, total) { + if (this.options.value !== undefined) { + var scale = this.options.scaling.customScalingFunction(min, max, total, this.options.value); + var widthDiff = this.options.scaling.max - this.options.scaling.min; + if (this.options.scaling.label.enabled === true) { + var fontDiff = this.options.scaling.label.max - this.options.scaling.label.min; + this.options.font.size = this.options.scaling.label.min + scale * fontDiff; + } + this.options.width = this.options.scaling.min + scale * widthDiff; + } else { + this.options.width = this.baseWidth; + this.options.font.size = this.baseFontSize; + } + + this._setInteractionWidths(); + } + }, { + key: '_setInteractionWidths', + value: function _setInteractionWidths() { + if (typeof this.options.hoverWidth === 'function') { + this.edgeType.hoverWidth = this.options.hoverWidth(this.options.width); + } else { + this.edgeType.hoverWidth = this.options.hoverWidth + this.options.width; + } + + if (typeof this.options.selectionWidth === 'function') { + this.edgeType.selectionWidth = this.options.selectionWidth(this.options.width); + } else { + this.edgeType.selectionWidth = this.options.selectionWidth + this.options.width; + } + } + + /** + * Redraw a edge + * Draw this edge in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + */ + }, { + key: 'draw', + value: function draw(ctx) { + var via = this.edgeType.drawLine(ctx, this.selected, this.hover); + this.drawArrows(ctx, via); + this.drawLabel(ctx, via); + } + }, { + key: 'drawArrows', + value: function drawArrows(ctx, viaNode) { + if (this.options.arrows.from.enabled === true) { + this.edgeType.drawArrowHead(ctx, 'from', viaNode, this.selected, this.hover); + } + if (this.options.arrows.middle.enabled === true) { + this.edgeType.drawArrowHead(ctx, 'middle', viaNode, this.selected, this.hover); + } + if (this.options.arrows.to.enabled === true) { + this.edgeType.drawArrowHead(ctx, 'to', viaNode, this.selected, this.hover); + } + } + }, { + key: 'drawLabel', + value: function drawLabel(ctx, viaNode) { + if (this.options.label !== undefined) { + // set style + var node1 = this.from; + var node2 = this.to; + var selected = this.from.selected || this.to.selected || this.selected; + if (node1.id != node2.id) { + this.labelModule.pointToSelf = false; + var point = this.edgeType.getPoint(0.5, viaNode); + ctx.save(); + + // if the label has to be rotated: + if (this.options.font.align !== "horizontal") { + this.labelModule.calculateLabelSize(ctx, selected, point.x, point.y); + ctx.translate(point.x, this.labelModule.size.yLine); + this._rotateForLabelAlignment(ctx); + } + + // draw the label + this.labelModule.draw(ctx, point.x, point.y, selected); + ctx.restore(); + } else { + // Ignore the orientations. + this.labelModule.pointToSelf = true; + var x, y; + var radius = this.options.selfReferenceSize; + if (node1.shape.width > node1.shape.height) { + x = node1.x + node1.shape.width * 0.5; + y = node1.y - radius; + } else { + x = node1.x + radius; + y = node1.y - node1.shape.height * 0.5; + } + point = this._pointOnCircle(x, y, radius, 0.125); + this.labelModule.draw(ctx, point.x, point.y, selected); + } + } + } + + /** + * Check if this object is overlapping with the provided object + * @param {Object} obj an object with parameters left, top + * @return {boolean} True if location is located on the edge + */ + }, { + key: 'isOverlappingWith', + value: function isOverlappingWith(obj) { + if (this.connected) { + var distMax = 10; + var xFrom = this.from.x; + var yFrom = this.from.y; + var xTo = this.to.x; + var yTo = this.to.y; + var xObj = obj.left; + var yObj = obj.top; + + var dist = this.edgeType.getDistanceToEdge(xFrom, yFrom, xTo, yTo, xObj, yObj); + + return dist < distMax; + } else { + return false; + } + } + + /** + * Rotates the canvas so the text is most readable + * @param {CanvasRenderingContext2D} ctx + * @private + */ + }, { + key: '_rotateForLabelAlignment', + value: function _rotateForLabelAlignment(ctx) { + var dy = this.from.y - this.to.y; + var dx = this.from.x - this.to.x; + var angleInDegrees = Math.atan2(dy, dx); + + // rotate so label it is readable + if (angleInDegrees < -1 && dx < 0 || angleInDegrees > 0 && dx < 0) { + angleInDegrees = angleInDegrees + Math.PI; + } + + ctx.rotate(angleInDegrees); + } + + /** + * Get a point on a circle + * @param {Number} x + * @param {Number} y + * @param {Number} radius + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point + * @private + */ + }, { + key: '_pointOnCircle', + value: function _pointOnCircle(x, y, radius, percentage) { + var angle = percentage * 2 * Math.PI; + return { + x: x + radius * Math.cos(angle), + y: y - radius * Math.sin(angle) + }; + } + }, { + key: 'select', + value: function select() { + this.selected = true; + } + }, { + key: 'unselect', + value: function unselect() { + this.selected = false; + } + + /** + * cleans all required things on delete + * @returns {*} + */ + }, { + key: 'cleanup', + value: function cleanup() { + return this.edgeType.cleanup(); + } + }], [{ + key: 'parseOptions', + value: function parseOptions(parentOptions, newOptions) { + var allowDeletion = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + var globalOptions = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3]; + + var fields = ['id', 'from', 'hidden', 'hoverWidth', 'label', 'labelHighlightBold', 'length', 'line', 'opacity', 'physics', 'scaling', 'selectionWidth', 'selfReferenceSize', 'to', 'title', 'value', 'width']; + + // only deep extend the items in the field array. These do not have shorthand. + util.selectiveDeepExtend(fields, parentOptions, newOptions, allowDeletion); + + util.mergeOptions(parentOptions, newOptions, 'smooth', allowDeletion, globalOptions); + util.mergeOptions(parentOptions, newOptions, 'shadow', allowDeletion, globalOptions); + + if (newOptions.dashes !== undefined && newOptions.dashes !== null) { + parentOptions.dashes = newOptions.dashes; + } else if (allowDeletion === true && newOptions.dashes === null) { + parentOptions.dashes = Object.create(globalOptions.dashes); // this sets the pointer of the option back to the global option. + } + + // set the scaling newOptions + if (newOptions.scaling !== undefined && newOptions.scaling !== null) { + if (newOptions.scaling.min !== undefined) { + parentOptions.scaling.min = newOptions.scaling.min; + } + if (newOptions.scaling.max !== undefined) { + parentOptions.scaling.max = newOptions.scaling.max; + } + util.mergeOptions(parentOptions.scaling, newOptions.scaling, 'label', allowDeletion, globalOptions.scaling); + } else if (allowDeletion === true && newOptions.scaling === null) { + parentOptions.scaling = Object.create(globalOptions.scaling); // this sets the pointer of the option back to the global option. + } + + // hanlde multiple input cases for arrows + if (newOptions.arrows !== undefined && newOptions.arrows !== null) { + if (typeof newOptions.arrows === 'string') { + var arrows = newOptions.arrows.toLowerCase(); + if (arrows.indexOf("to") != -1) { + parentOptions.arrows.to.enabled = true; + } + if (arrows.indexOf("middle") != -1) { + parentOptions.arrows.middle.enabled = true; + } + if (arrows.indexOf("from") != -1) { + parentOptions.arrows.from.enabled = true; + } + } else if (typeof newOptions.arrows === 'object') { + util.mergeOptions(parentOptions.arrows, newOptions.arrows, 'to', allowDeletion, globalOptions.arrows); + util.mergeOptions(parentOptions.arrows, newOptions.arrows, 'middle', allowDeletion, globalOptions.arrows); + util.mergeOptions(parentOptions.arrows, newOptions.arrows, 'from', allowDeletion, globalOptions.arrows); + } else { + throw new Error("The arrow newOptions can only be an object or a string. Refer to the documentation. You used:" + JSON.stringify(newOptions.arrows)); + } + } else if (allowDeletion === true && newOptions.arrows === null) { + parentOptions.arrows = Object.create(globalOptions.arrows); // this sets the pointer of the option back to the global option. + } + + // hanlde multiple input cases for color + if (newOptions.color !== undefined && newOptions.color !== null) { + if (util.isString(newOptions.color)) { + parentOptions.color.color = newOptions.color; + parentOptions.color.highlight = newOptions.color; + parentOptions.color.hover = newOptions.color; + parentOptions.color.inherit = false; + } else { + var colorsDefined = false; + if (newOptions.color.color !== undefined) { + parentOptions.color.color = newOptions.color.color;colorsDefined = true; + } + if (newOptions.color.highlight !== undefined) { + parentOptions.color.highlight = newOptions.color.highlight;colorsDefined = true; + } + if (newOptions.color.hover !== undefined) { + parentOptions.color.hover = newOptions.color.hover;colorsDefined = true; + } + if (newOptions.color.inherit !== undefined) { + parentOptions.color.inherit = newOptions.color.inherit; + } + if (newOptions.color.opacity !== undefined) { + parentOptions.color.opacity = Math.min(1, Math.max(0, newOptions.color.opacity)); + } + + if (newOptions.color.inherit === undefined && colorsDefined === true) { + parentOptions.color.inherit = false; + } + } + } else if (allowDeletion === true && newOptions.color === null) { + parentOptions.color = Object.create(globalOptions.color); // this sets the pointer of the option back to the global option. + } + + // handle the font settings + if (newOptions.font !== undefined && newOptions.font !== null) { + _sharedLabel2['default'].parseOptions(parentOptions.font, newOptions); + } else if (allowDeletion === true && newOptions.font === null) { + parentOptions.font = Object.create(globalOptions.font); + } + } + }]); + + return Edge; + })(); + + exports['default'] = Edge; + module.exports = exports['default']; + +/***/ }, +/* 83 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; })(); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x3, _x4, _x5) { var _again = true; _function: while (_again) { var object = _x3, property = _x4, receiver = _x5; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x3 = parent; _x4 = property; _x5 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilCubicBezierEdgeBase = __webpack_require__(84); + + var _utilCubicBezierEdgeBase2 = _interopRequireDefault(_utilCubicBezierEdgeBase); + + var CubicBezierEdge = (function (_CubicBezierEdgeBase) { + _inherits(CubicBezierEdge, _CubicBezierEdgeBase); + + function CubicBezierEdge(options, body, labelModule) { + _classCallCheck(this, CubicBezierEdge); + + _get(Object.getPrototypeOf(CubicBezierEdge.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + /** + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private + */ + + _createClass(CubicBezierEdge, [{ + key: '_line', + value: function _line(ctx) { + // get the coordinates of the support points. + + var _getViaCoordinates2 = this._getViaCoordinates(); + + var _getViaCoordinates22 = _slicedToArray(_getViaCoordinates2, 2); + + var via1 = _getViaCoordinates22[0]; + var via2 = _getViaCoordinates22[1]; + + var returnValue = [via1, via2]; + + // start drawing the line. + ctx.beginPath(); + ctx.moveTo(this.from.x, this.from.y); + + // fallback to normal straight edges + if (via1.x === undefined) { + ctx.lineTo(this.to.x, this.to.y); + returnValue = undefined; + } else { + ctx.bezierCurveTo(via1.x, via1.y, via2.x, via2.y, this.to.x, this.to.y); + } + // draw shadow if enabled + this.enableShadow(ctx); + ctx.stroke(); + this.disableShadow(ctx); + return returnValue; + } + }, { + key: '_getViaCoordinates', + value: function _getViaCoordinates() { + var dx = this.from.x - this.to.x; + var dy = this.from.y - this.to.y; + + var x1 = undefined, + y1 = undefined, + x2 = undefined, + y2 = undefined; + var roundness = this.options.smooth.roundness;; + + // horizontal if x > y or if direction is forced or if direction is horizontal + if ((Math.abs(dx) > Math.abs(dy) || this.options.smooth.forceDirection === true || this.options.smooth.forceDirection === 'horizontal') && this.options.smooth.forceDirection !== 'vertical') { + y1 = this.from.y; + y2 = this.to.y; + x1 = this.from.x - roundness * dx; + x2 = this.to.x + roundness * dx; + } else { + y1 = this.from.y - roundness * dy; + y2 = this.to.y + roundness * dy; + x1 = this.from.x; + x2 = this.to.x; + } + + return [{ x: x1, y: y1 }, { x: x2, y: y2 }]; + } + }, { + key: '_findBorderPosition', + value: function _findBorderPosition(nearNode, ctx) { + return this._findBorderPositionBezier(nearNode, ctx); + } + }, { + key: '_getDistanceToEdge', + value: function _getDistanceToEdge(x1, y1, x2, y2, x3, y3) { + var _ref = arguments.length <= 6 || arguments[6] === undefined ? this._getViaCoordinates() : arguments[6]; + + var _ref2 = _slicedToArray(_ref, 2); + + var via1 = _ref2[0]; + var via2 = _ref2[1]; + // x3,y3 is the point + return this._getDistanceToBezierEdge(x1, y1, x2, y2, x3, y3, via1, via2); + } + + /** + * Combined function of pointOnLine and pointOnBezier. This gives the coordinates of a point on the line at a certain percentage of the way + * @param percentage + * @param via + * @returns {{x: number, y: number}} + * @private + */ + }, { + key: 'getPoint', + value: function getPoint(percentage) { + var _ref3 = arguments.length <= 1 || arguments[1] === undefined ? this._getViaCoordinates() : arguments[1]; + + var _ref32 = _slicedToArray(_ref3, 2); + + var via1 = _ref32[0]; + var via2 = _ref32[1]; + + var t = percentage; + var vec = []; + vec[0] = Math.pow(1 - t, 3); + vec[1] = 3 * t * Math.pow(1 - t, 2); + vec[2] = 3 * Math.pow(t, 2) * (1 - t); + vec[3] = Math.pow(t, 3); + var x = vec[0] * this.from.x + vec[1] * via1.x + vec[2] * via2.x + vec[3] * this.to.x; + var y = vec[0] * this.from.y + vec[1] * via1.y + vec[2] * via2.y + vec[3] * this.to.y; + + return { x: x, y: y }; + } + }]); + + return CubicBezierEdge; + })(_utilCubicBezierEdgeBase2['default']); + + exports['default'] = CubicBezierEdge; + module.exports = exports['default']; + +/***/ }, +/* 84 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _BezierEdgeBase2 = __webpack_require__(85); + + var _BezierEdgeBase3 = _interopRequireDefault(_BezierEdgeBase2); + + var CubicBezierEdgeBase = (function (_BezierEdgeBase) { + _inherits(CubicBezierEdgeBase, _BezierEdgeBase); + + function CubicBezierEdgeBase(options, body, labelModule) { + _classCallCheck(this, CubicBezierEdgeBase); + + _get(Object.getPrototypeOf(CubicBezierEdgeBase.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + /** + * Calculate the distance between a point (x3,y3) and a line segment from + * (x1,y1) to (x2,y2). + * http://stackoverflow.com/questions/849211/shortest-distancae-between-a-point-and-a-line-segment + * https://en.wikipedia.org/wiki/B%C3%A9zier_curve + * @param {number} x1 from x + * @param {number} y1 from y + * @param {number} x2 to x + * @param {number} y2 to y + * @param {number} x3 point to check x + * @param {number} y3 point to check y + * @private + */ + + _createClass(CubicBezierEdgeBase, [{ + key: '_getDistanceToBezierEdge', + value: function _getDistanceToBezierEdge(x1, y1, x2, y2, x3, y3, via1, via2) { + // x3,y3 is the point + var minDistance = 1e9; + var distance = undefined; + var i = undefined, + t = undefined, + x = undefined, + y = undefined; + var lastX = x1; + var lastY = y1; + var vec = [0, 0, 0, 0]; + for (i = 1; i < 10; i++) { + t = 0.1 * i; + vec[0] = Math.pow(1 - t, 3); + vec[1] = 3 * t * Math.pow(1 - t, 2); + vec[2] = 3 * Math.pow(t, 2) * (1 - t); + vec[3] = Math.pow(t, 3); + x = vec[0] * x1 + vec[1] * via1.x + vec[2] * via2.x + vec[3] * x2; + y = vec[0] * y1 + vec[1] * via1.y + vec[2] * via2.y + vec[3] * y2; + if (i > 0) { + distance = this._getDistanceToLine(lastX, lastY, x, y, x3, y3); + minDistance = distance < minDistance ? distance : minDistance; + } + lastX = x; + lastY = y; + } + + return minDistance; + } + }]); + + return CubicBezierEdgeBase; + })(_BezierEdgeBase3['default']); + + exports['default'] = CubicBezierEdgeBase; + module.exports = exports['default']; + +/***/ }, +/* 85 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x2, _x3, _x4) { var _again = true; _function: while (_again) { var object = _x2, property = _x3, receiver = _x4; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x2 = parent; _x3 = property; _x4 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _EdgeBase2 = __webpack_require__(86); + + var _EdgeBase3 = _interopRequireDefault(_EdgeBase2); + + var BezierEdgeBase = (function (_EdgeBase) { + _inherits(BezierEdgeBase, _EdgeBase); + + function BezierEdgeBase(options, body, labelModule) { + _classCallCheck(this, BezierEdgeBase); + + _get(Object.getPrototypeOf(BezierEdgeBase.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + /** + * This function uses binary search to look for the point where the bezier curve crosses the border of the node. + * + * @param nearNode + * @param ctx + * @param viaNode + * @param nearNode + * @param ctx + * @param viaNode + * @param nearNode + * @param ctx + * @param viaNode + */ + + _createClass(BezierEdgeBase, [{ + key: '_findBorderPositionBezier', + value: function _findBorderPositionBezier(nearNode, ctx) { + var viaNode = arguments.length <= 2 || arguments[2] === undefined ? this._getViaCoordinates() : arguments[2]; + + var maxIterations = 10; + var iteration = 0; + var low = 0; + var high = 1; + var pos, angle, distanceToBorder, distanceToPoint, difference; + var threshold = 0.2; + var node = this.to; + var from = false; + if (nearNode.id === this.from.id) { + node = this.from; + from = true; + } + + while (low <= high && iteration < maxIterations) { + var middle = (low + high) * 0.5; + + pos = this.getPoint(middle, viaNode); + angle = Math.atan2(node.y - pos.y, node.x - pos.x); + distanceToBorder = node.distanceToBorder(ctx, angle); + distanceToPoint = Math.sqrt(Math.pow(pos.x - node.x, 2) + Math.pow(pos.y - node.y, 2)); + difference = distanceToBorder - distanceToPoint; + if (Math.abs(difference) < threshold) { + break; // found + } else if (difference < 0) { + // distance to nodes is larger than distance to border --> t needs to be bigger if we're looking at the to node. + if (from === false) { + low = middle; + } else { + high = middle; + } + } else { + if (from === false) { + high = middle; + } else { + low = middle; + } + } + + iteration++; + } + pos.t = middle; + + return pos; + } + + /** + * Calculate the distance between a point (x3,y3) and a line segment from + * (x1,y1) to (x2,y2). + * http://stackoverflow.com/questions/849211/shortest-distancae-between-a-point-and-a-line-segment + * @param {number} x1 from x + * @param {number} y1 from y + * @param {number} x2 to x + * @param {number} y2 to y + * @param {number} x3 point to check x + * @param {number} y3 point to check y + * @private + */ + }, { + key: '_getDistanceToBezierEdge', + value: function _getDistanceToBezierEdge(x1, y1, x2, y2, x3, y3, via) { + // x3,y3 is the point + var minDistance = 1e9; + var distance = undefined; + var i = undefined, + t = undefined, + x = undefined, + y = undefined; + var lastX = x1; + var lastY = y1; + for (i = 1; i < 10; i++) { + t = 0.1 * i; + x = Math.pow(1 - t, 2) * x1 + 2 * t * (1 - t) * via.x + Math.pow(t, 2) * x2; + y = Math.pow(1 - t, 2) * y1 + 2 * t * (1 - t) * via.y + Math.pow(t, 2) * y2; + if (i > 0) { + distance = this._getDistanceToLine(lastX, lastY, x, y, x3, y3); + minDistance = distance < minDistance ? distance : minDistance; + } + lastX = x; + lastY = y; + } + + return minDistance; + } + }]); + + return BezierEdgeBase; + })(_EdgeBase3['default']); + + exports['default'] = BezierEdgeBase; + module.exports = exports['default']; + +/***/ }, +/* 86 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; })(); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var util = __webpack_require__(1); + + var EdgeBase = (function () { + function EdgeBase(options, body, labelModule) { + _classCallCheck(this, EdgeBase); + + this.body = body; + this.labelModule = labelModule; + this.setOptions(options); + this.colorDirty = true; + this.color = {}; + this.selectionWidth = 2; + this.hoverWidth = 1.5; + } + + _createClass(EdgeBase, [{ + key: 'connect', + value: function connect() { + this.from = this.body.nodes[this.options.from]; + this.to = this.body.nodes[this.options.to]; + } + }, { + key: 'cleanup', + value: function cleanup() { + return false; + } + }, { + key: 'setOptions', + value: function setOptions(options) { + this.options = options; + this.from = this.body.nodes[this.options.from]; + this.to = this.body.nodes[this.options.to]; + this.id = this.options.id; + } + + /** + * Redraw a edge as a line + * Draw this edge in the given canvas + * The 2d context of a HTML canvas can be retrieved by canvas.getContext("2d"); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + }, { + key: 'drawLine', + value: function drawLine(ctx, selected, hover) { + // set style + ctx.strokeStyle = this.getColor(ctx, selected, hover); + ctx.lineWidth = this.getLineWidth(selected, hover); + var via = undefined; + if (this.options.dashes !== false) { + via = this._drawDashedLine(ctx); + } else { + via = this._drawLine(ctx); + } + return via; + } + }, { + key: '_drawLine', + value: function _drawLine(ctx) { + var via = undefined; + if (this.from != this.to) { + // draw line + via = this._line(ctx); + } else { + var _getCircleData2 = this._getCircleData(ctx); + + var _getCircleData22 = _slicedToArray(_getCircleData2, 3); + + var x = _getCircleData22[0]; + var y = _getCircleData22[1]; + var radius = _getCircleData22[2]; + + this._circle(ctx, x, y, radius); + } + return via; + } + }, { + key: '_drawDashedLine', + value: function _drawDashedLine(ctx) { + var via = undefined; + ctx.lineCap = 'round'; + var pattern = [5, 5]; + if (Array.isArray(this.options.dashes) === true) { + pattern = this.options.dashes; + } + + // only firefox and chrome support this method, else we use the legacy one. + if (ctx.setLineDash !== undefined) { + ctx.save(); + + // set dash settings for chrome or firefox + ctx.setLineDash(pattern); + ctx.lineDashOffset = 0; + + // draw the line + if (this.from != this.to) { + // draw line + via = this._line(ctx); + } else { + var _getCircleData3 = this._getCircleData(ctx); + + var _getCircleData32 = _slicedToArray(_getCircleData3, 3); + + var x = _getCircleData32[0]; + var y = _getCircleData32[1]; + var radius = _getCircleData32[2]; + + this._circle(ctx, x, y, radius); + } + + // restore the dash settings. + ctx.setLineDash([0]); + ctx.lineDashOffset = 0; + ctx.restore(); + } else { + // unsupporting smooth lines + if (this.from != this.to) { + // draw line + ctx.dashedLine(this.from.x, this.from.y, this.to.x, this.to.y, pattern); + } else { + var _getCircleData4 = this._getCircleData(ctx); + + var _getCircleData42 = _slicedToArray(_getCircleData4, 3); + + var x = _getCircleData42[0]; + var y = _getCircleData42[1]; + var radius = _getCircleData42[2]; + + this._circle(ctx, x, y, radius); + } + // draw shadow if enabled + this.enableShadow(ctx); + + ctx.stroke(); + + // disable shadows for other elements. + this.disableShadow(ctx); + } + return via; + } + }, { + key: 'findBorderPosition', + value: function findBorderPosition(nearNode, ctx, options) { + if (this.from != this.to) { + return this._findBorderPosition(nearNode, ctx, options); + } else { + return this._findBorderPositionCircle(nearNode, ctx, options); + } + } + }, { + key: 'findBorderPositions', + value: function findBorderPositions(ctx) { + var from = {}; + var to = {}; + if (this.from != this.to) { + from = this._findBorderPosition(this.from, ctx); + to = this._findBorderPosition(this.to, ctx); + } else { + var _getCircleData5 = this._getCircleData(ctx); + + var _getCircleData52 = _slicedToArray(_getCircleData5, 3); + + var x = _getCircleData52[0]; + var y = _getCircleData52[1]; + var radius = _getCircleData52[2]; + + from = this._findBorderPositionCircle(this.from, ctx, { x: x, y: y, low: 0.25, high: 0.6, direction: -1 }); + to = this._findBorderPositionCircle(this.from, ctx, { x: x, y: y, low: 0.6, high: 0.8, direction: 1 }); + } + return { from: from, to: to }; + } + }, { + key: '_getCircleData', + value: function _getCircleData(ctx) { + var x = undefined, + y = undefined; + var node = this.from; + var radius = this.options.selfReferenceSize; + + if (ctx !== undefined) { + if (node.shape.width === undefined) { + node.shape.resize(ctx); + } + } + + // get circle coordinates + if (node.shape.width > node.shape.height) { + x = node.x + node.shape.width * 0.5; + y = node.y - radius; + } else { + x = node.x + radius; + y = node.y - node.shape.height * 0.5; + } + return [x, y, radius]; + } + + /** + * Get a point on a circle + * @param {Number} x + * @param {Number} y + * @param {Number} radius + * @param {Number} percentage. Value between 0 (line start) and 1 (line end) + * @return {Object} point + * @private + */ + }, { + key: '_pointOnCircle', + value: function _pointOnCircle(x, y, radius, percentage) { + var angle = percentage * 2 * Math.PI; + return { + x: x + radius * Math.cos(angle), + y: y - radius * Math.sin(angle) + }; + } + + /** + * This function uses binary search to look for the point where the circle crosses the border of the node. + * @param node + * @param ctx + * @param options + * @returns {*} + * @private + */ + }, { + key: '_findBorderPositionCircle', + value: function _findBorderPositionCircle(node, ctx, options) { + var x = options.x; + var y = options.y; + var low = options.low; + var high = options.high; + var direction = options.direction; + + var maxIterations = 10; + var iteration = 0; + var radius = this.options.selfReferenceSize; + var pos = undefined, + angle = undefined, + distanceToBorder = undefined, + distanceToPoint = undefined, + difference = undefined; + var threshold = 0.05; + var middle = (low + high) * 0.5; + + while (low <= high && iteration < maxIterations) { + middle = (low + high) * 0.5; + + pos = this._pointOnCircle(x, y, radius, middle); + angle = Math.atan2(node.y - pos.y, node.x - pos.x); + distanceToBorder = node.distanceToBorder(ctx, angle); + distanceToPoint = Math.sqrt(Math.pow(pos.x - node.x, 2) + Math.pow(pos.y - node.y, 2)); + difference = distanceToBorder - distanceToPoint; + if (Math.abs(difference) < threshold) { + break; // found + } else if (difference > 0) { + // distance to nodes is larger than distance to border --> t needs to be bigger if we're looking at the to node. + if (direction > 0) { + low = middle; + } else { + high = middle; + } + } else { + if (direction > 0) { + high = middle; + } else { + low = middle; + } + } + iteration++; + } + pos.t = middle; + + return pos; + } + + /** + * Get the line width of the edge. Depends on width and whether one of the + * connected nodes is selected. + * @return {Number} width + * @private + */ + }, { + key: 'getLineWidth', + value: function getLineWidth(selected, hover) { + if (selected === true) { + return Math.max(this.selectionWidth, 0.3 / this.body.view.scale); + } else { + if (hover === true) { + return Math.max(this.hoverWidth, 0.3 / this.body.view.scale); + } else { + return Math.max(this.options.width, 0.3 / this.body.view.scale); + } + } + } + }, { + key: 'getColor', + value: function getColor(ctx, selected, hover) { + var colorOptions = this.options.color; + if (colorOptions.inherit !== false) { + // when this is a loop edge, just use the 'from' method + if (colorOptions.inherit === 'both' && this.from.id !== this.to.id) { + var grd = ctx.createLinearGradient(this.from.x, this.from.y, this.to.x, this.to.y); + var fromColor = undefined, + toColor = undefined; + fromColor = this.from.options.color.highlight.border; + toColor = this.to.options.color.highlight.border; + + if (this.from.selected === false && this.to.selected === false) { + fromColor = util.overrideOpacity(this.from.options.color.border, this.options.color.opacity); + toColor = util.overrideOpacity(this.to.options.color.border, this.options.color.opacity); + } else if (this.from.selected === true && this.to.selected === false) { + toColor = this.to.options.color.border; + } else if (this.from.selected === false && this.to.selected === true) { + fromColor = this.from.options.color.border; + } + grd.addColorStop(0, fromColor); + grd.addColorStop(1, toColor); + + // -------------------- this returns -------------------- // + return grd; + } + + if (this.colorDirty === true) { + if (colorOptions.inherit === "to") { + this.color.highlight = this.to.options.color.highlight.border; + this.color.hover = this.to.options.color.hover.border; + this.color.color = util.overrideOpacity(this.to.options.color.border, colorOptions.opacity); + } else { + // (this.options.color.inherit.source === "from") { + this.color.highlight = this.from.options.color.highlight.border; + this.color.hover = this.from.options.color.hover.border; + this.color.color = util.overrideOpacity(this.from.options.color.border, colorOptions.opacity); + } + } + } else if (this.colorDirty === true) { + this.color.highlight = colorOptions.highlight; + this.color.hover = colorOptions.hover; + this.color.color = util.overrideOpacity(colorOptions.color, colorOptions.opacity); + } + + // if color inherit is on and gradients are used, the function has already returned by now. + this.colorDirty = false; + + if (selected === true) { + return this.color.highlight; + } else if (hover === true) { + return this.color.hover; + } else { + return this.color.color; + } + } + + /** + * Draw a line from a node to itself, a circle + * @param {CanvasRenderingContext2D} ctx + * @param {Number} x + * @param {Number} y + * @param {Number} radius + * @private + */ + }, { + key: '_circle', + value: function _circle(ctx, x, y, radius) { + // draw shadow if enabled + this.enableShadow(ctx); + + // draw a circle + ctx.beginPath(); + ctx.arc(x, y, radius, 0, 2 * Math.PI, false); + ctx.stroke(); + + // disable shadows for other elements. + this.disableShadow(ctx); + } + + /** + * Calculate the distance between a point (x3,y3) and a line segment from + * (x1,y1) to (x2,y2). + * http://stackoverflow.com/questions/849211/shortest-distancae-between-a-point-and-a-line-segment + * @param {number} x1 + * @param {number} y1 + * @param {number} x2 + * @param {number} y2 + * @param {number} x3 + * @param {number} y3 + * @private + */ + }, { + key: 'getDistanceToEdge', + value: function getDistanceToEdge(x1, y1, x2, y2, x3, y3, via) { + // x3,y3 is the point + var returnValue = 0; + if (this.from != this.to) { + returnValue = this._getDistanceToEdge(x1, y1, x2, y2, x3, y3, via); + } else { + var _getCircleData6 = this._getCircleData(); + + var _getCircleData62 = _slicedToArray(_getCircleData6, 3); + + var x = _getCircleData62[0]; + var y = _getCircleData62[1]; + var radius = _getCircleData62[2]; + + var dx = x - x3; + var dy = y - y3; + returnValue = Math.abs(Math.sqrt(dx * dx + dy * dy) - radius); + } + + if (this.labelModule.size.left < x3 && this.labelModule.size.left + this.labelModule.size.width > x3 && this.labelModule.size.top < y3 && this.labelModule.size.top + this.labelModule.size.height > y3) { + return 0; + } else { + return returnValue; + } + } + }, { + key: '_getDistanceToLine', + value: function _getDistanceToLine(x1, y1, x2, y2, x3, y3) { + var px = x2 - x1; + var py = y2 - y1; + var something = px * px + py * py; + var u = ((x3 - x1) * px + (y3 - y1) * py) / something; + + if (u > 1) { + u = 1; + } else if (u < 0) { + u = 0; + } + + var x = x1 + u * px; + var y = y1 + u * py; + var dx = x - x3; + var dy = y - y3; + + //# Note: If the actual distance does not matter, + //# if you only want to compare what this function + //# returns to other results of this function, you + //# can just return the squared distance instead + //# (i.e. remove the sqrt) to gain a little performance + + return Math.sqrt(dx * dx + dy * dy); + } + + /** + * + * @param ctx + * @param position + * @param viaNode + */ + }, { + key: 'drawArrowHead', + value: function drawArrowHead(ctx, position, viaNode, selected, hover) { + // set style + ctx.strokeStyle = this.getColor(ctx, selected, hover); + ctx.fillStyle = ctx.strokeStyle; + ctx.lineWidth = this.getLineWidth(selected, hover); + + // set lets + var angle = undefined; + var length = undefined; + var arrowPos = undefined; + var node1 = undefined; + var node2 = undefined; + var guideOffset = undefined; + var scaleFactor = undefined; + + if (position === 'from') { + node1 = this.from; + node2 = this.to; + guideOffset = 0.1; + scaleFactor = this.options.arrows.from.scaleFactor; + } else if (position === 'to') { + node1 = this.to; + node2 = this.from; + guideOffset = -0.1; + scaleFactor = this.options.arrows.to.scaleFactor; + } else { + node1 = this.to; + node2 = this.from; + scaleFactor = this.options.arrows.middle.scaleFactor; + } + + // if not connected to itself + if (node1 != node2) { + if (position !== 'middle') { + // draw arrow head + if (this.options.smooth.enabled === true) { + arrowPos = this.findBorderPosition(node1, ctx, { via: viaNode }); + var guidePos = this.getPoint(Math.max(0.0, Math.min(1.0, arrowPos.t + guideOffset)), viaNode); + angle = Math.atan2(arrowPos.y - guidePos.y, arrowPos.x - guidePos.x); + } else { + angle = Math.atan2(node1.y - node2.y, node1.x - node2.x); + arrowPos = this.findBorderPosition(node1, ctx); + } + } else { + angle = Math.atan2(node1.y - node2.y, node1.x - node2.x); + arrowPos = this.getPoint(0.6, viaNode); // this is 0.6 to account for the size of the arrow. + } + // draw arrow at the end of the line + length = (10 + 5 * this.options.width) * scaleFactor; + ctx.arrow(arrowPos.x, arrowPos.y, angle, length); + + // draw shadow if enabled + this.enableShadow(ctx); + ctx.fill(); + + // disable shadows for other elements. + this.disableShadow(ctx); + ctx.stroke(); + } else { + // draw circle + var _angle = undefined, + point = undefined; + + var _getCircleData7 = this._getCircleData(ctx); + + var _getCircleData72 = _slicedToArray(_getCircleData7, 3); + + var x = _getCircleData72[0]; + var y = _getCircleData72[1]; + var radius = _getCircleData72[2]; + + if (position === 'from') { + point = this.findBorderPosition(this.from, ctx, { x: x, y: y, low: 0.25, high: 0.6, direction: -1 }); + _angle = point.t * -2 * Math.PI + 1.5 * Math.PI + 0.1 * Math.PI; + } else if (position === 'to') { + point = this.findBorderPosition(this.from, ctx, { x: x, y: y, low: 0.6, high: 1.0, direction: 1 }); + _angle = point.t * -2 * Math.PI + 1.5 * Math.PI - 1.1 * Math.PI; + } else { + point = this._pointOnCircle(x, y, radius, 0.175); + _angle = 3.9269908169872414; // === 0.175 * -2 * Math.PI + 1.5 * Math.PI + 0.1 * Math.PI; + } + + // draw the arrowhead + var _length = (10 + 5 * this.options.width) * scaleFactor; + ctx.arrow(point.x, point.y, _angle, _length); + + // draw shadow if enabled + this.enableShadow(ctx); + ctx.fill(); + + // disable shadows for other elements. + this.disableShadow(ctx); + ctx.stroke(); + } + } + }, { + key: 'enableShadow', + value: function enableShadow(ctx) { + if (this.options.shadow.enabled === true) { + ctx.shadowColor = 'rgba(0,0,0,0.5)'; + ctx.shadowBlur = this.options.shadow.size; + ctx.shadowOffsetX = this.options.shadow.x; + ctx.shadowOffsetY = this.options.shadow.y; + } + } + }, { + key: 'disableShadow', + value: function disableShadow(ctx) { + if (this.options.shadow.enabled === true) { + ctx.shadowColor = 'rgba(0,0,0,0)'; + ctx.shadowBlur = 0; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + } + } + }]); + + return EdgeBase; + })(); + + exports['default'] = EdgeBase; + module.exports = exports['default']; + +/***/ }, +/* 87 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilBezierEdgeBase = __webpack_require__(85); + + var _utilBezierEdgeBase2 = _interopRequireDefault(_utilBezierEdgeBase); + + var BezierEdgeDynamic = (function (_BezierEdgeBase) { + _inherits(BezierEdgeDynamic, _BezierEdgeBase); + + function BezierEdgeDynamic(options, body, labelModule) { + var _this = this; + + _classCallCheck(this, BezierEdgeDynamic); + + //this.via = undefined; // Here for completeness but not allowed to defined before super() is invoked. + _get(Object.getPrototypeOf(BezierEdgeDynamic.prototype), "constructor", this).call(this, options, body, labelModule); // --> this calls the setOptions below + this._boundFunction = function () { + _this.positionBezierNode(); + }; + this.body.emitter.on("_repositionBezierNodes", this._boundFunction); + } + + _createClass(BezierEdgeDynamic, [{ + key: "setOptions", + value: function setOptions(options) { + this.options = options; + this.id = this.options.id; + this.setupSupportNode(); + + // when we change the physics state of the edge, we reposition the support node. + if (this.options.physics !== options.physics) { + this.via.setOptions({ physics: this.options.physics }); + this.positionBezierNode(); + } + this.connect(); + } + }, { + key: "connect", + value: function connect() { + this.from = this.body.nodes[this.options.from]; + this.to = this.body.nodes[this.options.to]; + if (this.from === undefined || this.to === undefined || this.options.physics === false) { + this.via.setOptions({ physics: false }); + } else { + // fix weird behaviour where a selfreferencing node has physics enabled + if (this.from.id === this.to.id) { + this.via.setOptions({ physics: false }); + } else { + this.via.setOptions({ physics: true }); + } + } + } + + /** + * remove the support nodes + * @returns {boolean} + */ + }, { + key: "cleanup", + value: function cleanup() { + this.body.emitter.off("_repositionBezierNodes", this._boundFunction); + if (this.via !== undefined) { + delete this.body.nodes[this.via.id]; + this.via = undefined; + return true; + } + return false; + } + + /** + * Bezier curves require an anchor point to calculate the smooth flow. These points are nodes. These nodes are invisible but + * are used for the force calculation. + * + * The changed data is not called, if needed, it is returned by the main edge constructor. + * @private + */ + }, { + key: "setupSupportNode", + value: function setupSupportNode() { + if (this.via === undefined) { + var nodeId = "edgeId:" + this.id; + var node = this.body.functions.createNode({ + id: nodeId, + shape: 'circle', + physics: true, + hidden: true + }); + this.body.nodes[nodeId] = node; + this.via = node; + this.via.parentEdgeId = this.id; + this.positionBezierNode(); + } + } + }, { + key: "positionBezierNode", + value: function positionBezierNode() { + if (this.via !== undefined && this.from !== undefined && this.to !== undefined) { + this.via.x = 0.5 * (this.from.x + this.to.x); + this.via.y = 0.5 * (this.from.y + this.to.y); + } else if (this.via !== undefined) { + this.via.x = 0; + this.via.y = 0; + } + } + + /** + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private + */ + }, { + key: "_line", + value: function _line(ctx) { + // draw a straight line + ctx.beginPath(); + ctx.moveTo(this.from.x, this.from.y); + ctx.quadraticCurveTo(this.via.x, this.via.y, this.to.x, this.to.y); + // draw shadow if enabled + this.enableShadow(ctx); + ctx.stroke(); + this.disableShadow(ctx); + return this.via; + } + + /** + * Combined function of pointOnLine and pointOnBezier. This gives the coordinates of a point on the line at a certain percentage of the way + * @param percentage + * @param via + * @returns {{x: number, y: number}} + * @private + */ + }, { + key: "getPoint", + value: function getPoint(percentage) { + var t = percentage; + var x = Math.pow(1 - t, 2) * this.from.x + 2 * t * (1 - t) * this.via.x + Math.pow(t, 2) * this.to.x; + var y = Math.pow(1 - t, 2) * this.from.y + 2 * t * (1 - t) * this.via.y + Math.pow(t, 2) * this.to.y; + + return { x: x, y: y }; + } + }, { + key: "_findBorderPosition", + value: function _findBorderPosition(nearNode, ctx) { + return this._findBorderPositionBezier(nearNode, ctx, this.via); + } + }, { + key: "_getDistanceToEdge", + value: function _getDistanceToEdge(x1, y1, x2, y2, x3, y3) { + // x3,y3 is the point + return this._getDistanceToBezierEdge(x1, y1, x2, y2, x3, y3, this.via); + } + }]); + + return BezierEdgeDynamic; + })(_utilBezierEdgeBase2["default"]); + + exports["default"] = BezierEdgeDynamic; + module.exports = exports["default"]; + +/***/ }, +/* 88 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x4, _x5, _x6) { var _again = true; _function: while (_again) { var object = _x4, property = _x5, receiver = _x6; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x4 = parent; _x5 = property; _x6 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilBezierEdgeBase = __webpack_require__(85); + + var _utilBezierEdgeBase2 = _interopRequireDefault(_utilBezierEdgeBase); + + var BezierEdgeStatic = (function (_BezierEdgeBase) { + _inherits(BezierEdgeStatic, _BezierEdgeBase); + + function BezierEdgeStatic(options, body, labelModule) { + _classCallCheck(this, BezierEdgeStatic); + + _get(Object.getPrototypeOf(BezierEdgeStatic.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + /** + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private + */ + + _createClass(BezierEdgeStatic, [{ + key: '_line', + value: function _line(ctx) { + // draw a straight line + ctx.beginPath(); + ctx.moveTo(this.from.x, this.from.y); + var via = this._getViaCoordinates(); + var returnValue = via; + + // fallback to normal straight edges + if (via.x === undefined) { + ctx.lineTo(this.to.x, this.to.y); + returnValue = undefined; + } else { + ctx.quadraticCurveTo(via.x, via.y, this.to.x, this.to.y); + } + // draw shadow if enabled + this.enableShadow(ctx); + ctx.stroke(); + this.disableShadow(ctx); + return returnValue; + } + }, { + key: '_getViaCoordinates', + value: function _getViaCoordinates() { + var xVia = undefined; + var yVia = undefined; + var factor = this.options.smooth.roundness; + var type = this.options.smooth.type; + var dx = Math.abs(this.from.x - this.to.x); + var dy = Math.abs(this.from.y - this.to.y); + if (type === 'discrete' || type === 'diagonalCross') { + if (Math.abs(this.from.x - this.to.x) <= Math.abs(this.from.y - this.to.y)) { + if (this.from.y >= this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y - factor * dy; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y - factor * dy; + } + } else if (this.from.y < this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y + factor * dy; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + } + } + if (type === "discrete") { + xVia = dx < factor * dy ? this.from.x : xVia; + } + } else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + if (this.from.y >= this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y - factor * dx; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y - factor * dx; + } + } else if (this.from.y < this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y + factor * dx; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + } + } + if (type === "discrete") { + yVia = dy < factor * dx ? this.from.y : yVia; + } + } + } else if (type === "straightCross") { + if (Math.abs(this.from.x - this.to.x) <= Math.abs(this.from.y - this.to.y)) { + // up - down + xVia = this.from.x; + if (this.from.y < this.to.y) { + yVia = this.to.y - (1 - factor) * dy; + } else { + yVia = this.to.y + (1 - factor) * dy; + } + } else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + // left - right + if (this.from.x < this.to.x) { + xVia = this.to.x - (1 - factor) * dx; + } else { + xVia = this.to.x + (1 - factor) * dx; + } + yVia = this.from.y; + } + } else if (type === 'horizontal') { + if (this.from.x < this.to.x) { + xVia = this.to.x - (1 - factor) * dx; + } else { + xVia = this.to.x + (1 - factor) * dx; + } + yVia = this.from.y; + } else if (type === 'vertical') { + xVia = this.from.x; + if (this.from.y < this.to.y) { + yVia = this.to.y - (1 - factor) * dy; + } else { + yVia = this.to.y + (1 - factor) * dy; + } + } else if (type === 'curvedCW') { + dx = this.to.x - this.from.x; + dy = this.from.y - this.to.y; + var radius = Math.sqrt(dx * dx + dy * dy); + var pi = Math.PI; + + var originalAngle = Math.atan2(dy, dx); + var myAngle = (originalAngle + (factor * 0.5 + 0.5) * pi) % (2 * pi); + + xVia = this.from.x + (factor * 0.5 + 0.5) * radius * Math.sin(myAngle); + yVia = this.from.y + (factor * 0.5 + 0.5) * radius * Math.cos(myAngle); + } else if (type === 'curvedCCW') { + dx = this.to.x - this.from.x; + dy = this.from.y - this.to.y; + var radius = Math.sqrt(dx * dx + dy * dy); + var pi = Math.PI; + + var originalAngle = Math.atan2(dy, dx); + var myAngle = (originalAngle + (-factor * 0.5 + 0.5) * pi) % (2 * pi); + + xVia = this.from.x + (factor * 0.5 + 0.5) * radius * Math.sin(myAngle); + yVia = this.from.y + (factor * 0.5 + 0.5) * radius * Math.cos(myAngle); + } else { + // continuous + if (Math.abs(this.from.x - this.to.x) <= Math.abs(this.from.y - this.to.y)) { + if (this.from.y >= this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y - factor * dy; + xVia = this.to.x > xVia ? this.to.x : xVia; + } + } else if (this.from.y < this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x < xVia ? this.to.x : xVia; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dy; + yVia = this.from.y + factor * dy; + xVia = this.to.x > xVia ? this.to.x : xVia; + } + } + } else if (Math.abs(this.from.x - this.to.x) > Math.abs(this.from.y - this.to.y)) { + if (this.from.y >= this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y - factor * dx; + yVia = this.to.y > yVia ? this.to.y : yVia; + } + } else if (this.from.y < this.to.y) { + if (this.from.x <= this.to.x) { + xVia = this.from.x + factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } else if (this.from.x > this.to.x) { + xVia = this.from.x - factor * dx; + yVia = this.from.y + factor * dx; + yVia = this.to.y < yVia ? this.to.y : yVia; + } + } + } + } + return { x: xVia, y: yVia }; + } + }, { + key: '_findBorderPosition', + value: function _findBorderPosition(nearNode, ctx) { + var options = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2]; + + return this._findBorderPositionBezier(nearNode, ctx, options.via); + } + }, { + key: '_getDistanceToEdge', + value: function _getDistanceToEdge(x1, y1, x2, y2, x3, y3) { + var via = arguments.length <= 6 || arguments[6] === undefined ? this._getViaCoordinates() : arguments[6]; + // x3,y3 is the point + return this._getDistanceToBezierEdge(x1, y1, x2, y2, x3, y3, via); + } + + /** + * Combined function of pointOnLine and pointOnBezier. This gives the coordinates of a point on the line at a certain percentage of the way + * @param percentage + * @param via + * @returns {{x: number, y: number}} + * @private + */ + }, { + key: 'getPoint', + value: function getPoint(percentage) { + var via = arguments.length <= 1 || arguments[1] === undefined ? this._getViaCoordinates() : arguments[1]; + + var t = percentage; + var x = Math.pow(1 - t, 2) * this.from.x + 2 * t * (1 - t) * via.x + Math.pow(t, 2) * this.to.x; + var y = Math.pow(1 - t, 2) * this.from.y + 2 * t * (1 - t) * via.y + Math.pow(t, 2) * this.to.y; + + return { x: x, y: y }; + } + }]); + + return BezierEdgeStatic; + })(_utilBezierEdgeBase2['default']); + + exports['default'] = BezierEdgeStatic; + module.exports = exports['default']; + +/***/ }, +/* 89 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _utilEdgeBase = __webpack_require__(86); + + var _utilEdgeBase2 = _interopRequireDefault(_utilEdgeBase); + + var StraightEdge = (function (_EdgeBase) { + _inherits(StraightEdge, _EdgeBase); + + function StraightEdge(options, body, labelModule) { + _classCallCheck(this, StraightEdge); + + _get(Object.getPrototypeOf(StraightEdge.prototype), 'constructor', this).call(this, options, body, labelModule); + } + + /** + * Draw a line between two nodes + * @param {CanvasRenderingContext2D} ctx + * @private + */ + + _createClass(StraightEdge, [{ + key: '_line', + value: function _line(ctx) { + // draw a straight line + ctx.beginPath(); + ctx.moveTo(this.from.x, this.from.y); + ctx.lineTo(this.to.x, this.to.y); + // draw shadow if enabled + this.enableShadow(ctx); + ctx.stroke(); + this.disableShadow(ctx); + return undefined; + } + + /** + * Combined function of pointOnLine and pointOnBezier. This gives the coordinates of a point on the line at a certain percentage of the way + * @param percentage + * @param via + * @returns {{x: number, y: number}} + * @private + */ + }, { + key: 'getPoint', + value: function getPoint(percentage) { + return { + x: (1 - percentage) * this.from.x + percentage * this.to.x, + y: (1 - percentage) * this.from.y + percentage * this.to.y + }; + } + }, { + key: '_findBorderPosition', + value: function _findBorderPosition(nearNode, ctx) { + var node1 = this.to; + var node2 = this.from; + if (nearNode.id === this.from.id) { + node1 = this.from; + node2 = this.to; + } + + var angle = Math.atan2(node1.y - node2.y, node1.x - node2.x); + var dx = node1.x - node2.x; + var dy = node1.y - node2.y; + var edgeSegmentLength = Math.sqrt(dx * dx + dy * dy); + var toBorderDist = nearNode.distanceToBorder(ctx, angle); + var toBorderPoint = (edgeSegmentLength - toBorderDist) / edgeSegmentLength; + + var borderPos = {}; + borderPos.x = (1 - toBorderPoint) * node2.x + toBorderPoint * node1.x; + borderPos.y = (1 - toBorderPoint) * node2.y + toBorderPoint * node1.y; + + return borderPos; + } + }, { + key: '_getDistanceToEdge', + value: function _getDistanceToEdge(x1, y1, x2, y2, x3, y3) { + // x3,y3 is the point + return this._getDistanceToLine(x1, y1, x2, y2, x3, y3); + } + }]); + + return StraightEdge; + })(_utilEdgeBase2['default']); + + exports['default'] = StraightEdge; + module.exports = exports['default']; + +/***/ }, +/* 90 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _componentsPhysicsBarnesHutSolver = __webpack_require__(91); + + var _componentsPhysicsBarnesHutSolver2 = _interopRequireDefault(_componentsPhysicsBarnesHutSolver); + + var _componentsPhysicsRepulsionSolver = __webpack_require__(92); + + var _componentsPhysicsRepulsionSolver2 = _interopRequireDefault(_componentsPhysicsRepulsionSolver); + + var _componentsPhysicsHierarchicalRepulsionSolver = __webpack_require__(93); + + var _componentsPhysicsHierarchicalRepulsionSolver2 = _interopRequireDefault(_componentsPhysicsHierarchicalRepulsionSolver); + + var _componentsPhysicsSpringSolver = __webpack_require__(94); + + var _componentsPhysicsSpringSolver2 = _interopRequireDefault(_componentsPhysicsSpringSolver); + + var _componentsPhysicsHierarchicalSpringSolver = __webpack_require__(95); + + var _componentsPhysicsHierarchicalSpringSolver2 = _interopRequireDefault(_componentsPhysicsHierarchicalSpringSolver); + + var _componentsPhysicsCentralGravitySolver = __webpack_require__(96); + + var _componentsPhysicsCentralGravitySolver2 = _interopRequireDefault(_componentsPhysicsCentralGravitySolver); + + var _componentsPhysicsFA2BasedRepulsionSolver = __webpack_require__(97); + + var _componentsPhysicsFA2BasedRepulsionSolver2 = _interopRequireDefault(_componentsPhysicsFA2BasedRepulsionSolver); + + var _componentsPhysicsFA2BasedCentralGravitySolver = __webpack_require__(98); + + var _componentsPhysicsFA2BasedCentralGravitySolver2 = _interopRequireDefault(_componentsPhysicsFA2BasedCentralGravitySolver); + + var util = __webpack_require__(1); + + var PhysicsEngine = (function () { + function PhysicsEngine(body) { + _classCallCheck(this, PhysicsEngine); + + this.body = body; + this.physicsBody = { physicsNodeIndices: [], physicsEdgeIndices: [], forces: {}, velocities: {} }; + + this.physicsEnabled = true; + this.simulationInterval = 1000 / 60; + this.requiresTimeout = true; + this.previousStates = {}; + this.referenceState = {}; + this.freezeCache = {}; + this.renderTimer = undefined; + + // parameters for the adaptive timestep + this.adaptiveTimestep = false; + this.adaptiveTimestepEnabled = false; + this.adaptiveCounter = 0; + this.adaptiveInterval = 3; + + this.stabilized = false; + this.startedStabilization = false; + this.stabilizationIterations = 0; + this.ready = false; // will be set to true if the stabilize + + // default options + this.options = {}; + this.defaultOptions = { + enabled: true, + barnesHut: { + theta: 0.5, + gravitationalConstant: -2000, + centralGravity: 0.3, + springLength: 95, + springConstant: 0.04, + damping: 0.09, + avoidOverlap: 0 + }, + forceAtlas2Based: { + theta: 0.5, + gravitationalConstant: -50, + centralGravity: 0.01, + springConstant: 0.08, + springLength: 100, + damping: 0.4, + avoidOverlap: 0 + }, + repulsion: { + centralGravity: 0.2, + springLength: 200, + springConstant: 0.05, + nodeDistance: 100, + damping: 0.09, + avoidOverlap: 0 + }, + hierarchicalRepulsion: { + centralGravity: 0.0, + springLength: 100, + springConstant: 0.01, + nodeDistance: 120, + damping: 0.09 + }, + maxVelocity: 50, + minVelocity: 0.75, // px/s + solver: 'barnesHut', + stabilization: { + enabled: true, + iterations: 1000, // maximum number of iteration to stabilize + updateInterval: 50, + onlyDynamicEdges: false, + fit: true + }, + timestep: 0.5, + adaptiveTimestep: true + }; + util.extend(this.options, this.defaultOptions); + this.timestep = 0.5; + this.layoutFailed = false; + + this.bindEventListeners(); + } + + _createClass(PhysicsEngine, [{ + key: 'bindEventListeners', + value: function bindEventListeners() { + var _this = this; + + this.body.emitter.on('initPhysics', function () { + _this.initPhysics(); + }); + this.body.emitter.on('_layoutFailed', function () { + _this.layoutFailed = true; + }); + this.body.emitter.on('resetPhysics', function () { + _this.stopSimulation();_this.ready = false; + }); + this.body.emitter.on('disablePhysics', function () { + _this.physicsEnabled = false;_this.stopSimulation(); + }); + this.body.emitter.on('restorePhysics', function () { + _this.setOptions(_this.options); + if (_this.ready === true) { + _this.startSimulation(); + } + }); + this.body.emitter.on('startSimulation', function () { + if (_this.ready === true) { + _this.startSimulation(); + } + }); + this.body.emitter.on('stopSimulation', function () { + _this.stopSimulation(); + }); + this.body.emitter.on('destroy', function () { + _this.stopSimulation(false); + _this.body.emitter.off(); + }); + } + + /** + * set the physics options + * @param options + */ + }, { + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) { + if (options === false) { + this.options.enabled = false; + this.physicsEnabled = false; + this.stopSimulation(); + } else { + this.physicsEnabled = true; + util.selectiveNotDeepExtend(['stabilization'], this.options, options); + util.mergeOptions(this.options, options, 'stabilization'); + + if (options.enabled === undefined) { + this.options.enabled = true; + } + + if (this.options.enabled === false) { + this.physicsEnabled = false; + this.stopSimulation(); + } + + // set the timestep + this.timestep = this.options.timestep; + } + } + this.init(); + } + + /** + * configure the engine. + */ + }, { + key: 'init', + value: function init() { + var options; + if (this.options.solver === 'forceAtlas2Based') { + options = this.options.forceAtlas2Based; + this.nodesSolver = new _componentsPhysicsFA2BasedRepulsionSolver2['default'](this.body, this.physicsBody, options); + this.edgesSolver = new _componentsPhysicsSpringSolver2['default'](this.body, this.physicsBody, options); + this.gravitySolver = new _componentsPhysicsFA2BasedCentralGravitySolver2['default'](this.body, this.physicsBody, options); + } else if (this.options.solver === 'repulsion') { + options = this.options.repulsion; + this.nodesSolver = new _componentsPhysicsRepulsionSolver2['default'](this.body, this.physicsBody, options); + this.edgesSolver = new _componentsPhysicsSpringSolver2['default'](this.body, this.physicsBody, options); + this.gravitySolver = new _componentsPhysicsCentralGravitySolver2['default'](this.body, this.physicsBody, options); + } else if (this.options.solver === 'hierarchicalRepulsion') { + options = this.options.hierarchicalRepulsion; + this.nodesSolver = new _componentsPhysicsHierarchicalRepulsionSolver2['default'](this.body, this.physicsBody, options); + this.edgesSolver = new _componentsPhysicsHierarchicalSpringSolver2['default'](this.body, this.physicsBody, options); + this.gravitySolver = new _componentsPhysicsCentralGravitySolver2['default'](this.body, this.physicsBody, options); + } else { + // barnesHut + options = this.options.barnesHut; + this.nodesSolver = new _componentsPhysicsBarnesHutSolver2['default'](this.body, this.physicsBody, options); + this.edgesSolver = new _componentsPhysicsSpringSolver2['default'](this.body, this.physicsBody, options); + this.gravitySolver = new _componentsPhysicsCentralGravitySolver2['default'](this.body, this.physicsBody, options); + } + + this.modelOptions = options; + } + + /** + * initialize the engine + */ + }, { + key: 'initPhysics', + value: function initPhysics() { + if (this.physicsEnabled === true && this.options.enabled === true) { + if (this.options.stabilization.enabled === true) { + this.stabilize(); + } else { + this.stabilized = false; + this.ready = true; + this.body.emitter.emit('fit', {}, this.layoutFailed); // if the layout failed, we use the approximation for the zoom + this.startSimulation(); + } + } else { + this.ready = true; + this.body.emitter.emit('fit'); + } + } + + /** + * Start the simulation + */ + }, { + key: 'startSimulation', + value: function startSimulation() { + if (this.physicsEnabled === true && this.options.enabled === true) { + this.stabilized = false; + + // when visible, adaptivity is disabled. + this.adaptiveTimestep = false; + + // this sets the width of all nodes initially which could be required for the avoidOverlap + this.body.emitter.emit("_resizeNodes"); + if (this.viewFunction === undefined) { + this.viewFunction = this.simulationStep.bind(this); + this.body.emitter.on('initRedraw', this.viewFunction); + this.body.emitter.emit('_startRendering'); + } + } else { + this.body.emitter.emit('_redraw'); + } + } + + /** + * Stop the simulation, force stabilization. + */ + }, { + key: 'stopSimulation', + value: function stopSimulation() { + var emit = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0]; + + this.stabilized = true; + if (emit === true) { + this._emitStabilized(); + } + if (this.viewFunction !== undefined) { + this.body.emitter.off('initRedraw', this.viewFunction); + this.viewFunction = undefined; + if (emit === true) { + this.body.emitter.emit('_stopRendering'); + } + } + } + + /** + * The viewFunction inserts this step into each renderloop. It calls the physics tick and handles the cleanup at stabilized. + * + */ + }, { + key: 'simulationStep', + value: function simulationStep() { + // check if the physics have settled + var startTime = Date.now(); + this.physicsTick(); + var physicsTime = Date.now() - startTime; + + // run double speed if it is a little graph + if ((physicsTime < 0.4 * this.simulationInterval || this.runDoubleSpeed === true) && this.stabilized === false) { + this.physicsTick(); + + // this makes sure there is no jitter. The decision is taken once to run it at double speed. + this.runDoubleSpeed = true; + } + + if (this.stabilized === true) { + this.stopSimulation(); + } + } + + /** + * trigger the stabilized event. + * @private + */ + }, { + key: '_emitStabilized', + value: function _emitStabilized() { + var _this2 = this; + + var amountOfIterations = arguments.length <= 0 || arguments[0] === undefined ? this.stabilizationIterations : arguments[0]; + + if (this.stabilizationIterations > 1 || this.startedStabilization === true) { + setTimeout(function () { + _this2.body.emitter.emit('stabilized', { iterations: amountOfIterations }); + _this2.startedStabilization = false; + _this2.stabilizationIterations = 0; + }, 0); + } + } + + /** + * A single simulation step (or 'tick') in the physics simulation + * + * @private + */ + }, { + key: 'physicsTick', + value: function physicsTick() { + // this is here to ensure that there is no start event when the network is already stable. + if (this.startedStabilization === false) { + this.body.emitter.emit('startStabilizing'); + this.startedStabilization = true; + } + + if (this.stabilized === false) { + // adaptivity means the timestep adapts to the situation, only applicable for stabilization + if (this.adaptiveTimestep === true && this.adaptiveTimestepEnabled === true) { + // this is the factor for increasing the timestep on success. + var factor = 1.2; + + // we assume the adaptive interval is + if (this.adaptiveCounter % this.adaptiveInterval === 0) { + // we leave the timestep stable for "interval" iterations. + // first the big step and revert. Revert saves the reference state. + this.timestep = 2 * this.timestep; + this.calculateForces(); + this.moveNodes(); + this.revert(); + + // now the normal step. Since this is the last step, it is the more stable one and we will take this. + this.timestep = 0.5 * this.timestep; + + // since it's half the step, we do it twice. + this.calculateForces(); + this.moveNodes(); + this.calculateForces(); + this.moveNodes(); + + // we compare the two steps. if it is acceptable we double the step. + if (this._evaluateStepQuality() === true) { + this.timestep = factor * this.timestep; + } else { + // if not, we decrease the step to a minimum of the options timestep. + // if the decreased timestep is smaller than the options step, we do not reset the counter + // we assume that the options timestep is stable enough. + if (this.timestep / factor < this.options.timestep) { + this.timestep = this.options.timestep; + } else { + // if the timestep was larger than 2 times the option one we check the adaptivity again to ensure + // that large instabilities do not form. + this.adaptiveCounter = -1; // check again next iteration + this.timestep = Math.max(this.options.timestep, this.timestep / factor); + } + } + } else { + // normal step, keeping timestep constant + this.calculateForces(); + this.moveNodes(); + } + + // increment the counter + this.adaptiveCounter += 1; + } else { + // case for the static timestep, we reset it to the one in options and take a normal step. + this.timestep = this.options.timestep; + this.calculateForces(); + this.moveNodes(); + } + + // determine if the network has stabilzied + if (this.stabilized === true) { + this.revert(); + } + + this.stabilizationIterations++; + } + } + + /** + * Nodes and edges can have the physics toggles on or off. A collection of indices is created here so we can skip the check all the time. + * + * @private + */ + }, { + key: 'updatePhysicsData', + value: function updatePhysicsData() { + this.physicsBody.forces = {}; + this.physicsBody.physicsNodeIndices = []; + this.physicsBody.physicsEdgeIndices = []; + var nodes = this.body.nodes; + var edges = this.body.edges; + + // get node indices for physics + for (var nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + if (nodes[nodeId].options.physics === true) { + this.physicsBody.physicsNodeIndices.push(nodeId); + } + } + } + + // get edge indices for physics + for (var edgeId in edges) { + if (edges.hasOwnProperty(edgeId)) { + if (edges[edgeId].options.physics === true) { + this.physicsBody.physicsEdgeIndices.push(edgeId); + } + } + } + + // get the velocity and the forces vector + for (var i = 0; i < this.physicsBody.physicsNodeIndices.length; i++) { + var nodeId = this.physicsBody.physicsNodeIndices[i]; + this.physicsBody.forces[nodeId] = { x: 0, y: 0 }; + + // forces can be reset because they are recalculated. Velocities have to persist. + if (this.physicsBody.velocities[nodeId] === undefined) { + this.physicsBody.velocities[nodeId] = { x: 0, y: 0 }; + } + } + + // clean deleted nodes from the velocity vector + for (var nodeId in this.physicsBody.velocities) { + if (nodes[nodeId] === undefined) { + delete this.physicsBody.velocities[nodeId]; + } + } + } + + /** + * Revert the simulation one step. This is done so after stabilization, every new start of the simulation will also say stabilized. + */ + }, { + key: 'revert', + value: function revert() { + var nodeIds = Object.keys(this.previousStates); + var nodes = this.body.nodes; + var velocities = this.physicsBody.velocities; + this.referenceState = {}; + + for (var i = 0; i < nodeIds.length; i++) { + var nodeId = nodeIds[i]; + if (nodes[nodeId] !== undefined) { + if (nodes[nodeId].options.physics === true) { + this.referenceState[nodeId] = { + positions: { x: nodes[nodeId].x, y: nodes[nodeId].y } + }; + velocities[nodeId].x = this.previousStates[nodeId].vx; + velocities[nodeId].y = this.previousStates[nodeId].vy; + nodes[nodeId].x = this.previousStates[nodeId].x; + nodes[nodeId].y = this.previousStates[nodeId].y; + } + } else { + delete this.previousStates[nodeId]; + } + } + } + + /** + * This compares the reference state to the current state + */ + }, { + key: '_evaluateStepQuality', + value: function _evaluateStepQuality() { + var dx = undefined, + dy = undefined, + dpos = undefined; + var nodes = this.body.nodes; + var reference = this.referenceState; + var posThreshold = 0.3; + + for (var nodeId in this.referenceState) { + if (this.referenceState.hasOwnProperty(nodeId) && nodes[nodeId] !== undefined) { + dx = nodes[nodeId].x - reference[nodeId].positions.x; + dy = nodes[nodeId].y - reference[nodeId].positions.y; + + dpos = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2)); + + if (dpos > posThreshold) { + return false; + } + } + } + return true; + } + + /** + * move the nodes one timestap and check if they are stabilized + * @returns {boolean} + */ + }, { + key: 'moveNodes', + value: function moveNodes() { + var nodeIndices = this.physicsBody.physicsNodeIndices; + var maxVelocity = this.options.maxVelocity ? this.options.maxVelocity : 1e9; + var maxNodeVelocity = 0; + var averageNodeVelocity = 0; + + // the velocity threshold (energy in the system) for the adaptivity toggle + var velocityAdaptiveThreshold = 5; + + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + var nodeVelocity = this._performStep(nodeId, maxVelocity); + // stabilized is true if stabilized is true and velocity is smaller than vmin --> all nodes must be stabilized + maxNodeVelocity = Math.max(maxNodeVelocity, nodeVelocity); + averageNodeVelocity += nodeVelocity; + } + + // evaluating the stabilized and adaptiveTimestepEnabled conditions + this.adaptiveTimestepEnabled = averageNodeVelocity / nodeIndices.length < velocityAdaptiveThreshold; + this.stabilized = maxNodeVelocity < this.options.minVelocity; + } + + /** + * Perform the actual step + * + * @param nodeId + * @param maxVelocity + * @returns {number} + * @private + */ + }, { + key: '_performStep', + value: function _performStep(nodeId, maxVelocity) { + var node = this.body.nodes[nodeId]; + var timestep = this.timestep; + var forces = this.physicsBody.forces; + var velocities = this.physicsBody.velocities; + + // store the state so we can revert + this.previousStates[nodeId] = { x: node.x, y: node.y, vx: velocities[nodeId].x, vy: velocities[nodeId].y }; + + if (node.options.fixed.x === false) { + var dx = this.modelOptions.damping * velocities[nodeId].x; // damping force + var ax = (forces[nodeId].x - dx) / node.options.mass; // acceleration + velocities[nodeId].x += ax * timestep; // velocity + velocities[nodeId].x = Math.abs(velocities[nodeId].x) > maxVelocity ? velocities[nodeId].x > 0 ? maxVelocity : -maxVelocity : velocities[nodeId].x; + node.x += velocities[nodeId].x * timestep; // position + } else { + forces[nodeId].x = 0; + velocities[nodeId].x = 0; + } + + if (node.options.fixed.y === false) { + var dy = this.modelOptions.damping * velocities[nodeId].y; // damping force + var ay = (forces[nodeId].y - dy) / node.options.mass; // acceleration + velocities[nodeId].y += ay * timestep; // velocity + velocities[nodeId].y = Math.abs(velocities[nodeId].y) > maxVelocity ? velocities[nodeId].y > 0 ? maxVelocity : -maxVelocity : velocities[nodeId].y; + node.y += velocities[nodeId].y * timestep; // position + } else { + forces[nodeId].y = 0; + velocities[nodeId].y = 0; + } + + var totalVelocity = Math.sqrt(Math.pow(velocities[nodeId].x, 2) + Math.pow(velocities[nodeId].y, 2)); + return totalVelocity; + } + + /** + * calculate the forces for one physics iteration. + */ + }, { + key: 'calculateForces', + value: function calculateForces() { + this.gravitySolver.solve(); + this.nodesSolver.solve(); + this.edgesSolver.solve(); + } + + /** + * When initializing and stabilizing, we can freeze nodes with a predefined position. This greatly speeds up stabilization + * because only the supportnodes for the smoothCurves have to settle. + * + * @private + */ + }, { + key: '_freezeNodes', + value: function _freezeNodes() { + var nodes = this.body.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + if (nodes[id].x && nodes[id].y) { + this.freezeCache[id] = { x: nodes[id].options.fixed.x, y: nodes[id].options.fixed.y }; + nodes[id].options.fixed.x = true; + nodes[id].options.fixed.y = true; + } + } + } + } + + /** + * Unfreezes the nodes that have been frozen by _freezeDefinedNodes. + * + * @private + */ + }, { + key: '_restoreFrozenNodes', + value: function _restoreFrozenNodes() { + var nodes = this.body.nodes; + for (var id in nodes) { + if (nodes.hasOwnProperty(id)) { + if (this.freezeCache[id] !== undefined) { + nodes[id].options.fixed.x = this.freezeCache[id].x; + nodes[id].options.fixed.y = this.freezeCache[id].y; + } + } + } + this.freezeCache = {}; + } + + /** + * Find a stable position for all nodes + * @private + */ + }, { + key: 'stabilize', + value: function stabilize() { + var _this3 = this; + + var iterations = arguments.length <= 0 || arguments[0] === undefined ? this.options.stabilization.iterations : arguments[0]; + + if (typeof iterations !== 'number') { + console.log('The stabilize method needs a numeric amount of iterations. Switching to default: ', this.options.stabilization.iterations); + iterations = this.options.stabilization.iterations; + } + + if (this.physicsBody.physicsNodeIndices.length === 0) { + this.ready = true; + return; + } + + // enable adaptive timesteps + this.adaptiveTimestep = true && this.options.adaptiveTimestep; + + // this sets the width of all nodes initially which could be required for the avoidOverlap + this.body.emitter.emit("_resizeNodes"); + + // stop the render loop + this.stopSimulation(); + + // set stabilze to false + this.stabilized = false; + + // block redraw requests + this.body.emitter.emit('_blockRedraw'); + this.targetIterations = iterations; + + // start the stabilization + if (this.options.stabilization.onlyDynamicEdges === true) { + this._freezeNodes(); + } + this.stabilizationIterations = 0; + + setTimeout(function () { + return _this3._stabilizationBatch(); + }, 0); + } + + /** + * One batch of stabilization + * @private + */ + }, { + key: '_stabilizationBatch', + value: function _stabilizationBatch() { + // this is here to ensure that there is at least one start event. + if (this.startedStabilization === false) { + this.body.emitter.emit('startStabilizing'); + this.startedStabilization = true; + } + + var count = 0; + while (this.stabilized === false && count < this.options.stabilization.updateInterval && this.stabilizationIterations < this.targetIterations) { + this.physicsTick(); + count++; + } + + if (this.stabilized === false && this.stabilizationIterations < this.targetIterations) { + this.body.emitter.emit('stabilizationProgress', { iterations: this.stabilizationIterations, total: this.targetIterations }); + setTimeout(this._stabilizationBatch.bind(this), 0); + } else { + this._finalizeStabilization(); + } + } + + /** + * Wrap up the stabilization, fit and emit the events. + * @private + */ + }, { + key: '_finalizeStabilization', + value: function _finalizeStabilization() { + this.body.emitter.emit('_allowRedraw'); + if (this.options.stabilization.fit === true) { + this.body.emitter.emit('fit'); + } + + if (this.options.stabilization.onlyDynamicEdges === true) { + this._restoreFrozenNodes(); + } + + this.body.emitter.emit('stabilizationIterationsDone'); + this.body.emitter.emit('_requestRedraw'); + + if (this.stabilized === true) { + this._emitStabilized(); + } else { + this.startSimulation(); + } + + this.ready = true; + } + }]); + + return PhysicsEngine; + })(); + + exports['default'] = PhysicsEngine; + module.exports = exports['default']; + +/***/ }, +/* 91 */ +/***/ function(module, exports) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var BarnesHutSolver = (function () { + function BarnesHutSolver(body, physicsBody, options) { + _classCallCheck(this, BarnesHutSolver); + + this.body = body; + this.physicsBody = physicsBody; + this.barnesHutTree; + this.setOptions(options); + this.randomSeed = 5; + } + + _createClass(BarnesHutSolver, [{ + key: "setOptions", + value: function setOptions(options) { + this.options = options; + this.thetaInversed = 1 / this.options.theta; + this.overlapAvoidanceFactor = 1 - Math.max(0, Math.min(1, this.options.avoidOverlap)); // if 1 then min distance = 0.5, if 0.5 then min distance = 0.5 + 0.5*node.shape.radius + } + }, { + key: "seededRandom", + value: function seededRandom() { + var x = Math.sin(this.randomSeed++) * 10000; + return x - Math.floor(x); + } + + /** + * This function calculates the forces the nodes apply on eachother based on a gravitational model. + * The Barnes Hut method is used to speed up this N-body simulation. + * + * @private + */ + }, { + key: "solve", + value: function solve() { + if (this.options.gravitationalConstant !== 0 && this.physicsBody.physicsNodeIndices.length > 0) { + var node = undefined; + var nodes = this.body.nodes; + var nodeIndices = this.physicsBody.physicsNodeIndices; + var nodeCount = nodeIndices.length; + + // create the tree + var barnesHutTree = this._formBarnesHutTree(nodes, nodeIndices); + + // for debugging + this.barnesHutTree = barnesHutTree; + + // place the nodes one by one recursively + for (var i = 0; i < nodeCount; i++) { + node = nodes[nodeIndices[i]]; + if (node.options.mass > 0) { + // starting with root is irrelevant, it never passes the BarnesHutSolver condition + this._getForceContribution(barnesHutTree.root.children.NW, node); + this._getForceContribution(barnesHutTree.root.children.NE, node); + this._getForceContribution(barnesHutTree.root.children.SW, node); + this._getForceContribution(barnesHutTree.root.children.SE, node); + } + } + } + } + + /** + * This function traverses the barnesHutTree. It checks when it can approximate distant nodes with their center of mass. + * If a region contains a single node, we check if it is not itself, then we apply the force. + * + * @param parentBranch + * @param node + * @private + */ + }, { + key: "_getForceContribution", + value: function _getForceContribution(parentBranch, node) { + // we get no force contribution from an empty region + if (parentBranch.childrenCount > 0) { + var dx = undefined, + dy = undefined, + distance = undefined; + + // get the distance from the center of mass to the node. + dx = parentBranch.centerOfMass.x - node.x; + dy = parentBranch.centerOfMass.y - node.y; + distance = Math.sqrt(dx * dx + dy * dy); + + // BarnesHutSolver condition + // original condition : s/d < theta = passed === d/s > 1/theta = passed + // calcSize = 1/s --> d * 1/s > 1/theta = passed + if (distance * parentBranch.calcSize > this.thetaInversed) { + this._calculateForces(distance, dx, dy, node, parentBranch); + } else { + // Did not pass the condition, go into children if available + if (parentBranch.childrenCount === 4) { + this._getForceContribution(parentBranch.children.NW, node); + this._getForceContribution(parentBranch.children.NE, node); + this._getForceContribution(parentBranch.children.SW, node); + this._getForceContribution(parentBranch.children.SE, node); + } else { + // parentBranch must have only one node, if it was empty we wouldnt be here + if (parentBranch.children.data.id != node.id) { + // if it is not self + this._calculateForces(distance, dx, dy, node, parentBranch); + } + } + } + } + } + + /** + * Calculate the forces based on the distance. + * + * @param distance + * @param dx + * @param dy + * @param node + * @param parentBranch + * @private + */ + }, { + key: "_calculateForces", + value: function _calculateForces(distance, dx, dy, node, parentBranch) { + if (distance === 0) { + distance = 0.1; + dx = distance; + } + + if (this.overlapAvoidanceFactor < 1) { + distance = Math.max(0.1 + this.overlapAvoidanceFactor * node.shape.radius, distance - node.shape.radius); + } + + // the dividing by the distance cubed instead of squared allows us to get the fx and fy components without sines and cosines + // it is shorthand for gravityforce with distance squared and fx = dx/distance * gravityForce + var gravityForce = this.options.gravitationalConstant * parentBranch.mass * node.options.mass / Math.pow(distance, 3); + var fx = dx * gravityForce; + var fy = dy * gravityForce; + + this.physicsBody.forces[node.id].x += fx; + this.physicsBody.forces[node.id].y += fy; + } + + /** + * This function constructs the barnesHut tree recursively. It creates the root, splits it and starts placing the nodes. + * + * @param nodes + * @param nodeIndices + * @private + */ + }, { + key: "_formBarnesHutTree", + value: function _formBarnesHutTree(nodes, nodeIndices) { + var node = undefined; + var nodeCount = nodeIndices.length; + + var minX = nodes[nodeIndices[0]].x; + var minY = nodes[nodeIndices[0]].y; + var maxX = nodes[nodeIndices[0]].x; + var maxY = nodes[nodeIndices[0]].y; + + // get the range of the nodes + for (var i = 1; i < nodeCount; i++) { + var x = nodes[nodeIndices[i]].x; + var y = nodes[nodeIndices[i]].y; + if (nodes[nodeIndices[i]].options.mass > 0) { + if (x < minX) { + minX = x; + } + if (x > maxX) { + maxX = x; + } + if (y < minY) { + minY = y; + } + if (y > maxY) { + maxY = y; + } + } + } + // make the range a square + var sizeDiff = Math.abs(maxX - minX) - Math.abs(maxY - minY); // difference between X and Y + if (sizeDiff > 0) { + minY -= 0.5 * sizeDiff; + maxY += 0.5 * sizeDiff; + } // xSize > ySize + else { + minX += 0.5 * sizeDiff; + maxX -= 0.5 * sizeDiff; + } // xSize < ySize + + var minimumTreeSize = 1e-5; + var rootSize = Math.max(minimumTreeSize, Math.abs(maxX - minX)); + var halfRootSize = 0.5 * rootSize; + var centerX = 0.5 * (minX + maxX), + centerY = 0.5 * (minY + maxY); + + // construct the barnesHutTree + var barnesHutTree = { + root: { + centerOfMass: { x: 0, y: 0 }, + mass: 0, + range: { + minX: centerX - halfRootSize, maxX: centerX + halfRootSize, + minY: centerY - halfRootSize, maxY: centerY + halfRootSize + }, + size: rootSize, + calcSize: 1 / rootSize, + children: { data: null }, + maxWidth: 0, + level: 0, + childrenCount: 4 + } + }; + this._splitBranch(barnesHutTree.root); + + // place the nodes one by one recursively + for (var i = 0; i < nodeCount; i++) { + node = nodes[nodeIndices[i]]; + if (node.options.mass > 0) { + this._placeInTree(barnesHutTree.root, node); + } + } + + // make global + return barnesHutTree; + } + + /** + * this updates the mass of a branch. this is increased by adding a node. + * + * @param parentBranch + * @param node + * @private + */ + }, { + key: "_updateBranchMass", + value: function _updateBranchMass(parentBranch, node) { + var totalMass = parentBranch.mass + node.options.mass; + var totalMassInv = 1 / totalMass; + + parentBranch.centerOfMass.x = parentBranch.centerOfMass.x * parentBranch.mass + node.x * node.options.mass; + parentBranch.centerOfMass.x *= totalMassInv; + + parentBranch.centerOfMass.y = parentBranch.centerOfMass.y * parentBranch.mass + node.y * node.options.mass; + parentBranch.centerOfMass.y *= totalMassInv; + + parentBranch.mass = totalMass; + var biggestSize = Math.max(Math.max(node.height, node.radius), node.width); + parentBranch.maxWidth = parentBranch.maxWidth < biggestSize ? biggestSize : parentBranch.maxWidth; + } + + /** + * determine in which branch the node will be placed. + * + * @param parentBranch + * @param node + * @param skipMassUpdate + * @private + */ + }, { + key: "_placeInTree", + value: function _placeInTree(parentBranch, node, skipMassUpdate) { + if (skipMassUpdate != true || skipMassUpdate === undefined) { + // update the mass of the branch. + this._updateBranchMass(parentBranch, node); + } + + if (parentBranch.children.NW.range.maxX > node.x) { + // in NW or SW + if (parentBranch.children.NW.range.maxY > node.y) { + // in NW + this._placeInRegion(parentBranch, node, "NW"); + } else { + // in SW + this._placeInRegion(parentBranch, node, "SW"); + } + } else { + // in NE or SE + if (parentBranch.children.NW.range.maxY > node.y) { + // in NE + this._placeInRegion(parentBranch, node, "NE"); + } else { + // in SE + this._placeInRegion(parentBranch, node, "SE"); + } + } + } + + /** + * actually place the node in a region (or branch) + * + * @param parentBranch + * @param node + * @param region + * @private + */ + }, { + key: "_placeInRegion", + value: function _placeInRegion(parentBranch, node, region) { + switch (parentBranch.children[region].childrenCount) { + case 0: + // place node here + parentBranch.children[region].children.data = node; + parentBranch.children[region].childrenCount = 1; + this._updateBranchMass(parentBranch.children[region], node); + break; + case 1: + // convert into children + // if there are two nodes exactly overlapping (on init, on opening of cluster etc.) + // we move one node a pixel and we do not put it in the tree. + if (parentBranch.children[region].children.data.x === node.x && parentBranch.children[region].children.data.y === node.y) { + node.x += this.seededRandom(); + node.y += this.seededRandom(); + } else { + this._splitBranch(parentBranch.children[region]); + this._placeInTree(parentBranch.children[region], node); + } + break; + case 4: + // place in branch + this._placeInTree(parentBranch.children[region], node); + break; + } + } + + /** + * this function splits a branch into 4 sub branches. If the branch contained a node, we place it in the subbranch + * after the split is complete. + * + * @param parentBranch + * @private + */ + }, { + key: "_splitBranch", + value: function _splitBranch(parentBranch) { + // if the branch is shaded with a node, replace the node in the new subset. + var containedNode = null; + if (parentBranch.childrenCount === 1) { + containedNode = parentBranch.children.data; + parentBranch.mass = 0; + parentBranch.centerOfMass.x = 0; + parentBranch.centerOfMass.y = 0; + } + parentBranch.childrenCount = 4; + parentBranch.children.data = null; + this._insertRegion(parentBranch, "NW"); + this._insertRegion(parentBranch, "NE"); + this._insertRegion(parentBranch, "SW"); + this._insertRegion(parentBranch, "SE"); + + if (containedNode != null) { + this._placeInTree(parentBranch, containedNode); + } + } + + /** + * This function subdivides the region into four new segments. + * Specifically, this inserts a single new segment. + * It fills the children section of the parentBranch + * + * @param parentBranch + * @param region + * @param parentRange + * @private + */ + }, { + key: "_insertRegion", + value: function _insertRegion(parentBranch, region) { + var minX = undefined, + maxX = undefined, + minY = undefined, + maxY = undefined; + var childSize = 0.5 * parentBranch.size; + switch (region) { + case "NW": + minX = parentBranch.range.minX; + maxX = parentBranch.range.minX + childSize; + minY = parentBranch.range.minY; + maxY = parentBranch.range.minY + childSize; + break; + case "NE": + minX = parentBranch.range.minX + childSize; + maxX = parentBranch.range.maxX; + minY = parentBranch.range.minY; + maxY = parentBranch.range.minY + childSize; + break; + case "SW": + minX = parentBranch.range.minX; + maxX = parentBranch.range.minX + childSize; + minY = parentBranch.range.minY + childSize; + maxY = parentBranch.range.maxY; + break; + case "SE": + minX = parentBranch.range.minX + childSize; + maxX = parentBranch.range.maxX; + minY = parentBranch.range.minY + childSize; + maxY = parentBranch.range.maxY; + break; + } + + parentBranch.children[region] = { + centerOfMass: { x: 0, y: 0 }, + mass: 0, + range: { minX: minX, maxX: maxX, minY: minY, maxY: maxY }, + size: 0.5 * parentBranch.size, + calcSize: 2 * parentBranch.calcSize, + children: { data: null }, + maxWidth: 0, + level: parentBranch.level + 1, + childrenCount: 0 + }; + } + + //--------------------------- DEBUGGING BELOW ---------------------------// + + /** + * This function is for debugging purposed, it draws the tree. + * + * @param ctx + * @param color + * @private + */ + }, { + key: "_debug", + value: function _debug(ctx, color) { + if (this.barnesHutTree !== undefined) { + + ctx.lineWidth = 1; + + this._drawBranch(this.barnesHutTree.root, ctx, color); + } + } + + /** + * This function is for debugging purposes. It draws the branches recursively. + * + * @param branch + * @param ctx + * @param color + * @private + */ + }, { + key: "_drawBranch", + value: function _drawBranch(branch, ctx, color) { + if (color === undefined) { + color = "#FF0000"; + } + + if (branch.childrenCount === 4) { + this._drawBranch(branch.children.NW, ctx); + this._drawBranch(branch.children.NE, ctx); + this._drawBranch(branch.children.SE, ctx); + this._drawBranch(branch.children.SW, ctx); + } + ctx.strokeStyle = color; + ctx.beginPath(); + ctx.moveTo(branch.range.minX, branch.range.minY); + ctx.lineTo(branch.range.maxX, branch.range.minY); + ctx.stroke(); + + ctx.beginPath(); + ctx.moveTo(branch.range.maxX, branch.range.minY); + ctx.lineTo(branch.range.maxX, branch.range.maxY); + ctx.stroke(); + + ctx.beginPath(); + ctx.moveTo(branch.range.maxX, branch.range.maxY); + ctx.lineTo(branch.range.minX, branch.range.maxY); + ctx.stroke(); + + ctx.beginPath(); + ctx.moveTo(branch.range.minX, branch.range.maxY); + ctx.lineTo(branch.range.minX, branch.range.minY); + ctx.stroke(); + + /* + if (branch.mass > 0) { + ctx.circle(branch.centerOfMass.x, branch.centerOfMass.y, 3*branch.mass); + ctx.stroke(); + } + */ + } + }]); + + return BarnesHutSolver; + })(); + + exports["default"] = BarnesHutSolver; + module.exports = exports["default"]; + +/***/ }, +/* 92 */ +/***/ function(module, exports) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var RepulsionSolver = (function () { + function RepulsionSolver(body, physicsBody, options) { + _classCallCheck(this, RepulsionSolver); + + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _createClass(RepulsionSolver, [{ + key: "setOptions", + value: function setOptions(options) { + this.options = options; + } + + /** + * Calculate the forces the nodes apply on each other based on a repulsion field. + * This field is linearly approximated. + * + * @private + */ + }, { + key: "solve", + value: function solve() { + var dx, dy, distance, fx, fy, repulsingForce, node1, node2; + + var nodes = this.body.nodes; + var nodeIndices = this.physicsBody.physicsNodeIndices; + var forces = this.physicsBody.forces; + + // repulsing forces between nodes + var nodeDistance = this.options.nodeDistance; + + // approximation constants + var a = -2 / 3 / nodeDistance; + var b = 4 / 3; + + // we loop from i over all but the last entree in the array + // j loops from i+1 to the last. This way we do not double count any of the indices, nor i === j + for (var i = 0; i < nodeIndices.length - 1; i++) { + node1 = nodes[nodeIndices[i]]; + for (var j = i + 1; j < nodeIndices.length; j++) { + node2 = nodes[nodeIndices[j]]; + + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + // same condition as BarnesHutSolver, making sure nodes are never 100% overlapping. + if (distance === 0) { + distance = 0.1 * Math.random(); + dx = distance; + } + + if (distance < 2 * nodeDistance) { + if (distance < 0.5 * nodeDistance) { + repulsingForce = 1.0; + } else { + repulsingForce = a * distance + b; // linear approx of 1 / (1 + Math.exp((distance / nodeDistance - 1) * steepness)) + } + repulsingForce = repulsingForce / distance; + + fx = dx * repulsingForce; + fy = dy * repulsingForce; + + forces[node1.id].x -= fx; + forces[node1.id].y -= fy; + forces[node2.id].x += fx; + forces[node2.id].y += fy; + } + } + } + } + }]); + + return RepulsionSolver; + })(); + + exports["default"] = RepulsionSolver; + module.exports = exports["default"]; + +/***/ }, +/* 93 */ +/***/ function(module, exports) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var HierarchicalRepulsionSolver = (function () { + function HierarchicalRepulsionSolver(body, physicsBody, options) { + _classCallCheck(this, HierarchicalRepulsionSolver); + + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _createClass(HierarchicalRepulsionSolver, [{ + key: "setOptions", + value: function setOptions(options) { + this.options = options; + } + + /** + * Calculate the forces the nodes apply on each other based on a repulsion field. + * This field is linearly approximated. + * + * @private + */ + }, { + key: "solve", + value: function solve() { + var dx, dy, distance, fx, fy, repulsingForce, node1, node2, i, j; + + var nodes = this.body.nodes; + var nodeIndices = this.physicsBody.physicsNodeIndices; + var forces = this.physicsBody.forces; + + // repulsing forces between nodes + var nodeDistance = this.options.nodeDistance; + + // we loop from i over all but the last entree in the array + // j loops from i+1 to the last. This way we do not double count any of the indices, nor i === j + for (i = 0; i < nodeIndices.length - 1; i++) { + node1 = nodes[nodeIndices[i]]; + for (j = i + 1; j < nodeIndices.length; j++) { + node2 = nodes[nodeIndices[j]]; + + // nodes only affect nodes on their level + if (node1.level === node2.level) { + dx = node2.x - node1.x; + dy = node2.y - node1.y; + distance = Math.sqrt(dx * dx + dy * dy); + + var steepness = 0.05; + if (distance < nodeDistance) { + repulsingForce = -Math.pow(steepness * distance, 2) + Math.pow(steepness * nodeDistance, 2); + } else { + repulsingForce = 0; + } + // normalize force with + if (distance === 0) { + distance = 0.01; + } else { + repulsingForce = repulsingForce / distance; + } + fx = dx * repulsingForce; + fy = dy * repulsingForce; + + forces[node1.id].x -= fx; + forces[node1.id].y -= fy; + forces[node2.id].x += fx; + forces[node2.id].y += fy; + } + } + } + } + }]); + + return HierarchicalRepulsionSolver; + })(); + + exports["default"] = HierarchicalRepulsionSolver; + module.exports = exports["default"]; + +/***/ }, +/* 94 */ +/***/ function(module, exports) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var SpringSolver = (function () { + function SpringSolver(body, physicsBody, options) { + _classCallCheck(this, SpringSolver); + + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _createClass(SpringSolver, [{ + key: "setOptions", + value: function setOptions(options) { + this.options = options; + } + + /** + * This function calculates the springforces on the nodes, accounting for the support nodes. + * + * @private + */ + }, { + key: "solve", + value: function solve() { + var edgeLength = undefined, + edge = undefined; + var edgeIndices = this.physicsBody.physicsEdgeIndices; + var edges = this.body.edges; + var node1 = undefined, + node2 = undefined, + node3 = undefined; + + // forces caused by the edges, modelled as springs + for (var i = 0; i < edgeIndices.length; i++) { + edge = edges[edgeIndices[i]]; + if (edge.connected === true && edge.toId !== edge.fromId) { + // only calculate forces if nodes are in the same sector + if (this.body.nodes[edge.toId] !== undefined && this.body.nodes[edge.fromId] !== undefined) { + if (edge.edgeType.via !== undefined) { + edgeLength = edge.options.length === undefined ? this.options.springLength : edge.options.length; + node1 = edge.to; + node2 = edge.edgeType.via; + node3 = edge.from; + + this._calculateSpringForce(node1, node2, 0.5 * edgeLength); + this._calculateSpringForce(node2, node3, 0.5 * edgeLength); + } else { + // the * 1.5 is here so the edge looks as large as a smooth edge. It does not initially because the smooth edges use + // the support nodes which exert a repulsive force on the to and from nodes, making the edge appear larger. + edgeLength = edge.options.length === undefined ? this.options.springLength * 1.5 : edge.options.length; + this._calculateSpringForce(edge.from, edge.to, edgeLength); + } + } + } + } + } + + /** + * This is the code actually performing the calculation for the function above. + * + * @param node1 + * @param node2 + * @param edgeLength + * @private + */ + }, { + key: "_calculateSpringForce", + value: function _calculateSpringForce(node1, node2, edgeLength) { + var dx = node1.x - node2.x; + var dy = node1.y - node2.y; + var distance = Math.max(Math.sqrt(dx * dx + dy * dy), 0.01); + + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + var springForce = this.options.springConstant * (edgeLength - distance) / distance; + + var fx = dx * springForce; + var fy = dy * springForce; + + // handle the case where one node is not part of the physcis + if (this.physicsBody.forces[node1.id] !== undefined) { + this.physicsBody.forces[node1.id].x += fx; + this.physicsBody.forces[node1.id].y += fy; + } + + if (this.physicsBody.forces[node2.id] !== undefined) { + this.physicsBody.forces[node2.id].x -= fx; + this.physicsBody.forces[node2.id].y -= fy; + } + } + }]); + + return SpringSolver; + })(); + + exports["default"] = SpringSolver; + module.exports = exports["default"]; + +/***/ }, +/* 95 */ +/***/ function(module, exports) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var HierarchicalSpringSolver = (function () { + function HierarchicalSpringSolver(body, physicsBody, options) { + _classCallCheck(this, HierarchicalSpringSolver); + + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _createClass(HierarchicalSpringSolver, [{ + key: "setOptions", + value: function setOptions(options) { + this.options = options; + } + + /** + * This function calculates the springforces on the nodes, accounting for the support nodes. + * + * @private + */ + }, { + key: "solve", + value: function solve() { + var edgeLength, edge; + var dx, dy, fx, fy, springForce, distance; + var edges = this.body.edges; + var factor = 0.5; + + var edgeIndices = this.physicsBody.physicsEdgeIndices; + var nodeIndices = this.physicsBody.physicsNodeIndices; + var forces = this.physicsBody.forces; + + // initialize the spring force counters + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + forces[nodeId].springFx = 0; + forces[nodeId].springFy = 0; + } + + // forces caused by the edges, modelled as springs + for (var i = 0; i < edgeIndices.length; i++) { + edge = edges[edgeIndices[i]]; + if (edge.connected === true) { + edgeLength = edge.options.length === undefined ? this.options.springLength : edge.options.length; + + dx = edge.from.x - edge.to.x; + dy = edge.from.y - edge.to.y; + distance = Math.sqrt(dx * dx + dy * dy); + distance = distance === 0 ? 0.01 : distance; + + // the 1/distance is so the fx and fy can be calculated without sine or cosine. + springForce = this.options.springConstant * (edgeLength - distance) / distance; + + fx = dx * springForce; + fy = dy * springForce; + + if (edge.to.level != edge.from.level) { + if (forces[edge.toId] !== undefined) { + forces[edge.toId].springFx -= fx; + forces[edge.toId].springFy -= fy; + } + if (forces[edge.fromId] !== undefined) { + forces[edge.fromId].springFx += fx; + forces[edge.fromId].springFy += fy; + } + } else { + if (forces[edge.toId] !== undefined) { + forces[edge.toId].x -= factor * fx; + forces[edge.toId].y -= factor * fy; + } + if (forces[edge.fromId] !== undefined) { + forces[edge.fromId].x += factor * fx; + forces[edge.fromId].y += factor * fy; + } + } + } + } + + // normalize spring forces + var springForce = 1; + var springFx, springFy; + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + springFx = Math.min(springForce, Math.max(-springForce, forces[nodeId].springFx)); + springFy = Math.min(springForce, Math.max(-springForce, forces[nodeId].springFy)); + + forces[nodeId].x += springFx; + forces[nodeId].y += springFy; + } + + // retain energy balance + var totalFx = 0; + var totalFy = 0; + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + totalFx += forces[nodeId].x; + totalFy += forces[nodeId].y; + } + var correctionFx = totalFx / nodeIndices.length; + var correctionFy = totalFy / nodeIndices.length; + + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + forces[nodeId].x -= correctionFx; + forces[nodeId].y -= correctionFy; + } + } + }]); + + return HierarchicalSpringSolver; + })(); + + exports["default"] = HierarchicalSpringSolver; + module.exports = exports["default"]; + +/***/ }, +/* 96 */ +/***/ function(module, exports) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var CentralGravitySolver = (function () { + function CentralGravitySolver(body, physicsBody, options) { + _classCallCheck(this, CentralGravitySolver); + + this.body = body; + this.physicsBody = physicsBody; + this.setOptions(options); + } + + _createClass(CentralGravitySolver, [{ + key: "setOptions", + value: function setOptions(options) { + this.options = options; + } + }, { + key: "solve", + value: function solve() { + var dx = undefined, + dy = undefined, + distance = undefined, + node = undefined; + var nodes = this.body.nodes; + var nodeIndices = this.physicsBody.physicsNodeIndices; + var forces = this.physicsBody.forces; + + for (var i = 0; i < nodeIndices.length; i++) { + var nodeId = nodeIndices[i]; + node = nodes[nodeId]; + dx = -node.x; + dy = -node.y; + distance = Math.sqrt(dx * dx + dy * dy); + + this._calculateForces(distance, dx, dy, forces, node); + } + } + + /** + * Calculate the forces based on the distance. + * @private + */ + }, { + key: "_calculateForces", + value: function _calculateForces(distance, dx, dy, forces, node) { + var gravityForce = distance === 0 ? 0 : this.options.centralGravity / distance; + forces[node.id].x = dx * gravityForce; + forces[node.id].y = dy * gravityForce; + } + }]); + + return CentralGravitySolver; + })(); + + exports["default"] = CentralGravitySolver; + module.exports = exports["default"]; + +/***/ }, +/* 97 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _BarnesHutSolver2 = __webpack_require__(91); + + var _BarnesHutSolver3 = _interopRequireDefault(_BarnesHutSolver2); + + var ForceAtlas2BasedRepulsionSolver = (function (_BarnesHutSolver) { + _inherits(ForceAtlas2BasedRepulsionSolver, _BarnesHutSolver); + + function ForceAtlas2BasedRepulsionSolver(body, physicsBody, options) { + _classCallCheck(this, ForceAtlas2BasedRepulsionSolver); + + _get(Object.getPrototypeOf(ForceAtlas2BasedRepulsionSolver.prototype), "constructor", this).call(this, body, physicsBody, options); + } + + /** + * Calculate the forces based on the distance. + * + * @param distance + * @param dx + * @param dy + * @param node + * @param parentBranch + * @private + */ + + _createClass(ForceAtlas2BasedRepulsionSolver, [{ + key: "_calculateForces", + value: function _calculateForces(distance, dx, dy, node, parentBranch) { + if (distance === 0) { + distance = 0.1 * Math.random(); + dx = distance; + } + + if (this.overlapAvoidanceFactor < 1) { + distance = Math.max(0.1 + this.overlapAvoidanceFactor * node.shape.radius, distance - node.shape.radius); + } + + var degree = node.edges.length + 1; + // the dividing by the distance cubed instead of squared allows us to get the fx and fy components without sines and cosines + // it is shorthand for gravityforce with distance squared and fx = dx/distance * gravityForce + var gravityForce = this.options.gravitationalConstant * parentBranch.mass * node.options.mass * degree / Math.pow(distance, 2); + var fx = dx * gravityForce; + var fy = dy * gravityForce; + + this.physicsBody.forces[node.id].x += fx; + this.physicsBody.forces[node.id].y += fy; + } + }]); + + return ForceAtlas2BasedRepulsionSolver; + })(_BarnesHutSolver3["default"]); + + exports["default"] = ForceAtlas2BasedRepulsionSolver; + module.exports = exports["default"]; + +/***/ }, +/* 98 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _CentralGravitySolver2 = __webpack_require__(96); + + var _CentralGravitySolver3 = _interopRequireDefault(_CentralGravitySolver2); + + var ForceAtlas2BasedCentralGravitySolver = (function (_CentralGravitySolver) { + _inherits(ForceAtlas2BasedCentralGravitySolver, _CentralGravitySolver); + + function ForceAtlas2BasedCentralGravitySolver(body, physicsBody, options) { + _classCallCheck(this, ForceAtlas2BasedCentralGravitySolver); + + _get(Object.getPrototypeOf(ForceAtlas2BasedCentralGravitySolver.prototype), "constructor", this).call(this, body, physicsBody, options); + } + + /** + * Calculate the forces based on the distance. + * @private + */ + + _createClass(ForceAtlas2BasedCentralGravitySolver, [{ + key: "_calculateForces", + value: function _calculateForces(distance, dx, dy, forces, node) { + if (distance > 0) { + var degree = node.edges.length + 1; + var gravityForce = this.options.centralGravity * degree * node.options.mass; + forces[node.id].x = dx * gravityForce; + forces[node.id].y = dy * gravityForce; + } + } + }]); + + return ForceAtlas2BasedCentralGravitySolver; + })(_CentralGravitySolver3["default"]); + + exports["default"] = ForceAtlas2BasedCentralGravitySolver; + module.exports = exports["default"]; + +/***/ }, +/* 99 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _componentsNodesCluster = __webpack_require__(100); + + var _componentsNodesCluster2 = _interopRequireDefault(_componentsNodesCluster); + + var util = __webpack_require__(1); + + var ClusterEngine = (function () { + function ClusterEngine(body) { + var _this = this; + + _classCallCheck(this, ClusterEngine); + + this.body = body; + this.clusteredNodes = {}; + + this.options = {}; + this.defaultOptions = {}; + util.extend(this.options, this.defaultOptions); + + this.body.emitter.on('_resetData', function () { + _this.clusteredNodes = {}; + }); + } + + _createClass(ClusterEngine, [{ + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) {} + } + + /** + * + * @param hubsize + * @param options + */ + }, { + key: 'clusterByHubsize', + value: function clusterByHubsize(hubsize, options) { + if (hubsize === undefined) { + hubsize = this._getHubSize(); + } else if (typeof hubsize === "object") { + options = this._checkOptions(hubsize); + hubsize = this._getHubSize(); + } + + var nodesToCluster = []; + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var node = this.body.nodes[this.body.nodeIndices[i]]; + if (node.edges.length >= hubsize) { + nodesToCluster.push(node.id); + } + } + + for (var i = 0; i < nodesToCluster.length; i++) { + this.clusterByConnection(nodesToCluster[i], options, true); + } + + this.body.emitter.emit('_dataChanged'); + } + + /** + * loop over all nodes, check if they adhere to the condition and cluster if needed. + * @param options + * @param refreshData + */ + }, { + key: 'cluster', + value: function cluster() { + var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0]; + var refreshData = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + if (options.joinCondition === undefined) { + throw new Error("Cannot call clusterByNodeData without a joinCondition function in the options."); + } + + // check if the options object is fine, append if needed + options = this._checkOptions(options); + + var childNodesObj = {}; + var childEdgesObj = {}; + + // collect the nodes that will be in the cluster + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var nodeId = this.body.nodeIndices[i]; + var node = this.body.nodes[nodeId]; + var clonedOptions = this._cloneOptions(node); + if (options.joinCondition(clonedOptions) === true) { + childNodesObj[nodeId] = this.body.nodes[nodeId]; + + // collect the nodes that will be in the cluster + for (var _i = 0; _i < node.edges.length; _i++) { + var edge = node.edges[_i]; + if (edge.hiddenByCluster !== true) { + childEdgesObj[edge.id] = edge; + } + } + } + } + + this._cluster(childNodesObj, childEdgesObj, options, refreshData); + } + + /** + * Cluster all nodes in the network that have only X edges + * @param edgeCount + * @param options + * @param refreshData + */ + }, { + key: 'clusterByEdgeCount', + value: function clusterByEdgeCount(edgeCount, options) { + var refreshData = arguments.length <= 2 || arguments[2] === undefined ? true : arguments[2]; + + options = this._checkOptions(options); + var clusters = []; + var usedNodes = {}; + var edge = undefined, + edges = undefined, + node = undefined, + nodeId = undefined, + visibleEdges = undefined; + // collect the nodes that will be in the cluster + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var childNodesObj = {}; + var childEdgesObj = {}; + nodeId = this.body.nodeIndices[i]; + + // if this node is already used in another cluster this session, we do not have to re-evaluate it. + if (usedNodes[nodeId] === undefined) { + visibleEdges = 0; + node = this.body.nodes[nodeId]; + edges = []; + for (var j = 0; j < node.edges.length; j++) { + edge = node.edges[j]; + if (edge.hiddenByCluster !== true) { + edges.push(edge); + } + } + + // this node qualifies, we collect its neighbours to start the clustering process. + if (edges.length === edgeCount) { + var gatheringSuccessful = true; + for (var j = 0; j < edges.length; j++) { + edge = edges[j]; + var childNodeId = this._getConnectedId(edge, nodeId); + // if unused and if not referencing itself + if (childNodeId !== nodeId && usedNodes[nodeId] === undefined) { + // add the nodes to the list by the join condition. + if (options.joinCondition === undefined) { + childEdgesObj[edge.id] = edge; + childNodesObj[nodeId] = this.body.nodes[nodeId]; + childNodesObj[childNodeId] = this.body.nodes[childNodeId]; + usedNodes[nodeId] = true; + } else { + var clonedOptions = this._cloneOptions(this.body.nodes[nodeId]); + if (options.joinCondition(clonedOptions) === true) { + childEdgesObj[edge.id] = edge; + childNodesObj[nodeId] = this.body.nodes[nodeId]; + usedNodes[nodeId] = true; + } else { + // this node does not qualify after all. + gatheringSuccessful = false; + break; + } + } + } else { + // this node does not qualify after all. + gatheringSuccessful = false; + break; + } + } + + // add to the cluster queue + if (Object.keys(childNodesObj).length > 0 && Object.keys(childEdgesObj).length > 0 && gatheringSuccessful === true) { + clusters.push({ nodes: childNodesObj, edges: childEdgesObj }); + } + } + } + } + + for (var i = 0; i < clusters.length; i++) { + this._cluster(clusters[i].nodes, clusters[i].edges, options, false); + } + + if (refreshData === true) { + this.body.emitter.emit('_dataChanged'); + } + } + + /** + * Cluster all nodes in the network that have only 1 edge + * @param options + * @param refreshData + */ + }, { + key: 'clusterOutliers', + value: function clusterOutliers(options) { + var refreshData = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + this.clusterByEdgeCount(1, options, refreshData); + } + + /** + * Cluster all nodes in the network that have only 2 edge + * @param options + * @param refreshData + */ + }, { + key: 'clusterBridges', + value: function clusterBridges(options) { + var refreshData = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + this.clusterByEdgeCount(2, options, refreshData); + } + + /** + * suck all connected nodes of a node into the node. + * @param nodeId + * @param options + * @param refreshData + */ + }, { + key: 'clusterByConnection', + value: function clusterByConnection(nodeId, options) { + var refreshData = arguments.length <= 2 || arguments[2] === undefined ? true : arguments[2]; + + // kill conditions + if (nodeId === undefined) { + throw new Error("No nodeId supplied to clusterByConnection!"); + } + if (this.body.nodes[nodeId] === undefined) { + throw new Error("The nodeId given to clusterByConnection does not exist!"); + } + + var node = this.body.nodes[nodeId]; + options = this._checkOptions(options, node); + if (options.clusterNodeProperties.x === undefined) { + options.clusterNodeProperties.x = node.x; + } + if (options.clusterNodeProperties.y === undefined) { + options.clusterNodeProperties.y = node.y; + } + if (options.clusterNodeProperties.fixed === undefined) { + options.clusterNodeProperties.fixed = {}; + options.clusterNodeProperties.fixed.x = node.options.fixed.x; + options.clusterNodeProperties.fixed.y = node.options.fixed.y; + } + + var childNodesObj = {}; + var childEdgesObj = {}; + var parentNodeId = node.id; + var parentClonedOptions = this._cloneOptions(node); + childNodesObj[parentNodeId] = node; + + // collect the nodes that will be in the cluster + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + if (edge.hiddenByCluster !== true) { + var childNodeId = this._getConnectedId(edge, parentNodeId); + + // if the child node is not in a cluster (may not be needed now with the edge.hiddenByCluster check) + if (this.clusteredNodes[childNodeId] === undefined) { + if (childNodeId !== parentNodeId) { + if (options.joinCondition === undefined) { + childEdgesObj[edge.id] = edge; + childNodesObj[childNodeId] = this.body.nodes[childNodeId]; + } else { + // clone the options and insert some additional parameters that could be interesting. + var childClonedOptions = this._cloneOptions(this.body.nodes[childNodeId]); + if (options.joinCondition(parentClonedOptions, childClonedOptions) === true) { + childEdgesObj[edge.id] = edge; + childNodesObj[childNodeId] = this.body.nodes[childNodeId]; + } + } + } else { + // swallow the edge if it is self-referencing. + childEdgesObj[edge.id] = edge; + } + } + } + } + + this._cluster(childNodesObj, childEdgesObj, options, refreshData); + } + + /** + * This returns a clone of the options or options of the edge or node to be used for construction of new edges or check functions for new nodes. + * @param objId + * @param type + * @returns {{}} + * @private + */ + }, { + key: '_cloneOptions', + value: function _cloneOptions(item, type) { + var clonedOptions = {}; + if (type === undefined || type === 'node') { + util.deepExtend(clonedOptions, item.options, true); + clonedOptions.x = item.x; + clonedOptions.y = item.y; + clonedOptions.amountOfConnections = item.edges.length; + } else { + util.deepExtend(clonedOptions, item.options, true); + } + return clonedOptions; + } + + /** + * This function creates the edges that will be attached to the cluster + * It looks for edges that are connected to the nodes from the "outside' of the cluster. + * + * @param childNodesObj + * @param newEdges + * @param options + * @private + */ + }, { + key: '_createClusterEdges', + value: function _createClusterEdges(childNodesObj, clusterNodeProperties, clusterEdgeProperties) { + var edge = undefined, + childNodeId = undefined, + childNode = undefined, + toId = undefined, + fromId = undefined, + otherNodeId = undefined; + + // loop over all child nodes and their edges to find edges going out of the cluster + // these edges will be replaced by clusterEdges. + var childKeys = Object.keys(childNodesObj); + var createEdges = []; + for (var i = 0; i < childKeys.length; i++) { + childNodeId = childKeys[i]; + childNode = childNodesObj[childNodeId]; + + // construct new edges from the cluster to others + for (var j = 0; j < childNode.edges.length; j++) { + edge = childNode.edges[j]; + // we only handle edges that are visible to the system, not the disabled ones from the clustering process. + if (edge.hiddenByCluster !== true) { + // set up the from and to. + if (edge.toId == childNodeId) { + // this is a double equals because ints and strings can be interchanged here. + toId = clusterNodeProperties.id; + fromId = edge.fromId; + otherNodeId = fromId; + } else { + toId = edge.toId; + fromId = clusterNodeProperties.id; + otherNodeId = toId; + } + + // Only edges from the cluster outwards are being replaced. + if (childNodesObj[otherNodeId] === undefined) { + createEdges.push({ edge: edge, fromId: fromId, toId: toId }); + } + } + } + } + + // here we actually create the replacement edges. We could not do this in the loop above as the creation process + // would add an edge to the edges array we are iterating over. + for (var j = 0; j < createEdges.length; j++) { + var _edge = createEdges[j].edge; + // copy the options of the edge we will replace + var clonedOptions = this._cloneOptions(_edge, 'edge'); + // make sure the properties of clusterEdges are superimposed on it + util.deepExtend(clonedOptions, clusterEdgeProperties); + + // set up the edge + clonedOptions.from = createEdges[j].fromId; + clonedOptions.to = createEdges[j].toId; + clonedOptions.id = 'clusterEdge:' + util.randomUUID(); + //clonedOptions.id = '(cf: ' + createEdges[j].fromId + " to: " + createEdges[j].toId + ")" + Math.random(); + + // create the edge and give a reference to the one it replaced. + var newEdge = this.body.functions.createEdge(clonedOptions); + newEdge.clusteringEdgeReplacingId = _edge.id; + + // connect the edge. + this.body.edges[newEdge.id] = newEdge; + newEdge.connect(); + + // hide the replaced edge + _edge.setOptions({ physics: false, hidden: true }); + _edge.hiddenByCluster = true; + } + } + + /** + * This function checks the options that can be supplied to the different cluster functions + * for certain fields and inserts defaults if needed + * @param options + * @returns {*} + * @private + */ + }, { + key: '_checkOptions', + value: function _checkOptions() { + var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0]; + + if (options.clusterEdgeProperties === undefined) { + options.clusterEdgeProperties = {}; + } + if (options.clusterNodeProperties === undefined) { + options.clusterNodeProperties = {}; + } + + return options; + } + + /** + * + * @param {Object} childNodesObj | object with node objects, id as keys, same as childNodes except it also contains a source node + * @param {Object} childEdgesObj | object with edge objects, id as keys + * @param {Array} options | object with {clusterNodeProperties, clusterEdgeProperties, processProperties} + * @param {Boolean} refreshData | when true, do not wrap up + * @private + */ + }, { + key: '_cluster', + value: function _cluster(childNodesObj, childEdgesObj, options) { + var refreshData = arguments.length <= 3 || arguments[3] === undefined ? true : arguments[3]; + + // kill condition: no children so can't cluster or only one node in the cluster, dont bother + if (Object.keys(childNodesObj).length < 2) { + return; + } + + // check if this cluster call is not trying to cluster anything that is in another cluster. + for (var nodeId in childNodesObj) { + if (childNodesObj.hasOwnProperty(nodeId)) { + if (this.clusteredNodes[nodeId] !== undefined) { + return; + } + } + } + + var clusterNodeProperties = util.deepExtend({}, options.clusterNodeProperties); + + // construct the clusterNodeProperties + if (options.processProperties !== undefined) { + // get the childNode options + var childNodesOptions = []; + for (var nodeId in childNodesObj) { + if (childNodesObj.hasOwnProperty(nodeId)) { + var clonedOptions = this._cloneOptions(childNodesObj[nodeId]); + childNodesOptions.push(clonedOptions); + } + } + + // get clusterproperties based on childNodes + var childEdgesOptions = []; + for (var edgeId in childEdgesObj) { + if (childEdgesObj.hasOwnProperty(edgeId)) { + // these cluster edges will be removed on creation of the cluster. + if (edgeId.substr(0, 12) !== "clusterEdge:") { + var clonedOptions = this._cloneOptions(childEdgesObj[edgeId], 'edge'); + childEdgesOptions.push(clonedOptions); + } + } + } + + clusterNodeProperties = options.processProperties(clusterNodeProperties, childNodesOptions, childEdgesOptions); + if (!clusterNodeProperties) { + throw new Error("The processProperties function does not return properties!"); + } + } + + // check if we have an unique id; + if (clusterNodeProperties.id === undefined) { + clusterNodeProperties.id = 'cluster:' + util.randomUUID(); + } + var clusterId = clusterNodeProperties.id; + + if (clusterNodeProperties.label === undefined) { + clusterNodeProperties.label = 'cluster'; + } + + // give the clusterNode a postion if it does not have one. + var pos = undefined; + if (clusterNodeProperties.x === undefined) { + pos = this._getClusterPosition(childNodesObj); + clusterNodeProperties.x = pos.x; + } + if (clusterNodeProperties.y === undefined) { + if (pos === undefined) { + pos = this._getClusterPosition(childNodesObj); + } + clusterNodeProperties.y = pos.y; + } + + // force the ID to remain the same + clusterNodeProperties.id = clusterId; + + // create the clusterNode + var clusterNode = this.body.functions.createNode(clusterNodeProperties, _componentsNodesCluster2['default']); + clusterNode.isCluster = true; + clusterNode.containedNodes = childNodesObj; + clusterNode.containedEdges = childEdgesObj; + // cache a copy from the cluster edge properties if we have to reconnect others later on + clusterNode.clusterEdgeProperties = options.clusterEdgeProperties; + + // finally put the cluster node into global + this.body.nodes[clusterNodeProperties.id] = clusterNode; + + // create the new edges that will connect to the cluster + this._createClusterEdges(childNodesObj, clusterNodeProperties, options.clusterEdgeProperties); + + // disable the childEdges + for (var edgeId in childEdgesObj) { + if (childEdgesObj.hasOwnProperty(edgeId)) { + if (this.body.edges[edgeId] !== undefined) { + var edge = this.body.edges[edgeId]; + edge.setOptions({ physics: false, hidden: true }); + edge.hiddenByCluster = true; + } + } + } + + // disable the childNodes + for (var nodeId in childNodesObj) { + if (childNodesObj.hasOwnProperty(nodeId)) { + this.clusteredNodes[nodeId] = { clusterId: clusterNodeProperties.id, node: this.body.nodes[nodeId] }; + this.body.nodes[nodeId].setOptions({ hidden: true, physics: false }); + } + } + + // set ID to undefined so no duplicates arise + clusterNodeProperties.id = undefined; + + // wrap up + if (refreshData === true) { + this.body.emitter.emit('_dataChanged'); + } + } + + /** + * Check if a node is a cluster. + * @param nodeId + * @returns {*} + */ + }, { + key: 'isCluster', + value: function isCluster(nodeId) { + if (this.body.nodes[nodeId] !== undefined) { + return this.body.nodes[nodeId].isCluster === true; + } else { + console.log("Node does not exist."); + return false; + } + } + + /** + * get the position of the cluster node based on what's inside + * @param {object} childNodesObj | object with node objects, id as keys + * @returns {{x: number, y: number}} + * @private + */ + }, { + key: '_getClusterPosition', + value: function _getClusterPosition(childNodesObj) { + var childKeys = Object.keys(childNodesObj); + var minX = childNodesObj[childKeys[0]].x; + var maxX = childNodesObj[childKeys[0]].x; + var minY = childNodesObj[childKeys[0]].y; + var maxY = childNodesObj[childKeys[0]].y; + var node = undefined; + for (var i = 1; i < childKeys.length; i++) { + node = childNodesObj[childKeys[i]]; + minX = node.x < minX ? node.x : minX; + maxX = node.x > maxX ? node.x : maxX; + minY = node.y < minY ? node.y : minY; + maxY = node.y > maxY ? node.y : maxY; + } + + return { x: 0.5 * (minX + maxX), y: 0.5 * (minY + maxY) }; + } + + /** + * Open a cluster by calling this function. + * @param {String} clusterNodeId | the ID of the cluster node + * @param {Boolean} refreshData | wrap up afterwards if not true + */ + }, { + key: 'openCluster', + value: function openCluster(clusterNodeId, options) { + var refreshData = arguments.length <= 2 || arguments[2] === undefined ? true : arguments[2]; + + // kill conditions + if (clusterNodeId === undefined) { + throw new Error("No clusterNodeId supplied to openCluster."); + } + if (this.body.nodes[clusterNodeId] === undefined) { + throw new Error("The clusterNodeId supplied to openCluster does not exist."); + } + if (this.body.nodes[clusterNodeId].containedNodes === undefined) { + console.log("The node:" + clusterNodeId + " is not a cluster."); + return; + } + var clusterNode = this.body.nodes[clusterNodeId]; + var containedNodes = clusterNode.containedNodes; + var containedEdges = clusterNode.containedEdges; + + // allow the user to position the nodes after release. + if (options !== undefined && options.releaseFunction !== undefined && typeof options.releaseFunction === 'function') { + var positions = {}; + var clusterPosition = { x: clusterNode.x, y: clusterNode.y }; + for (var nodeId in containedNodes) { + if (containedNodes.hasOwnProperty(nodeId)) { + var containedNode = this.body.nodes[nodeId]; + positions[nodeId] = { x: containedNode.x, y: containedNode.y }; + } + } + var newPositions = options.releaseFunction(clusterPosition, positions); + + for (var nodeId in containedNodes) { + if (containedNodes.hasOwnProperty(nodeId)) { + var containedNode = this.body.nodes[nodeId]; + if (newPositions[nodeId] !== undefined) { + containedNode.x = newPositions[nodeId].x === undefined ? clusterNode.x : newPositions[nodeId].x; + containedNode.y = newPositions[nodeId].y === undefined ? clusterNode.y : newPositions[nodeId].y; + } + } + } + } else { + // copy the position from the cluster + for (var nodeId in containedNodes) { + if (containedNodes.hasOwnProperty(nodeId)) { + var containedNode = this.body.nodes[nodeId]; + containedNode = containedNodes[nodeId]; + // inherit position + containedNode.x = clusterNode.x; + containedNode.y = clusterNode.y; + } + } + } + + // release nodes + for (var nodeId in containedNodes) { + if (containedNodes.hasOwnProperty(nodeId)) { + var containedNode = this.body.nodes[nodeId]; + + // inherit speed + containedNode.vx = clusterNode.vx; + containedNode.vy = clusterNode.vy; + + // we use these methods to avoid reinstantiating the shape, which happens with setOptions. + containedNode.setOptions({ hidden: false, physics: true }); + + delete this.clusteredNodes[nodeId]; + } + } + + // copy the clusterNode edges because we cannot iterate over an object that we add or remove from. + var edgesToBeDeleted = []; + for (var i = 0; i < clusterNode.edges.length; i++) { + edgesToBeDeleted.push(clusterNode.edges[i]); + } + + // actually handling the deleting. + for (var i = 0; i < edgesToBeDeleted.length; i++) { + var edge = edgesToBeDeleted[i]; + + var otherNodeId = this._getConnectedId(edge, clusterNodeId); + // if the other node is in another cluster, we transfer ownership of this edge to the other cluster + if (this.clusteredNodes[otherNodeId] !== undefined) { + // transfer ownership: + var otherCluster = this.body.nodes[this.clusteredNodes[otherNodeId].clusterId]; + var transferEdge = this.body.edges[edge.clusteringEdgeReplacingId]; + if (transferEdge !== undefined) { + otherCluster.containedEdges[transferEdge.id] = transferEdge; + + // delete local reference + delete containedEdges[transferEdge.id]; + + // create new cluster edge from the otherCluster: + // get to and from + var fromId = transferEdge.fromId; + var toId = transferEdge.toId; + if (transferEdge.toId == otherNodeId) { + toId = this.clusteredNodes[otherNodeId].clusterId; + } else { + fromId = this.clusteredNodes[otherNodeId].clusterId; + } + + // clone the options and apply the cluster options to them + var clonedOptions = this._cloneOptions(transferEdge, 'edge'); + util.deepExtend(clonedOptions, otherCluster.clusterEdgeProperties); + + // apply the edge specific options to it. + var id = 'clusterEdge:' + util.randomUUID(); + util.deepExtend(clonedOptions, { from: fromId, to: toId, hidden: false, physics: true, id: id }); + + // create it + var newEdge = this.body.functions.createEdge(clonedOptions); + newEdge.clusteringEdgeReplacingId = transferEdge.id; + this.body.edges[id] = newEdge; + this.body.edges[id].connect(); + } + } else { + var replacedEdge = this.body.edges[edge.clusteringEdgeReplacingId]; + if (replacedEdge !== undefined) { + replacedEdge.setOptions({ physics: true, hidden: false }); + replacedEdge.hiddenByCluster = false; + } + } + edge.cleanup(); + // this removes the edge from node.edges, which is why edgeIds is formed + edge.disconnect(); + delete this.body.edges[edge.id]; + } + + // handle the releasing of the edges + for (var edgeId in containedEdges) { + if (containedEdges.hasOwnProperty(edgeId)) { + var edge = containedEdges[edgeId]; + edge.setOptions({ physics: true, hidden: false }); + edge.hiddenByCluster = undefined; + delete edge.hiddenByCluster; + } + } + + // remove clusterNode + delete this.body.nodes[clusterNodeId]; + + if (refreshData === true) { + this.body.emitter.emit('_dataChanged'); + } + } + }, { + key: 'getNodesInCluster', + value: function getNodesInCluster(clusterId) { + var nodesArray = []; + if (this.isCluster(clusterId) === true) { + var containedNodes = this.body.nodes[clusterId].containedNodes; + for (var nodeId in containedNodes) { + if (containedNodes.hasOwnProperty(nodeId)) { + nodesArray.push(nodeId); + } + } + } + + return nodesArray; + } + + /** + * Get the stack clusterId's that a certain node resides in. cluster A -> cluster B -> cluster C -> node + * @param nodeId + * @returns {Array} + * @private + */ + }, { + key: 'findNode', + value: function findNode(nodeId) { + var stack = []; + var max = 100; + var counter = 0; + + while (this.clusteredNodes[nodeId] !== undefined && counter < max) { + stack.push(this.clusteredNodes[nodeId].node); + nodeId = this.clusteredNodes[nodeId].clusterId; + counter++; + } + stack.push(this.body.nodes[nodeId]); + return stack; + } + + /** + * Get the Id the node is connected to + * @param edge + * @param nodeId + * @returns {*} + * @private + */ + }, { + key: '_getConnectedId', + value: function _getConnectedId(edge, nodeId) { + if (edge.toId != nodeId) { + return edge.toId; + } else if (edge.fromId != nodeId) { + return edge.fromId; + } else { + return edge.fromId; + } + } + + /** + * We determine how many connections denote an important hub. + * We take the mean + 2*std as the important hub size. (Assuming a normal distribution of data, ~2.2%) + * + * @private + */ + }, { + key: '_getHubSize', + value: function _getHubSize() { + var average = 0; + var averageSquared = 0; + var hubCounter = 0; + var largestHub = 0; + + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var node = this.body.nodes[this.body.nodeIndices[i]]; + if (node.edges.length > largestHub) { + largestHub = node.edges.length; + } + average += node.edges.length; + averageSquared += Math.pow(node.edges.length, 2); + hubCounter += 1; + } + average = average / hubCounter; + averageSquared = averageSquared / hubCounter; + + var variance = averageSquared - Math.pow(average, 2); + var standardDeviation = Math.sqrt(variance); + + var hubThreshold = Math.floor(average + 2 * standardDeviation); + + // always have at least one to cluster + if (hubThreshold > largestHub) { + hubThreshold = largestHub; + } + + return hubThreshold; + } + }]); + + return ClusterEngine; + })(); + + exports['default'] = ClusterEngine; + module.exports = exports['default']; + +/***/ }, +/* 100 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } }; + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var _Node2 = __webpack_require__(62); + + var _Node3 = _interopRequireDefault(_Node2); + + /** + * + */ + + var Cluster = (function (_Node) { + _inherits(Cluster, _Node); + + function Cluster(options, body, imagelist, grouplist, globalOptions) { + _classCallCheck(this, Cluster); + + _get(Object.getPrototypeOf(Cluster.prototype), 'constructor', this).call(this, options, body, imagelist, grouplist, globalOptions); + + this.isCluster = true; + this.containedNodes = {}; + this.containedEdges = {}; + } + + return Cluster; + })(_Node3['default']); + + exports['default'] = Cluster; + module.exports = exports['default']; + +/***/ }, +/* 101 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + if (typeof window !== 'undefined') { + window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; + } + + var util = __webpack_require__(1); + + var CanvasRenderer = (function () { + function CanvasRenderer(body, canvas) { + _classCallCheck(this, CanvasRenderer); + + this.body = body; + this.canvas = canvas; + + this.redrawRequested = false; + this.renderTimer = undefined; + this.requiresTimeout = true; + this.renderingActive = false; + this.renderRequests = 0; + this.pixelRatio = undefined; + this.allowRedraw = true; + + this.dragging = false; + this.options = {}; + this.defaultOptions = { + hideEdgesOnDrag: false, + hideNodesOnDrag: false + }; + util.extend(this.options, this.defaultOptions); + + this._determineBrowserMethod(); + this.bindEventListeners(); + } + + _createClass(CanvasRenderer, [{ + key: 'bindEventListeners', + value: function bindEventListeners() { + var _this = this; + + this.body.emitter.on("dragStart", function () { + _this.dragging = true; + }); + this.body.emitter.on("dragEnd", function () { + return _this.dragging = false; + }); + this.body.emitter.on("_resizeNodes", function () { + return _this._resizeNodes(); + }); + this.body.emitter.on("_redraw", function () { + if (_this.renderingActive === false) { + _this._redraw(); + } + }); + this.body.emitter.on("_blockRedraw", function () { + _this.allowRedraw = false; + }); + this.body.emitter.on("_allowRedraw", function () { + _this.allowRedraw = true;_this.redrawRequested = false; + }); + this.body.emitter.on("_requestRedraw", this._requestRedraw.bind(this)); + this.body.emitter.on("_startRendering", function () { + _this.renderRequests += 1; + _this.renderingActive = true; + _this._startRendering(); + }); + this.body.emitter.on("_stopRendering", function () { + _this.renderRequests -= 1; + _this.renderingActive = _this.renderRequests > 0; + _this.renderTimer = undefined; + }); + this.body.emitter.on('destroy', function () { + _this.renderRequests = 0; + _this.allowRedraw = false; + _this.renderingActive = false; + if (_this.requiresTimeout === true) { + clearTimeout(_this.renderTimer); + } else { + cancelAnimationFrame(_this.renderTimer); + } + _this.body.emitter.off(); + }); + } + }, { + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) { + var fields = ['hideEdgesOnDrag', 'hideNodesOnDrag']; + util.selectiveDeepExtend(fields, this.options, options); + } + } + }, { + key: '_startRendering', + value: function _startRendering() { + if (this.renderingActive === true) { + if (this.renderTimer === undefined) { + if (this.requiresTimeout === true) { + this.renderTimer = window.setTimeout(this._renderStep.bind(this), this.simulationInterval); // wait this.renderTimeStep milliseconds and perform the animation step function + } else { + this.renderTimer = window.requestAnimationFrame(this._renderStep.bind(this)); // wait this.renderTimeStep milliseconds and perform the animation step function + } + } + } + } + }, { + key: '_renderStep', + value: function _renderStep() { + if (this.renderingActive === true) { + // reset the renderTimer so a new scheduled animation step can be set + this.renderTimer = undefined; + + if (this.requiresTimeout === true) { + // this schedules a new simulation step + this._startRendering(); + } + + this._redraw(); + + if (this.requiresTimeout === false) { + // this schedules a new simulation step + this._startRendering(); + } + } + } + + /** + * Redraw the network with the current data + * chart will be resized too. + */ + }, { + key: 'redraw', + value: function redraw() { + this.body.emitter.emit('setSize'); + this._redraw(); + } + + /** + * Redraw the network with the current data + * @param hidden | used to get the first estimate of the node sizes. only the nodes are drawn after which they are quickly drawn over. + * @private + */ + }, { + key: '_requestRedraw', + value: function _requestRedraw() { + var _this2 = this; + + if (this.redrawRequested !== true && this.renderingActive === false && this.allowRedraw === true) { + this.redrawRequested = true; + if (this.requiresTimeout === true) { + window.setTimeout(function () { + _this2._redraw(false); + }, 0); + } else { + window.requestAnimationFrame(function () { + _this2._redraw(false); + }); + } + } + } + }, { + key: '_redraw', + value: function _redraw() { + var hidden = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + if (this.allowRedraw === true) { + this.body.emitter.emit("initRedraw"); + + this.redrawRequested = false; + var ctx = this.canvas.frame.canvas.getContext('2d'); + + // when the container div was hidden, this fixes it back up! + if (this.canvas.frame.canvas.width === 0 || this.canvas.frame.canvas.height === 0) { + this.canvas.setSize(); + } + + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + + ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + + // clear the canvas + var w = this.canvas.frame.canvas.clientWidth; + var h = this.canvas.frame.canvas.clientHeight; + ctx.clearRect(0, 0, w, h); + + // if the div is hidden, we stop the redraw here for performance. + if (this.canvas.frame.clientWidth === 0) { + return; + } + + // set scaling and translation + ctx.save(); + ctx.translate(this.body.view.translation.x, this.body.view.translation.y); + ctx.scale(this.body.view.scale, this.body.view.scale); + + ctx.beginPath(); + this.body.emitter.emit("beforeDrawing", ctx); + ctx.closePath(); + + if (hidden === false) { + if (this.dragging === false || this.dragging === true && this.options.hideEdgesOnDrag === false) { + this._drawEdges(ctx); + } + } + + if (this.dragging === false || this.dragging === true && this.options.hideNodesOnDrag === false) { + this._drawNodes(ctx, hidden); + } + + if (this.controlNodesActive === true) { + this._drawControlNodes(ctx); + } + + ctx.beginPath(); + //this.physics.nodesSolver._debug(ctx,"#F00F0F"); + this.body.emitter.emit("afterDrawing", ctx); + ctx.closePath(); + // restore original scaling and translation + ctx.restore(); + + if (hidden === true) { + ctx.clearRect(0, 0, w, h); + } + } + } + + /** + * Redraw all nodes + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @param {Boolean} [alwaysShow] + * @private + */ + }, { + key: '_resizeNodes', + value: function _resizeNodes() { + var ctx = this.canvas.frame.canvas.getContext('2d'); + if (this.pixelRatio === undefined) { + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + } + ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + ctx.save(); + ctx.translate(this.body.view.translation.x, this.body.view.translation.y); + ctx.scale(this.body.view.scale, this.body.view.scale); + + var nodes = this.body.nodes; + var node = undefined; + + // resize all nodes + for (var nodeId in nodes) { + if (nodes.hasOwnProperty(nodeId)) { + node = nodes[nodeId]; + node.resize(ctx); + node.updateBoundingBox(ctx, node.selected); + } + } + + // restore original scaling and translation + ctx.restore(); + } + + /** + * Redraw all nodes + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @param {Boolean} [alwaysShow] + * @private + */ + }, { + key: '_drawNodes', + value: function _drawNodes(ctx) { + var alwaysShow = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + var nodes = this.body.nodes; + var nodeIndices = this.body.nodeIndices; + var node = undefined; + var selected = []; + var margin = 20; + var topLeft = this.canvas.DOMtoCanvas({ x: -margin, y: -margin }); + var bottomRight = this.canvas.DOMtoCanvas({ + x: this.canvas.frame.canvas.clientWidth + margin, + y: this.canvas.frame.canvas.clientHeight + margin + }); + var viewableArea = { top: topLeft.y, left: topLeft.x, bottom: bottomRight.y, right: bottomRight.x }; + + // draw unselected nodes; + for (var i = 0; i < nodeIndices.length; i++) { + node = nodes[nodeIndices[i]]; + // set selected nodes aside + if (node.isSelected()) { + selected.push(nodeIndices[i]); + } else { + if (alwaysShow === true) { + node.draw(ctx); + } else if (node.isBoundingBoxOverlappingWith(viewableArea) === true) { + node.draw(ctx); + } else { + node.updateBoundingBox(ctx, node.selected); + } + } + } + + // draw the selected nodes on top + for (var i = 0; i < selected.length; i++) { + node = nodes[selected[i]]; + node.draw(ctx); + } + } + + /** + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + }, { + key: '_drawEdges', + value: function _drawEdges(ctx) { + var edges = this.body.edges; + var edgeIndices = this.body.edgeIndices; + var edge = undefined; + + for (var i = 0; i < edgeIndices.length; i++) { + edge = edges[edgeIndices[i]]; + if (edge.connected === true) { + edge.draw(ctx); + } + } + } + + /** + * Redraw all edges + * The 2d context of a HTML canvas can be retrieved by canvas.getContext('2d'); + * @param {CanvasRenderingContext2D} ctx + * @private + */ + }, { + key: '_drawControlNodes', + value: function _drawControlNodes(ctx) { + var edges = this.body.edges; + var edgeIndices = this.body.edgeIndices; + var edge = undefined; + + for (var i = 0; i < edgeIndices.length; i++) { + edge = edges[edgeIndices[i]]; + edge._drawControlNodes(ctx); + } + } + + /** + * Determine if the browser requires a setTimeout or a requestAnimationFrame. This was required because + * some implementations (safari and IE9) did not support requestAnimationFrame + * @private + */ + }, { + key: '_determineBrowserMethod', + value: function _determineBrowserMethod() { + if (typeof window !== 'undefined') { + var browserType = navigator.userAgent.toLowerCase(); + this.requiresTimeout = false; + if (browserType.indexOf('msie 9.0') != -1) { + // IE 9 + this.requiresTimeout = true; + } else if (browserType.indexOf('safari') != -1) { + // safari + if (browserType.indexOf('chrome') <= -1) { + this.requiresTimeout = true; + } + } + } else { + this.requiresTimeout = true; + } + } + }]); + + return CanvasRenderer; + })(); + + exports['default'] = CanvasRenderer; + module.exports = exports['default']; + +/***/ }, +/* 102 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var Hammer = __webpack_require__(20); + var hammerUtil = __webpack_require__(25); + + var util = __webpack_require__(1); + + /** + * Create the main frame for the Network. + * This function is executed once when a Network object is created. The frame + * contains a canvas, and this canvas contains all objects like the axis and + * nodes. + * @private + */ + + var Canvas = (function () { + function Canvas(body) { + _classCallCheck(this, Canvas); + + this.body = body; + this.pixelRatio = 1; + this.resizeTimer = undefined; + this.resizeFunction = this._onResize.bind(this); + this.cameraState = {}; + + this.options = {}; + this.defaultOptions = { + autoResize: true, + height: '100%', + width: '100%' + }; + util.extend(this.options, this.defaultOptions); + + this.bindEventListeners(); + } + + _createClass(Canvas, [{ + key: 'bindEventListeners', + value: function bindEventListeners() { + var _this = this; + + // bind the events + this.body.emitter.once("resize", function (obj) { + if (obj.width !== 0) { + _this.body.view.translation.x = obj.width * 0.5; + } + if (obj.height !== 0) { + _this.body.view.translation.y = obj.height * 0.5; + } + }); + this.body.emitter.on("setSize", this.setSize.bind(this)); + this.body.emitter.on("destroy", function () { + _this.hammerFrame.destroy(); + _this.hammer.destroy(); + _this._cleanUp(); + }); + } + }, { + key: 'setOptions', + value: function setOptions(options) { + var _this2 = this; + + if (options !== undefined) { + var fields = ['width', 'height', 'autoResize']; + util.selectiveDeepExtend(fields, this.options, options); + } + + if (this.options.autoResize === true) { + // automatically adapt to a changing size of the browser. + this._cleanUp(); + this.resizeTimer = setInterval(function () { + var changed = _this2.setSize(); + if (changed === true) { + _this2.body.emitter.emit("_requestRedraw"); + } + }, 1000); + this.resizeFunction = this._onResize.bind(this); + util.addEventListener(window, 'resize', this.resizeFunction); + } + } + }, { + key: '_cleanUp', + value: function _cleanUp() { + // automatically adapt to a changing size of the browser. + if (this.resizeTimer !== undefined) { + clearInterval(this.resizeTimer); + } + util.removeEventListener(window, 'resize', this.resizeFunction); + this.resizeFunction = undefined; + } + }, { + key: '_onResize', + value: function _onResize() { + this.setSize(); + this.body.emitter.emit("_redraw"); + } + + /** + * Get and store the cameraState + * @private + */ + }, { + key: '_getCameraState', + value: function _getCameraState() { + var pixelRatio = arguments.length <= 0 || arguments[0] === undefined ? this.pixelRatio : arguments[0]; + + this.cameraState.previousWidth = this.frame.canvas.width / pixelRatio; + this.cameraState.scale = this.body.view.scale; + this.cameraState.position = this.DOMtoCanvas({ x: 0.5 * this.frame.canvas.width / pixelRatio, y: 0.5 * this.frame.canvas.height / pixelRatio }); + } + + /** + * Set the cameraState + * @private + */ + }, { + key: '_setCameraState', + value: function _setCameraState() { + if (this.cameraState.scale !== undefined && this.frame.canvas.clientWidth !== 0 && this.frame.canvas.clientHeight !== 0 && this.pixelRatio !== 0 && this.cameraState.previousWidth > 0) { + + this.body.view.scale = this.cameraState.scale * (this.frame.canvas.width / this.pixelRatio / this.cameraState.previousWidth); + + // this comes from the view module. + var currentViewCenter = this.DOMtoCanvas({ + x: 0.5 * this.frame.canvas.clientWidth, + y: 0.5 * this.frame.canvas.clientHeight + }); + + var distanceFromCenter = { // offset from view, distance view has to change by these x and y to center the node + x: currentViewCenter.x - this.cameraState.position.x, + y: currentViewCenter.y - this.cameraState.position.y + }; + this.body.view.translation.x += distanceFromCenter.x * this.body.view.scale; + this.body.view.translation.y += distanceFromCenter.y * this.body.view.scale; + } + } + }, { + key: '_prepareValue', + value: function _prepareValue(value) { + if (typeof value === 'number') { + return value + 'px'; + } else if (typeof value === 'string') { + if (value.indexOf('%') !== -1 || value.indexOf('px') !== -1) { + return value; + } else if (value.indexOf('%') === -1) { + return value + 'px'; + } + } + throw new Error('Could not use the value supplied for width or height:' + value); + } + + /** + * Create the HTML + */ + }, { + key: '_create', + value: function _create() { + // remove all elements from the container element. + while (this.body.container.hasChildNodes()) { + this.body.container.removeChild(this.body.container.firstChild); + } + + this.frame = document.createElement('div'); + this.frame.className = 'vis-network'; + this.frame.style.position = 'relative'; + this.frame.style.overflow = 'hidden'; + this.frame.tabIndex = 900; // tab index is required for keycharm to bind keystrokes to the div instead of the window + + ////////////////////////////////////////////////////////////////// + + this.frame.canvas = document.createElement("canvas"); + this.frame.canvas.style.position = 'relative'; + this.frame.appendChild(this.frame.canvas); + + if (!this.frame.canvas.getContext) { + var noCanvas = document.createElement('DIV'); + noCanvas.style.color = 'red'; + noCanvas.style.fontWeight = 'bold'; + noCanvas.style.padding = '10px'; + noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; + this.frame.canvas.appendChild(noCanvas); + } else { + var ctx = this.frame.canvas.getContext("2d"); + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + + this.frame.canvas.getContext("2d").setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + } + + // add the frame to the container element + this.body.container.appendChild(this.frame); + + this.body.view.scale = 1; + this.body.view.translation = { x: 0.5 * this.frame.canvas.clientWidth, y: 0.5 * this.frame.canvas.clientHeight }; + + this._bindHammer(); + } + + /** + * This function binds hammer, it can be repeated over and over due to the uniqueness check. + * @private + */ + }, { + key: '_bindHammer', + value: function _bindHammer() { + var _this3 = this; + + if (this.hammer !== undefined) { + this.hammer.destroy(); + } + this.drag = {}; + this.pinch = {}; + + // init hammer + this.hammer = new Hammer(this.frame.canvas); + this.hammer.get('pinch').set({ enable: true }); + // enable to get better response, todo: test on mobile. + this.hammer.get('pan').set({ threshold: 5, direction: 30 }); // 30 is ALL_DIRECTIONS in hammer. + + hammerUtil.onTouch(this.hammer, function (event) { + _this3.body.eventListeners.onTouch(event); + }); + this.hammer.on('tap', function (event) { + _this3.body.eventListeners.onTap(event); + }); + this.hammer.on('doubletap', function (event) { + _this3.body.eventListeners.onDoubleTap(event); + }); + this.hammer.on('press', function (event) { + _this3.body.eventListeners.onHold(event); + }); + this.hammer.on('panstart', function (event) { + _this3.body.eventListeners.onDragStart(event); + }); + this.hammer.on('panmove', function (event) { + _this3.body.eventListeners.onDrag(event); + }); + this.hammer.on('panend', function (event) { + _this3.body.eventListeners.onDragEnd(event); + }); + this.hammer.on('pinch', function (event) { + _this3.body.eventListeners.onPinch(event); + }); + + // TODO: neatly cleanup these handlers when re-creating the Canvas, IF these are done with hammer, event.stopPropagation will not work? + this.frame.canvas.addEventListener('mousewheel', function (event) { + _this3.body.eventListeners.onMouseWheel(event); + }); + this.frame.canvas.addEventListener('DOMMouseScroll', function (event) { + _this3.body.eventListeners.onMouseWheel(event); + }); + + this.frame.canvas.addEventListener('mousemove', function (event) { + _this3.body.eventListeners.onMouseMove(event); + }); + this.frame.canvas.addEventListener('contextmenu', function (event) { + _this3.body.eventListeners.onContext(event); + }); + + this.hammerFrame = new Hammer(this.frame); + hammerUtil.onRelease(this.hammerFrame, function (event) { + _this3.body.eventListeners.onRelease(event); + }); + } + + /** + * Set a new size for the network + * @param {string} width Width in pixels or percentage (for example '800px' + * or '50%') + * @param {string} height Height in pixels or percentage (for example '400px' + * or '30%') + */ + }, { + key: 'setSize', + value: function setSize() { + var width = arguments.length <= 0 || arguments[0] === undefined ? this.options.width : arguments[0]; + var height = arguments.length <= 1 || arguments[1] === undefined ? this.options.height : arguments[1]; + + width = this._prepareValue(width); + height = this._prepareValue(height); + + var emitEvent = false; + var oldWidth = this.frame.canvas.width; + var oldHeight = this.frame.canvas.height; + + // update the pixelratio + var ctx = this.frame.canvas.getContext("2d"); + var previousRation = this.pixelRatio; // we cache this because the camera state storage needs the old value + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + + if (width != this.options.width || height != this.options.height || this.frame.style.width != width || this.frame.style.height != height) { + this._getCameraState(previousRation); + + this.frame.style.width = width; + this.frame.style.height = height; + + this.frame.canvas.style.width = '100%'; + this.frame.canvas.style.height = '100%'; + + this.frame.canvas.width = Math.round(this.frame.canvas.clientWidth * this.pixelRatio); + this.frame.canvas.height = Math.round(this.frame.canvas.clientHeight * this.pixelRatio); + + this.options.width = width; + this.options.height = height; + + emitEvent = true; + } else { + // this would adapt the width of the canvas to the width from 100% if and only if + // there is a change. + + // store the camera if there is a change in size. + if (this.frame.canvas.width != Math.round(this.frame.canvas.clientWidth * this.pixelRatio) || this.frame.canvas.height != Math.round(this.frame.canvas.clientHeight * this.pixelRatio)) { + this._getCameraState(previousRation); + } + + if (this.frame.canvas.width != Math.round(this.frame.canvas.clientWidth * this.pixelRatio)) { + this.frame.canvas.width = Math.round(this.frame.canvas.clientWidth * this.pixelRatio); + emitEvent = true; + } + if (this.frame.canvas.height != Math.round(this.frame.canvas.clientHeight * this.pixelRatio)) { + this.frame.canvas.height = Math.round(this.frame.canvas.clientHeight * this.pixelRatio); + emitEvent = true; + } + } + + if (emitEvent === true) { + this.body.emitter.emit('resize', { + width: Math.round(this.frame.canvas.width / this.pixelRatio), + height: Math.round(this.frame.canvas.height / this.pixelRatio), + oldWidth: Math.round(oldWidth / this.pixelRatio), + oldHeight: Math.round(oldHeight / this.pixelRatio) + }); + + // restore the camera on change. + this._setCameraState(); + } + + return emitEvent; + } + }, { + key: '_XconvertDOMtoCanvas', + + /** + * Convert the X coordinate in DOM-space (coordinate point in browser relative to the container div) to + * the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) + * @param {number} x + * @returns {number} + * @private + */ + value: function _XconvertDOMtoCanvas(x) { + return (x - this.body.view.translation.x) / this.body.view.scale; + } + + /** + * Convert the X coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to + * the X coordinate in DOM-space (coordinate point in browser relative to the container div) + * @param {number} x + * @returns {number} + * @private + */ + }, { + key: '_XconvertCanvasToDOM', + value: function _XconvertCanvasToDOM(x) { + return x * this.body.view.scale + this.body.view.translation.x; + } + + /** + * Convert the Y coordinate in DOM-space (coordinate point in browser relative to the container div) to + * the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) + * @param {number} y + * @returns {number} + * @private + */ + }, { + key: '_YconvertDOMtoCanvas', + value: function _YconvertDOMtoCanvas(y) { + return (y - this.body.view.translation.y) / this.body.view.scale; + } + + /** + * Convert the Y coordinate in canvas-space (the simulation sandbox, which the camera looks upon) to + * the Y coordinate in DOM-space (coordinate point in browser relative to the container div) + * @param {number} y + * @returns {number} + * @private + */ + }, { + key: '_YconvertCanvasToDOM', + value: function _YconvertCanvasToDOM(y) { + return y * this.body.view.scale + this.body.view.translation.y; + } + + /** + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor + */ + }, { + key: 'canvasToDOM', + value: function canvasToDOM(pos) { + return { x: this._XconvertCanvasToDOM(pos.x), y: this._YconvertCanvasToDOM(pos.y) }; + } + + /** + * + * @param {object} pos = {x: number, y: number} + * @returns {{x: number, y: number}} + * @constructor + */ + }, { + key: 'DOMtoCanvas', + value: function DOMtoCanvas(pos) { + return { x: this._XconvertDOMtoCanvas(pos.x), y: this._YconvertDOMtoCanvas(pos.y) }; + } + }]); + + return Canvas; + })(); + + exports['default'] = Canvas; + module.exports = exports['default']; + +/***/ }, +/* 103 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _NetworkUtil = __webpack_require__(104); + + var _NetworkUtil2 = _interopRequireDefault(_NetworkUtil); + + var util = __webpack_require__(1); + + var View = (function () { + function View(body, canvas) { + var _this = this; + + _classCallCheck(this, View); + + this.body = body; + this.canvas = canvas; + + this.animationSpeed = 1 / this.renderRefreshRate; + this.animationEasingFunction = "easeInOutQuint"; + this.easingTime = 0; + this.sourceScale = 0; + this.targetScale = 0; + this.sourceTranslation = 0; + this.targetTranslation = 0; + this.lockedOnNodeId = undefined; + this.lockedOnNodeOffset = undefined; + this.touchTime = 0; + + this.viewFunction = undefined; + + this.body.emitter.on("fit", this.fit.bind(this)); + this.body.emitter.on("animationFinished", function () { + _this.body.emitter.emit("_stopRendering"); + }); + this.body.emitter.on("unlockNode", this.releaseNode.bind(this)); + } + + _createClass(View, [{ + key: 'setOptions', + value: function setOptions() { + var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0]; + + this.options = options; + } + + /** + * This function zooms out to fit all data on screen based on amount of nodes + * @param {Object} Options + * @param {Boolean} [initialZoom] | zoom based on fitted formula or range, true = fitted, default = false; + */ + }, { + key: 'fit', + value: function fit() { + var options = arguments.length <= 0 || arguments[0] === undefined ? { nodes: [] } : arguments[0]; + var initialZoom = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1]; + + var range = undefined; + var zoomLevel = undefined; + if (options.nodes === undefined || options.nodes.length === 0) { + options.nodes = this.body.nodeIndices; + } + + if (initialZoom === true) { + // check if more than half of the nodes have a predefined position. If so, we use the range, not the approximation. + var positionDefined = 0; + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + var node = this.body.nodes[nodeId]; + if (node.predefinedPosition === true) { + positionDefined += 1; + } + } + } + if (positionDefined > 0.5 * this.body.nodeIndices.length) { + this.fit(options, false); + return; + } + + range = _NetworkUtil2['default']._getRange(this.body.nodes, options.nodes); + + var numberOfNodes = this.body.nodeIndices.length; + zoomLevel = 12.662 / (numberOfNodes + 7.4147) + 0.0964822; // this is obtained from fitting a dataset from 5 points with scale levels that looked good. + + // correct for larger canvasses. + var factor = Math.min(this.canvas.frame.canvas.clientWidth / 600, this.canvas.frame.canvas.clientHeight / 600); + zoomLevel *= factor; + } else { + this.body.emitter.emit("_resizeNodes"); + range = _NetworkUtil2['default']._getRange(this.body.nodes, options.nodes); + + var xDistance = Math.abs(range.maxX - range.minX) * 1.1; + var yDistance = Math.abs(range.maxY - range.minY) * 1.1; + + var xZoomLevel = this.canvas.frame.canvas.clientWidth / xDistance; + var yZoomLevel = this.canvas.frame.canvas.clientHeight / yDistance; + + zoomLevel = xZoomLevel <= yZoomLevel ? xZoomLevel : yZoomLevel; + } + + if (zoomLevel > 1.0) { + zoomLevel = 1.0; + } else if (zoomLevel === 0) { + zoomLevel = 1.0; + } + + var center = _NetworkUtil2['default']._findCenter(range); + var animationOptions = { position: center, scale: zoomLevel, animation: options.animation }; + this.moveTo(animationOptions); + } + + // animation + + /** + * Center a node in view. + * + * @param {Number} nodeId + * @param {Number} [options] + */ + }, { + key: 'focus', + value: function focus(nodeId) { + var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1]; + + if (this.body.nodes[nodeId] !== undefined) { + var nodePosition = { x: this.body.nodes[nodeId].x, y: this.body.nodes[nodeId].y }; + options.position = nodePosition; + options.lockedOnNode = nodeId; + + this.moveTo(options); + } else { + console.log("Node: " + nodeId + " cannot be found."); + } + } + + /** + * + * @param {Object} options | options.offset = {x:Number, y:Number} // offset from the center in DOM pixels + * | options.scale = Number // scale to move to + * | options.position = {x:Number, y:Number} // position to move to + * | options.animation = {duration:Number, easingFunction:String} || Boolean // position to move to + */ + }, { + key: 'moveTo', + value: function moveTo(options) { + if (options === undefined) { + options = {}; + return; + } + if (options.offset === undefined) { + options.offset = { x: 0, y: 0 }; + } + if (options.offset.x === undefined) { + options.offset.x = 0; + } + if (options.offset.y === undefined) { + options.offset.y = 0; + } + if (options.scale === undefined) { + options.scale = this.body.view.scale; + } + if (options.position === undefined) { + options.position = this.getViewPosition(); + } + if (options.animation === undefined) { + options.animation = { duration: 0 }; + } + if (options.animation === false) { + options.animation = { duration: 0 }; + } + if (options.animation === true) { + options.animation = {}; + } + if (options.animation.duration === undefined) { + options.animation.duration = 1000; + } // default duration + if (options.animation.easingFunction === undefined) { + options.animation.easingFunction = "easeInOutQuad"; + } // default easing function + + this.animateView(options); + } + + /** + * + * @param {Object} options | options.offset = {x:Number, y:Number} // offset from the center in DOM pixels + * | options.time = Number // animation time in milliseconds + * | options.scale = Number // scale to animate to + * | options.position = {x:Number, y:Number} // position to animate to + * | options.easingFunction = String // linear, easeInQuad, easeOutQuad, easeInOutQuad, + * // easeInCubic, easeOutCubic, easeInOutCubic, + * // easeInQuart, easeOutQuart, easeInOutQuart, + * // easeInQuint, easeOutQuint, easeInOutQuint + */ + }, { + key: 'animateView', + value: function animateView(options) { + if (options === undefined) { + return; + } + this.animationEasingFunction = options.animation.easingFunction; + // release if something focussed on the node + this.releaseNode(); + if (options.locked === true) { + this.lockedOnNodeId = options.lockedOnNode; + this.lockedOnNodeOffset = options.offset; + } + + // forcefully complete the old animation if it was still running + if (this.easingTime != 0) { + this._transitionRedraw(true); // by setting easingtime to 1, we finish the animation. + } + + this.sourceScale = this.body.view.scale; + this.sourceTranslation = this.body.view.translation; + this.targetScale = options.scale; + + // set the scale so the viewCenter is based on the correct zoom level. This is overridden in the transitionRedraw + // but at least then we'll have the target transition + this.body.view.scale = this.targetScale; + var viewCenter = this.canvas.DOMtoCanvas({ x: 0.5 * this.canvas.frame.canvas.clientWidth, y: 0.5 * this.canvas.frame.canvas.clientHeight }); + + var distanceFromCenter = { // offset from view, distance view has to change by these x and y to center the node + x: viewCenter.x - options.position.x, + y: viewCenter.y - options.position.y + }; + this.targetTranslation = { + x: this.sourceTranslation.x + distanceFromCenter.x * this.targetScale + options.offset.x, + y: this.sourceTranslation.y + distanceFromCenter.y * this.targetScale + options.offset.y + }; + + // if the time is set to 0, don't do an animation + if (options.animation.duration === 0) { + if (this.lockedOnNodeId != undefined) { + this.viewFunction = this._lockedRedraw.bind(this); + this.body.emitter.on("initRedraw", this.viewFunction); + } else { + this.body.view.scale = this.targetScale; + this.body.view.translation = this.targetTranslation; + this.body.emitter.emit("_requestRedraw"); + } + } else { + this.animationSpeed = 1 / (60 * options.animation.duration * 0.001) || 1 / 60; // 60 for 60 seconds, 0.001 for milli's + this.animationEasingFunction = options.animation.easingFunction; + + this.viewFunction = this._transitionRedraw.bind(this); + this.body.emitter.on("initRedraw", this.viewFunction); + this.body.emitter.emit("_startRendering"); + } + } + + /** + * used to animate smoothly by hijacking the redraw function. + * @private + */ + }, { + key: '_lockedRedraw', + value: function _lockedRedraw() { + var nodePosition = { x: this.body.nodes[this.lockedOnNodeId].x, y: this.body.nodes[this.lockedOnNodeId].y }; + var viewCenter = this.canvas.DOMtoCanvas({ x: 0.5 * this.canvas.frame.canvas.clientWidth, y: 0.5 * this.canvas.frame.canvas.clientHeight }); + var distanceFromCenter = { // offset from view, distance view has to change by these x and y to center the node + x: viewCenter.x - nodePosition.x, + y: viewCenter.y - nodePosition.y + }; + var sourceTranslation = this.body.view.translation; + var targetTranslation = { + x: sourceTranslation.x + distanceFromCenter.x * this.body.view.scale + this.lockedOnNodeOffset.x, + y: sourceTranslation.y + distanceFromCenter.y * this.body.view.scale + this.lockedOnNodeOffset.y + }; + + this.body.view.translation = targetTranslation; + } + }, { + key: 'releaseNode', + value: function releaseNode() { + if (this.lockedOnNodeId !== undefined && this.viewFunction !== undefined) { + this.body.emitter.off("initRedraw", this.viewFunction); + this.lockedOnNodeId = undefined; + this.lockedOnNodeOffset = undefined; + } + } + + /** + * + * @param easingTime + * @private + */ + }, { + key: '_transitionRedraw', + value: function _transitionRedraw() { + var finished = arguments.length <= 0 || arguments[0] === undefined ? false : arguments[0]; + + this.easingTime += this.animationSpeed; + this.easingTime = finished === true ? 1.0 : this.easingTime; + + var progress = util.easingFunctions[this.animationEasingFunction](this.easingTime); + + this.body.view.scale = this.sourceScale + (this.targetScale - this.sourceScale) * progress; + this.body.view.translation = { + x: this.sourceTranslation.x + (this.targetTranslation.x - this.sourceTranslation.x) * progress, + y: this.sourceTranslation.y + (this.targetTranslation.y - this.sourceTranslation.y) * progress + }; + + // cleanup + if (this.easingTime >= 1.0) { + this.body.emitter.off("initRedraw", this.viewFunction); + this.easingTime = 0; + if (this.lockedOnNodeId != undefined) { + this.viewFunction = this._lockedRedraw.bind(this); + this.body.emitter.on("initRedraw", this.viewFunction); + } + this.body.emitter.emit("animationFinished"); + } + } + }, { + key: 'getScale', + value: function getScale() { + return this.body.view.scale; + } + }, { + key: 'getViewPosition', + value: function getViewPosition() { + return this.canvas.DOMtoCanvas({ x: 0.5 * this.canvas.frame.canvas.clientWidth, y: 0.5 * this.canvas.frame.canvas.clientHeight }); + } + }]); + + return View; + })(); + + exports['default'] = View; + module.exports = exports['default']; + +/***/ }, +/* 104 */ +/***/ function(module, exports) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var NetworkUtil = (function () { + function NetworkUtil() { + _classCallCheck(this, NetworkUtil); + } + + /** + * Find the center position of the network considering the bounding boxes + * @private + */ + + _createClass(NetworkUtil, null, [{ + key: "_getRange", + value: function _getRange(allNodes) { + var specificNodes = arguments.length <= 1 || arguments[1] === undefined ? [] : arguments[1]; + + var minY = 1e9, + maxY = -1e9, + minX = 1e9, + maxX = -1e9, + node; + if (specificNodes.length > 0) { + for (var i = 0; i < specificNodes.length; i++) { + node = allNodes[specificNodes[i]]; + if (minX > node.shape.boundingBox.left) { + minX = node.shape.boundingBox.left; + } + if (maxX < node.shape.boundingBox.right) { + maxX = node.shape.boundingBox.right; + } + if (minY > node.shape.boundingBox.top) { + minY = node.shape.boundingBox.top; + } // top is negative, bottom is positive + if (maxY < node.shape.boundingBox.bottom) { + maxY = node.shape.boundingBox.bottom; + } // top is negative, bottom is positive + } + } + + if (minX === 1e9 && maxX === -1e9 && minY === 1e9 && maxY === -1e9) { + minY = 0, maxY = 0, minX = 0, maxX = 0; + } + return { minX: minX, maxX: maxX, minY: minY, maxY: maxY }; + } + + /** + * Find the center position of the network + * @private + */ + }, { + key: "_getRangeCore", + value: function _getRangeCore(allNodes) { + var specificNodes = arguments.length <= 1 || arguments[1] === undefined ? [] : arguments[1]; + + var minY = 1e9, + maxY = -1e9, + minX = 1e9, + maxX = -1e9, + node; + if (specificNodes.length > 0) { + for (var i = 0; i < specificNodes.length; i++) { + node = allNodes[specificNodes[i]]; + if (minX > node.x) { + minX = node.x; + } + if (maxX < node.x) { + maxX = node.x; + } + if (minY > node.y) { + minY = node.y; + } // top is negative, bottom is positive + if (maxY < node.y) { + maxY = node.y; + } // top is negative, bottom is positive + } + } + + if (minX === 1e9 && maxX === -1e9 && minY === 1e9 && maxY === -1e9) { + minY = 0, maxY = 0, minX = 0, maxX = 0; + } + return { minX: minX, maxX: maxX, minY: minY, maxY: maxY }; + } + + /** + * @param {object} range = {minX: minX, maxX: maxX, minY: minY, maxY: maxY}; + * @returns {{x: number, y: number}} + * @private + */ + }, { + key: "_findCenter", + value: function _findCenter(range) { + return { x: 0.5 * (range.maxX + range.minX), + y: 0.5 * (range.maxY + range.minY) }; + } + }]); + + return NetworkUtil; + })(); + + exports["default"] = NetworkUtil; + module.exports = exports["default"]; + +/***/ }, +/* 105 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _componentsNavigationHandler = __webpack_require__(106); + + var _componentsNavigationHandler2 = _interopRequireDefault(_componentsNavigationHandler); + + var _componentsPopup = __webpack_require__(107); + + var _componentsPopup2 = _interopRequireDefault(_componentsPopup); + + var util = __webpack_require__(1); + + var InteractionHandler = (function () { + function InteractionHandler(body, canvas, selectionHandler) { + _classCallCheck(this, InteractionHandler); + + this.body = body; + this.canvas = canvas; + this.selectionHandler = selectionHandler; + this.navigationHandler = new _componentsNavigationHandler2['default'](body, canvas); + + // bind the events from hammer to functions in this object + this.body.eventListeners.onTap = this.onTap.bind(this); + this.body.eventListeners.onTouch = this.onTouch.bind(this); + this.body.eventListeners.onDoubleTap = this.onDoubleTap.bind(this); + this.body.eventListeners.onHold = this.onHold.bind(this); + this.body.eventListeners.onDragStart = this.onDragStart.bind(this); + this.body.eventListeners.onDrag = this.onDrag.bind(this); + this.body.eventListeners.onDragEnd = this.onDragEnd.bind(this); + this.body.eventListeners.onMouseWheel = this.onMouseWheel.bind(this); + this.body.eventListeners.onPinch = this.onPinch.bind(this); + this.body.eventListeners.onMouseMove = this.onMouseMove.bind(this); + this.body.eventListeners.onRelease = this.onRelease.bind(this); + this.body.eventListeners.onContext = this.onContext.bind(this); + + this.touchTime = 0; + this.drag = {}; + this.pinch = {}; + this.popup = undefined; + this.popupObj = undefined; + this.popupTimer = undefined; + + this.body.functions.getPointer = this.getPointer.bind(this); + + this.options = {}; + this.defaultOptions = { + dragNodes: true, + dragView: true, + hover: false, + keyboard: { + enabled: false, + speed: { x: 10, y: 10, zoom: 0.02 }, + bindToWindow: true + }, + navigationButtons: false, + tooltipDelay: 300, + zoomView: true + }; + util.extend(this.options, this.defaultOptions); + + this.bindEventListeners(); + } + + _createClass(InteractionHandler, [{ + key: 'bindEventListeners', + value: function bindEventListeners() { + var _this = this; + + this.body.emitter.on('destroy', function () { + clearTimeout(_this.popupTimer); + delete _this.body.functions.getPointer; + }); + } + }, { + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) { + // extend all but the values in fields + var fields = ['hideEdgesOnDrag', 'hideNodesOnDrag', 'keyboard', 'multiselect', 'selectable', 'selectConnectedEdges']; + util.selectiveNotDeepExtend(fields, this.options, options); + + // merge the keyboard options in. + util.mergeOptions(this.options, options, 'keyboard'); + + if (options.tooltip) { + util.extend(this.options.tooltip, options.tooltip); + if (options.tooltip.color) { + this.options.tooltip.color = util.parseColor(options.tooltip.color); + } + } + } + + this.navigationHandler.setOptions(this.options); + } + + /** + * Get the pointer location from a touch location + * @param {{x: Number, y: Number}} touch + * @return {{x: Number, y: Number}} pointer + * @private + */ + }, { + key: 'getPointer', + value: function getPointer(touch) { + return { + x: touch.x - util.getAbsoluteLeft(this.canvas.frame.canvas), + y: touch.y - util.getAbsoluteTop(this.canvas.frame.canvas) + }; + } + + /** + * On start of a touch gesture, store the pointer + * @param event + * @private + */ + }, { + key: 'onTouch', + value: function onTouch(event) { + if (new Date().valueOf() - this.touchTime > 50) { + this.drag.pointer = this.getPointer(event.center); + this.drag.pinched = false; + this.pinch.scale = this.body.view.scale; + // to avoid double fireing of this event because we have two hammer instances. (on canvas and on frame) + this.touchTime = new Date().valueOf(); + } + } + + /** + * handle tap/click event: select/unselect a node + * @private + */ + }, { + key: 'onTap', + value: function onTap(event) { + var pointer = this.getPointer(event.center); + var multiselect = this.selectionHandler.options.multiselect && (event.changedPointers[0].ctrlKey || event.changedPointers[0].metaKey); + + this.checkSelectionChanges(pointer, event, multiselect); + this.selectionHandler._generateClickEvent('click', event, pointer); + } + + /** + * handle doubletap event + * @private + */ + }, { + key: 'onDoubleTap', + value: function onDoubleTap(event) { + var pointer = this.getPointer(event.center); + this.selectionHandler._generateClickEvent('doubleClick', event, pointer); + } + + /** + * handle long tap event: multi select nodes + * @private + */ + }, { + key: 'onHold', + value: function onHold(event) { + var pointer = this.getPointer(event.center); + var multiselect = this.selectionHandler.options.multiselect; + + this.checkSelectionChanges(pointer, event, multiselect); + + this.selectionHandler._generateClickEvent('click', event, pointer); + this.selectionHandler._generateClickEvent('hold', event, pointer); + } + + /** + * handle the release of the screen + * + * @private + */ + }, { + key: 'onRelease', + value: function onRelease(event) { + if (new Date().valueOf() - this.touchTime > 10) { + var pointer = this.getPointer(event.center); + this.selectionHandler._generateClickEvent('release', event, pointer); + // to avoid double fireing of this event because we have two hammer instances. (on canvas and on frame) + this.touchTime = new Date().valueOf(); + } + } + }, { + key: 'onContext', + value: function onContext(event) { + var pointer = this.getPointer({ x: event.clientX, y: event.clientY }); + this.selectionHandler._generateClickEvent('oncontext', event, pointer); + } + + /** + * + * @param pointer + * @param add + */ + }, { + key: 'checkSelectionChanges', + value: function checkSelectionChanges(pointer, event) { + var add = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + + var previouslySelectedEdgeCount = this.selectionHandler._getSelectedEdgeCount(); + var previouslySelectedNodeCount = this.selectionHandler._getSelectedNodeCount(); + var previousSelection = this.selectionHandler.getSelection(); + var selected = undefined; + if (add === true) { + selected = this.selectionHandler.selectAdditionalOnPoint(pointer); + } else { + selected = this.selectionHandler.selectOnPoint(pointer); + } + var selectedEdgesCount = this.selectionHandler._getSelectedEdgeCount(); + var selectedNodesCount = this.selectionHandler._getSelectedNodeCount(); + var currentSelection = this.selectionHandler.getSelection(); + + var _determineIfDifferent2 = this._determineIfDifferent(previousSelection, currentSelection); + + var nodesChanges = _determineIfDifferent2.nodesChanges; + var edgesChanges = _determineIfDifferent2.edgesChanges; + + var nodeSelected = false; + + if (selectedNodesCount - previouslySelectedNodeCount > 0) { + // node was selected + this.selectionHandler._generateClickEvent('selectNode', event, pointer); + selected = true; + nodeSelected = true; + } else if (selectedNodesCount - previouslySelectedNodeCount < 0) { + // node was deselected + this.selectionHandler._generateClickEvent('deselectNode', event, pointer, previousSelection); + selected = true; + } else if (selectedNodesCount === previouslySelectedNodeCount && nodesChanges === true) { + this.selectionHandler._generateClickEvent('deselectNode', event, pointer, previousSelection); + this.selectionHandler._generateClickEvent('selectNode', event, pointer); + nodeSelected = true; + selected = true; + } + + // handle the selected edges + if (selectedEdgesCount - previouslySelectedEdgeCount > 0 && nodeSelected === false) { + // edge was selected + this.selectionHandler._generateClickEvent('selectEdge', event, pointer); + selected = true; + } else if (selectedEdgesCount - previouslySelectedEdgeCount < 0) { + // edge was deselected + this.selectionHandler._generateClickEvent('deselectEdge', event, pointer, previousSelection); + selected = true; + } else if (selectedEdgesCount === previouslySelectedEdgeCount && edgesChanges === true) { + this.selectionHandler._generateClickEvent('deselectEdge', event, pointer, previousSelection); + this.selectionHandler._generateClickEvent('selectEdge', event, pointer); + selected = true; + } + + // fire the select event if anything has been selected or deselected + if (selected === true) { + // select or unselect + this.selectionHandler._generateClickEvent('select', event, pointer); + } + } + + /** + * This function checks if the nodes and edges previously selected have changed. + * @param previousSelection + * @param currentSelection + * @returns {{nodesChanges: boolean, edgesChanges: boolean}} + * @private + */ + }, { + key: '_determineIfDifferent', + value: function _determineIfDifferent(previousSelection, currentSelection) { + var nodesChanges = false; + var edgesChanges = false; + + for (var i = 0; i < previousSelection.nodes.length; i++) { + if (currentSelection.nodes.indexOf(previousSelection.nodes[i]) === -1) { + nodesChanges = true; + } + } + for (var i = 0; i < currentSelection.nodes.length; i++) { + if (previousSelection.nodes.indexOf(previousSelection.nodes[i]) === -1) { + nodesChanges = true; + } + } + for (var i = 0; i < previousSelection.edges.length; i++) { + if (currentSelection.edges.indexOf(previousSelection.edges[i]) === -1) { + edgesChanges = true; + } + } + for (var i = 0; i < currentSelection.edges.length; i++) { + if (previousSelection.edges.indexOf(previousSelection.edges[i]) === -1) { + edgesChanges = true; + } + } + + return { nodesChanges: nodesChanges, edgesChanges: edgesChanges }; + } + + /** + * This function is called by onDragStart. + * It is separated out because we can then overload it for the datamanipulation system. + * + * @private + */ + }, { + key: 'onDragStart', + value: function onDragStart(event) { + //in case the touch event was triggered on an external div, do the initial touch now. + if (this.drag.pointer === undefined) { + this.onTouch(event); + } + + // note: drag.pointer is set in onTouch to get the initial touch location + var node = this.selectionHandler.getNodeAt(this.drag.pointer); + + this.drag.dragging = true; + this.drag.selection = []; + this.drag.translation = util.extend({}, this.body.view.translation); // copy the object + this.drag.nodeId = undefined; + + if (node !== undefined && this.options.dragNodes === true) { + this.drag.nodeId = node.id; + // select the clicked node if not yet selected + if (node.isSelected() === false) { + this.selectionHandler.unselectAll(); + this.selectionHandler.selectObject(node); + } + + // after select to contain the node + this.selectionHandler._generateClickEvent('dragStart', event, this.drag.pointer); + + var selection = this.selectionHandler.selectionObj.nodes; + // create an array with the selected nodes and their original location and status + for (var nodeId in selection) { + if (selection.hasOwnProperty(nodeId)) { + var object = selection[nodeId]; + var s = { + id: object.id, + node: object, + + // store original x, y, xFixed and yFixed, make the node temporarily Fixed + x: object.x, + y: object.y, + xFixed: object.options.fixed.x, + yFixed: object.options.fixed.y + }; + + object.options.fixed.x = true; + object.options.fixed.y = true; + + this.drag.selection.push(s); + } + } + } else { + // fallback if no node is selected and thus the view is dragged. + this.selectionHandler._generateClickEvent('dragStart', event, this.drag.pointer, undefined, true); + } + } + + /** + * handle drag event + * @private + */ + }, { + key: 'onDrag', + value: function onDrag(event) { + var _this2 = this; + + if (this.drag.pinched === true) { + return; + } + + // remove the focus on node if it is focussed on by the focusOnNode + this.body.emitter.emit('unlockNode'); + + var pointer = this.getPointer(event.center); + + var selection = this.drag.selection; + if (selection && selection.length && this.options.dragNodes === true) { + (function () { + _this2.selectionHandler._generateClickEvent('dragging', event, pointer); + + // calculate delta's and new location + var deltaX = pointer.x - _this2.drag.pointer.x; + var deltaY = pointer.y - _this2.drag.pointer.y; + + // update position of all selected nodes + selection.forEach(function (selection) { + var node = selection.node; + // only move the node if it was not fixed initially + if (selection.xFixed === false) { + node.x = _this2.canvas._XconvertDOMtoCanvas(_this2.canvas._XconvertCanvasToDOM(selection.x) + deltaX); + } + // only move the node if it was not fixed initially + if (selection.yFixed === false) { + node.y = _this2.canvas._YconvertDOMtoCanvas(_this2.canvas._YconvertCanvasToDOM(selection.y) + deltaY); + } + }); + + // start the simulation of the physics + _this2.body.emitter.emit('startSimulation'); + })(); + } else { + // move the network + if (this.options.dragView === true) { + this.selectionHandler._generateClickEvent('dragging', event, pointer, undefined, true); + + // if the drag was not started properly because the click started outside the network div, start it now. + if (this.drag.pointer === undefined) { + this.onDragStart(event); + return; + } + var diffX = pointer.x - this.drag.pointer.x; + var diffY = pointer.y - this.drag.pointer.y; + + this.body.view.translation = { x: this.drag.translation.x + diffX, y: this.drag.translation.y + diffY }; + this.body.emitter.emit('_redraw'); + } + } + } + + /** + * handle drag start event + * @private + */ + }, { + key: 'onDragEnd', + value: function onDragEnd(event) { + this.drag.dragging = false; + var selection = this.drag.selection; + if (selection && selection.length) { + selection.forEach(function (s) { + // restore original xFixed and yFixed + s.node.options.fixed.x = s.xFixed; + s.node.options.fixed.y = s.yFixed; + }); + this.selectionHandler._generateClickEvent('dragEnd', event, this.getPointer(event.center)); + this.body.emitter.emit('startSimulation'); + } else { + this.selectionHandler._generateClickEvent('dragEnd', event, this.getPointer(event.center), undefined, true); + this.body.emitter.emit('_requestRedraw'); + } + } + + /** + * Handle pinch event + * @param event + * @private + */ + }, { + key: 'onPinch', + value: function onPinch(event) { + var pointer = this.getPointer(event.center); + + this.drag.pinched = true; + if (this.pinch['scale'] === undefined) { + this.pinch.scale = 1; + } + + // TODO: enabled moving while pinching? + var scale = this.pinch.scale * event.scale; + this.zoom(scale, pointer); + } + + /** + * Zoom the network in or out + * @param {Number} scale a number around 1, and between 0.01 and 10 + * @param {{x: Number, y: Number}} pointer Position on screen + * @return {Number} appliedScale scale is limited within the boundaries + * @private + */ + }, { + key: 'zoom', + value: function zoom(scale, pointer) { + if (this.options.zoomView === true) { + var scaleOld = this.body.view.scale; + if (scale < 0.00001) { + scale = 0.00001; + } + if (scale > 10) { + scale = 10; + } + + var preScaleDragPointer = undefined; + if (this.drag !== undefined) { + if (this.drag.dragging === true) { + preScaleDragPointer = this.canvas.DOMtoCanvas(this.drag.pointer); + } + } + // + this.canvas.frame.canvas.clientHeight / 2 + var translation = this.body.view.translation; + + var scaleFrac = scale / scaleOld; + var tx = (1 - scaleFrac) * pointer.x + translation.x * scaleFrac; + var ty = (1 - scaleFrac) * pointer.y + translation.y * scaleFrac; + + this.body.view.scale = scale; + this.body.view.translation = { x: tx, y: ty }; + + if (preScaleDragPointer != undefined) { + var postScaleDragPointer = this.canvas.canvasToDOM(preScaleDragPointer); + this.drag.pointer.x = postScaleDragPointer.x; + this.drag.pointer.y = postScaleDragPointer.y; + } + + this.body.emitter.emit('_requestRedraw'); + + if (scaleOld < scale) { + this.body.emitter.emit('zoom', { direction: '+', scale: this.body.view.scale }); + } else { + this.body.emitter.emit('zoom', { direction: '-', scale: this.body.view.scale }); + } + } + } + + /** + * Event handler for mouse wheel event, used to zoom the timeline + * See http://adomas.org/javascript-mouse-wheel/ + * https://github.com/EightMedia/hammer.js/issues/256 + * @param {MouseEvent} event + * @private + */ + }, { + key: 'onMouseWheel', + value: function onMouseWheel(event) { + // retrieve delta + var delta = 0; + if (event.wheelDelta) { + /* IE/Opera. */ + delta = event.wheelDelta / 120; + } else if (event.detail) { + /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail / 3; + } + + // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + if (delta !== 0) { + + // calculate the new scale + var scale = this.body.view.scale; + var zoom = delta / 10; + if (delta < 0) { + zoom = zoom / (1 - zoom); + } + scale *= 1 + zoom; + + // calculate the pointer location + var pointer = this.getPointer({ x: event.clientX, y: event.clientY }); + + // apply the new scale + this.zoom(scale, pointer); + } + + // Prevent default actions caused by mouse wheel. + event.preventDefault(); + } + + /** + * Mouse move handler for checking whether the title moves over a node with a title. + * @param {Event} event + * @private + */ + }, { + key: 'onMouseMove', + value: function onMouseMove(event) { + var _this3 = this; + + var pointer = this.getPointer({ x: event.clientX, y: event.clientY }); + var popupVisible = false; + + // check if the previously selected node is still selected + if (this.popup !== undefined) { + if (this.popup.hidden === false) { + this._checkHidePopup(pointer); + } + + // if the popup was not hidden above + if (this.popup.hidden === false) { + popupVisible = true; + this.popup.setPosition(pointer.x + 3, pointer.y - 5); + this.popup.show(); + } + } + + // if we bind the keyboard to the div, we have to highlight it to use it. This highlights it on mouse over. + if (this.options.keyboard.bindToWindow === false && this.options.keyboard.enabled === true) { + this.canvas.frame.focus(); + } + + // start a timeout that will check if the mouse is positioned above an element + if (popupVisible === false) { + if (this.popupTimer !== undefined) { + clearInterval(this.popupTimer); // stop any running calculationTimer + this.popupTimer = undefined; + } + if (!this.drag.dragging) { + this.popupTimer = setTimeout(function () { + return _this3._checkShowPopup(pointer); + }, this.options.tooltipDelay); + } + } + + /** + * Adding hover highlights + */ + if (this.options.hover === true) { + // adding hover highlights + var obj = this.selectionHandler.getNodeAt(pointer); + if (obj === undefined) { + obj = this.selectionHandler.getEdgeAt(pointer); + } + this.selectionHandler.hoverObject(obj); + } + } + + /** + * Check if there is an element on the given position in the network + * (a node or edge). If so, and if this element has a title, + * show a popup window with its title. + * + * @param {{x:Number, y:Number}} pointer + * @private + */ + }, { + key: '_checkShowPopup', + value: function _checkShowPopup(pointer) { + var x = this.canvas._XconvertDOMtoCanvas(pointer.x); + var y = this.canvas._YconvertDOMtoCanvas(pointer.y); + var pointerObj = { + left: x, + top: y, + right: x, + bottom: y + }; + + var previousPopupObjId = this.popupObj === undefined ? undefined : this.popupObj.id; + var nodeUnderCursor = false; + var popupType = 'node'; + + // check if a node is under the cursor. + if (this.popupObj === undefined) { + // search the nodes for overlap, select the top one in case of multiple nodes + var nodeIndices = this.body.nodeIndices; + var nodes = this.body.nodes; + var node = undefined; + var overlappingNodes = []; + for (var i = 0; i < nodeIndices.length; i++) { + node = nodes[nodeIndices[i]]; + if (node.isOverlappingWith(pointerObj) === true) { + if (node.getTitle() !== undefined) { + overlappingNodes.push(nodeIndices[i]); + } + } + } + + if (overlappingNodes.length > 0) { + // if there are overlapping nodes, select the last one, this is the one which is drawn on top of the others + this.popupObj = nodes[overlappingNodes[overlappingNodes.length - 1]]; + // if you hover over a node, the title of the edge is not supposed to be shown. + nodeUnderCursor = true; + } + } + + if (this.popupObj === undefined && nodeUnderCursor === false) { + // search the edges for overlap + var edgeIndices = this.body.edgeIndices; + var edges = this.body.edges; + var edge = undefined; + var overlappingEdges = []; + for (var i = 0; i < edgeIndices.length; i++) { + edge = edges[edgeIndices[i]]; + if (edge.isOverlappingWith(pointerObj) === true) { + if (edge.connected === true && edge.getTitle() !== undefined) { + overlappingEdges.push(edgeIndices[i]); + } + } + } + + if (overlappingEdges.length > 0) { + this.popupObj = edges[overlappingEdges[overlappingEdges.length - 1]]; + popupType = 'edge'; + } + } + + if (this.popupObj !== undefined) { + // show popup message window + if (this.popupObj.id !== previousPopupObjId) { + if (this.popup === undefined) { + this.popup = new _componentsPopup2['default'](this.canvas.frame); + } + + this.popup.popupTargetType = popupType; + this.popup.popupTargetId = this.popupObj.id; + + // adjust a small offset such that the mouse cursor is located in the + // bottom left location of the popup, and you can easily move over the + // popup area + this.popup.setPosition(pointer.x + 3, pointer.y - 5); + this.popup.setText(this.popupObj.getTitle()); + this.popup.show(); + this.body.emitter.emit('showPopup', this.popupObj.id); + } + } else { + if (this.popup !== undefined) { + this.popup.hide(); + this.body.emitter.emit('hidePopup'); + } + } + } + + /** + * Check if the popup must be hidden, which is the case when the mouse is no + * longer hovering on the object + * @param {{x:Number, y:Number}} pointer + * @private + */ + }, { + key: '_checkHidePopup', + value: function _checkHidePopup(pointer) { + var pointerObj = this.selectionHandler._pointerToPositionObject(pointer); + + var stillOnObj = false; + if (this.popup.popupTargetType === 'node') { + if (this.body.nodes[this.popup.popupTargetId] !== undefined) { + stillOnObj = this.body.nodes[this.popup.popupTargetId].isOverlappingWith(pointerObj); + + // if the mouse is still one the node, we have to check if it is not also on one that is drawn on top of it. + // we initially only check stillOnObj because this is much faster. + if (stillOnObj === true) { + var overNode = this.selectionHandler.getNodeAt(pointer); + stillOnObj = overNode.id === this.popup.popupTargetId; + } + } + } else { + if (this.selectionHandler.getNodeAt(pointer) === undefined) { + if (this.body.edges[this.popup.popupTargetId] !== undefined) { + stillOnObj = this.body.edges[this.popup.popupTargetId].isOverlappingWith(pointerObj); + } + } + } + + if (stillOnObj === false) { + this.popupObj = undefined; + this.popup.hide(); + this.body.emitter.emit('hidePopup'); + } + } + }]); + + return InteractionHandler; + })(); + + exports['default'] = InteractionHandler; + module.exports = exports['default']; + +/***/ }, +/* 106 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var util = __webpack_require__(1); + var Hammer = __webpack_require__(20); + var hammerUtil = __webpack_require__(25); + var keycharm = __webpack_require__(41); + + var NavigationHandler = (function () { + function NavigationHandler(body, canvas) { + var _this = this; + + _classCallCheck(this, NavigationHandler); + + this.body = body; + this.canvas = canvas; + + this.iconsCreated = false; + this.navigationHammers = []; + this.boundFunctions = {}; + this.touchTime = 0; + this.activated = false; + + this.body.emitter.on("activate", function () { + _this.activated = true;_this.configureKeyboardBindings(); + }); + this.body.emitter.on("deactivate", function () { + _this.activated = false;_this.configureKeyboardBindings(); + }); + this.body.emitter.on("destroy", function () { + if (_this.keycharm !== undefined) { + _this.keycharm.destroy(); + } + }); + + this.options = {}; + } + + _createClass(NavigationHandler, [{ + key: 'setOptions', + value: function setOptions(options) { + if (options !== undefined) { + this.options = options; + this.create(); + } + } + }, { + key: 'create', + value: function create() { + if (this.options.navigationButtons === true) { + if (this.iconsCreated === false) { + this.loadNavigationElements(); + } + } else if (this.iconsCreated === true) { + this.cleanNavigation(); + } + + this.configureKeyboardBindings(); + } + }, { + key: 'cleanNavigation', + value: function cleanNavigation() { + // clean hammer bindings + if (this.navigationHammers.length != 0) { + for (var i = 0; i < this.navigationHammers.length; i++) { + this.navigationHammers[i].destroy(); + } + this.navigationHammers = []; + } + + // clean up previous navigation items + if (this.navigationDOM && this.navigationDOM['wrapper'] && this.navigationDOM['wrapper'].parentNode) { + this.navigationDOM['wrapper'].parentNode.removeChild(this.navigationDOM['wrapper']); + } + + this.iconsCreated = false; + } + + /** + * Creation of the navigation controls nodes. They are drawn over the rest of the nodes and are not affected by scale and translation + * they have a triggerFunction which is called on click. If the position of the navigation controls is dependent + * on this.frame.canvas.clientWidth or this.frame.canvas.clientHeight, we flag horizontalAlignLeft and verticalAlignTop false. + * This means that the location will be corrected by the _relocateNavigation function on a size change of the canvas. + * + * @private + */ + }, { + key: 'loadNavigationElements', + value: function loadNavigationElements() { + var _this2 = this; + + this.cleanNavigation(); + + this.navigationDOM = {}; + var navigationDivs = ['up', 'down', 'left', 'right', 'zoomIn', 'zoomOut', 'zoomExtends']; + var navigationDivActions = ['_moveUp', '_moveDown', '_moveLeft', '_moveRight', '_zoomIn', '_zoomOut', '_fit']; + + this.navigationDOM['wrapper'] = document.createElement('div'); + this.navigationDOM['wrapper'].className = 'vis-navigation'; + this.canvas.frame.appendChild(this.navigationDOM['wrapper']); + + for (var i = 0; i < navigationDivs.length; i++) { + this.navigationDOM[navigationDivs[i]] = document.createElement('div'); + this.navigationDOM[navigationDivs[i]].className = 'vis-button vis-' + navigationDivs[i]; + this.navigationDOM['wrapper'].appendChild(this.navigationDOM[navigationDivs[i]]); + + var hammer = new Hammer(this.navigationDOM[navigationDivs[i]]); + if (navigationDivActions[i] === "_fit") { + hammerUtil.onTouch(hammer, this._fit.bind(this)); + } else { + hammerUtil.onTouch(hammer, this.bindToRedraw.bind(this, navigationDivActions[i])); + } + + this.navigationHammers.push(hammer); + } + + // use a hammer for the release so we do not require the one used in the rest of the network + // the one the rest uses can be overloaded by the manipulation system. + var hammerFrame = new Hammer(this.canvas.frame); + hammerUtil.onRelease(hammerFrame, function () { + _this2._stopMovement(); + }); + this.navigationHammers.push(hammerFrame); + + this.iconsCreated = true; + } + }, { + key: 'bindToRedraw', + value: function bindToRedraw(action) { + if (this.boundFunctions[action] === undefined) { + this.boundFunctions[action] = this[action].bind(this); + this.body.emitter.on("initRedraw", this.boundFunctions[action]); + this.body.emitter.emit("_startRendering"); + } + } + }, { + key: 'unbindFromRedraw', + value: function unbindFromRedraw(action) { + if (this.boundFunctions[action] !== undefined) { + this.body.emitter.off("initRedraw", this.boundFunctions[action]); + this.body.emitter.emit("_stopRendering"); + delete this.boundFunctions[action]; + } + } + + /** + * this stops all movement induced by the navigation buttons + * + * @private + */ + }, { + key: '_fit', + value: function _fit() { + if (new Date().valueOf() - this.touchTime > 700) { + // TODO: fix ugly hack to avoid hammer's double fireing of event (because we use release?) + this.body.emitter.emit("fit", { duration: 700 }); + this.touchTime = new Date().valueOf(); + } + } + + /** + * this stops all movement induced by the navigation buttons + * + * @private + */ + }, { + key: '_stopMovement', + value: function _stopMovement() { + for (var boundAction in this.boundFunctions) { + if (this.boundFunctions.hasOwnProperty(boundAction)) { + this.body.emitter.off("initRedraw", this.boundFunctions[boundAction]); + this.body.emitter.emit("_stopRendering"); + } + } + this.boundFunctions = {}; + } + }, { + key: '_moveUp', + value: function _moveUp() { + this.body.view.translation.y += this.options.keyboard.speed.y; + } + }, { + key: '_moveDown', + value: function _moveDown() { + this.body.view.translation.y -= this.options.keyboard.speed.y; + } + }, { + key: '_moveLeft', + value: function _moveLeft() { + this.body.view.translation.x += this.options.keyboard.speed.x; + } + }, { + key: '_moveRight', + value: function _moveRight() { + this.body.view.translation.x -= this.options.keyboard.speed.x; + } + }, { + key: '_zoomIn', + value: function _zoomIn() { + this.body.view.scale *= 1 + this.options.keyboard.speed.zoom; + this.body.emitter.emit('zoom', { direction: '+', scale: this.body.view.scale }); + } + }, { + key: '_zoomOut', + value: function _zoomOut() { + this.body.view.scale /= 1 + this.options.keyboard.speed.zoom; + this.body.emitter.emit('zoom', { direction: '-', scale: this.body.view.scale }); + } + + /** + * bind all keys using keycharm. + */ + }, { + key: 'configureKeyboardBindings', + value: function configureKeyboardBindings() { + var _this3 = this; + + if (this.keycharm !== undefined) { + this.keycharm.destroy(); + } + + if (this.options.keyboard.enabled === true) { + if (this.options.keyboard.bindToWindow === true) { + this.keycharm = keycharm({ container: window, preventDefault: true }); + } else { + this.keycharm = keycharm({ container: this.canvas.frame, preventDefault: true }); + } + + this.keycharm.reset(); + + if (this.activated === true) { + this.keycharm.bind("up", function () { + _this3.bindToRedraw("_moveUp"); + }, "keydown"); + this.keycharm.bind("down", function () { + _this3.bindToRedraw("_moveDown"); + }, "keydown"); + this.keycharm.bind("left", function () { + _this3.bindToRedraw("_moveLeft"); + }, "keydown"); + this.keycharm.bind("right", function () { + _this3.bindToRedraw("_moveRight"); + }, "keydown"); + this.keycharm.bind("=", function () { + _this3.bindToRedraw("_zoomIn"); + }, "keydown"); + this.keycharm.bind("num+", function () { + _this3.bindToRedraw("_zoomIn"); + }, "keydown"); + this.keycharm.bind("num-", function () { + _this3.bindToRedraw("_zoomOut"); + }, "keydown"); + this.keycharm.bind("-", function () { + _this3.bindToRedraw("_zoomOut"); + }, "keydown"); + this.keycharm.bind("[", function () { + _this3.bindToRedraw("_zoomOut"); + }, "keydown"); + this.keycharm.bind("]", function () { + _this3.bindToRedraw("_zoomIn"); + }, "keydown"); + this.keycharm.bind("pageup", function () { + _this3.bindToRedraw("_zoomIn"); + }, "keydown"); + this.keycharm.bind("pagedown", function () { + _this3.bindToRedraw("_zoomOut"); + }, "keydown"); + + this.keycharm.bind("up", function () { + _this3.unbindFromRedraw("_moveUp"); + }, "keyup"); + this.keycharm.bind("down", function () { + _this3.unbindFromRedraw("_moveDown"); + }, "keyup"); + this.keycharm.bind("left", function () { + _this3.unbindFromRedraw("_moveLeft"); + }, "keyup"); + this.keycharm.bind("right", function () { + _this3.unbindFromRedraw("_moveRight"); + }, "keyup"); + this.keycharm.bind("=", function () { + _this3.unbindFromRedraw("_zoomIn"); + }, "keyup"); + this.keycharm.bind("num+", function () { + _this3.unbindFromRedraw("_zoomIn"); + }, "keyup"); + this.keycharm.bind("num-", function () { + _this3.unbindFromRedraw("_zoomOut"); + }, "keyup"); + this.keycharm.bind("-", function () { + _this3.unbindFromRedraw("_zoomOut"); + }, "keyup"); + this.keycharm.bind("[", function () { + _this3.unbindFromRedraw("_zoomOut"); + }, "keyup"); + this.keycharm.bind("]", function () { + _this3.unbindFromRedraw("_zoomIn"); + }, "keyup"); + this.keycharm.bind("pageup", function () { + _this3.unbindFromRedraw("_zoomIn"); + }, "keyup"); + this.keycharm.bind("pagedown", function () { + _this3.unbindFromRedraw("_zoomOut"); + }, "keyup"); + } + } + } + }]); + + return NavigationHandler; + })(); + + exports['default'] = NavigationHandler; + module.exports = exports['default']; + +/***/ }, +/* 107 */ +/***/ function(module, exports) { + + /** + * Popup is a class to create a popup window with some text + * @param {Element} container The container object. + * @param {Number} [x] + * @param {Number} [y] + * @param {String} [text] + * @param {Object} [style] An object containing borderColor, + * backgroundColor, etc. + */ + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var Popup = (function () { + function Popup(container) { + _classCallCheck(this, Popup); + + this.container = container; + + this.x = 0; + this.y = 0; + this.padding = 5; + this.hidden = false; + + // create the frame + this.frame = document.createElement('div'); + this.frame.className = 'vis-network-tooltip'; + this.container.appendChild(this.frame); + } + + /** + * @param {number} x Horizontal position of the popup window + * @param {number} y Vertical position of the popup window + */ + + _createClass(Popup, [{ + key: 'setPosition', + value: function setPosition(x, y) { + this.x = parseInt(x); + this.y = parseInt(y); + } + + /** + * Set the content for the popup window. This can be HTML code or text. + * @param {string | Element} content + */ + }, { + key: 'setText', + value: function setText(content) { + if (content instanceof Element) { + this.frame.innerHTML = ''; + this.frame.appendChild(content); + } else { + this.frame.innerHTML = content; // string containing text or HTML + } + } + + /** + * Show the popup window + * @param {boolean} [doShow] Show or hide the window + */ + }, { + key: 'show', + value: function show(doShow) { + if (doShow === undefined) { + doShow = true; + } + + if (doShow === true) { + var height = this.frame.clientHeight; + var width = this.frame.clientWidth; + var maxHeight = this.frame.parentNode.clientHeight; + var maxWidth = this.frame.parentNode.clientWidth; + + var top = this.y - height; + if (top + height + this.padding > maxHeight) { + top = maxHeight - height - this.padding; + } + if (top < this.padding) { + top = this.padding; + } + + var left = this.x; + if (left + width + this.padding > maxWidth) { + left = maxWidth - width - this.padding; + } + if (left < this.padding) { + left = this.padding; + } + + this.frame.style.left = left + "px"; + this.frame.style.top = top + "px"; + this.frame.style.visibility = "visible"; + this.hidden = false; + } else { + this.hide(); + } + } + + /** + * Hide the popup window + */ + }, { + key: 'hide', + value: function hide() { + this.hidden = true; + this.frame.style.visibility = "hidden"; + } + }]); + + return Popup; + })(); + + exports['default'] = Popup; + module.exports = exports['default']; + +/***/ }, +/* 108 */ +/***/ function(module, exports, __webpack_require__) { + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var Node = __webpack_require__(62); + var Edge = __webpack_require__(82); + var util = __webpack_require__(1); + + var SelectionHandler = (function () { + function SelectionHandler(body, canvas) { + var _this = this; + + _classCallCheck(this, SelectionHandler); + + this.body = body; + this.canvas = canvas; + this.selectionObj = { nodes: [], edges: [] }; + this.hoverObj = { nodes: {}, edges: {} }; + + this.options = {}; + this.defaultOptions = { + multiselect: false, + selectable: true, + selectConnectedEdges: true, + hoverConnectedEdges: true + }; + util.extend(this.options, this.defaultOptions); + + this.body.emitter.on("_dataChanged", function () { + _this.updateSelection(); + }); + } + + _createClass(SelectionHandler, [{ + key: "setOptions", + value: function setOptions(options) { + if (options !== undefined) { + var fields = ['multiselect', 'hoverConnectedEdges', 'selectable', 'selectConnectedEdges']; + util.selectiveDeepExtend(fields, this.options, options); + } + } + + /** + * handles the selection part of the tap; + * + * @param {Object} pointer + * @private + */ + }, { + key: "selectOnPoint", + value: function selectOnPoint(pointer) { + var selected = false; + if (this.options.selectable === true) { + var obj = this.getNodeAt(pointer) || this.getEdgeAt(pointer); + + // unselect after getting the objects in order to restore width and height. + this.unselectAll(); + + if (obj !== undefined) { + selected = this.selectObject(obj); + } + this.body.emitter.emit("_requestRedraw"); + } + return selected; + } + }, { + key: "selectAdditionalOnPoint", + value: function selectAdditionalOnPoint(pointer) { + var selectionChanged = false; + if (this.options.selectable === true) { + var obj = this.getNodeAt(pointer) || this.getEdgeAt(pointer); + + if (obj !== undefined) { + selectionChanged = true; + if (obj.isSelected() === true) { + this.deselectObject(obj); + } else { + this.selectObject(obj); + } + + this.body.emitter.emit("_requestRedraw"); + } + } + return selectionChanged; + } + }, { + key: "_generateClickEvent", + value: function _generateClickEvent(eventType, event, pointer, oldSelection) { + var emptySelection = arguments.length <= 4 || arguments[4] === undefined ? false : arguments[4]; + + var properties = undefined; + if (emptySelection === true) { + properties = { nodes: [], edges: [] }; + } else { + properties = this.getSelection(); + } + properties['pointer'] = { + DOM: { x: pointer.x, y: pointer.y }, + canvas: this.canvas.DOMtoCanvas(pointer) + }; + properties['event'] = event; + + if (oldSelection !== undefined) { + properties['previousSelection'] = oldSelection; + } + this.body.emitter.emit(eventType, properties); + } + }, { + key: "selectObject", + value: function selectObject(obj) { + var highlightEdges = arguments.length <= 1 || arguments[1] === undefined ? this.options.selectConnectedEdges : arguments[1]; + + if (obj !== undefined) { + if (obj instanceof Node) { + if (highlightEdges === true) { + this._selectConnectedEdges(obj); + } + } + obj.select(); + this._addToSelection(obj); + return true; + } + return false; + } + }, { + key: "deselectObject", + value: function deselectObject(obj) { + if (obj.isSelected() === true) { + obj.selected = false; + this._removeFromSelection(obj); + } + } + + /** + * retrieve all nodes overlapping with given object + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes + * @private + */ + }, { + key: "_getAllNodesOverlappingWith", + value: function _getAllNodesOverlappingWith(object) { + var overlappingNodes = []; + var nodes = this.body.nodes; + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var nodeId = this.body.nodeIndices[i]; + if (nodes[nodeId].isOverlappingWith(object)) { + overlappingNodes.push(nodeId); + } + } + return overlappingNodes; + } + + /** + * Return a position object in canvasspace from a single point in screenspace + * + * @param pointer + * @returns {{left: number, top: number, right: number, bottom: number}} + * @private + */ + }, { + key: "_pointerToPositionObject", + value: function _pointerToPositionObject(pointer) { + var canvasPos = this.canvas.DOMtoCanvas(pointer); + return { + left: canvasPos.x - 1, + top: canvasPos.y + 1, + right: canvasPos.x + 1, + bottom: canvasPos.y - 1 + }; + } + + /** + * Get the top node at the a specific point (like a click) + * + * @param {{x: Number, y: Number}} pointer + * @return {Node | undefined} node + * @private + */ + }, { + key: "getNodeAt", + value: function getNodeAt(pointer) { + var returnNode = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + // we first check if this is an navigation controls element + var positionObject = this._pointerToPositionObject(pointer); + var overlappingNodes = this._getAllNodesOverlappingWith(positionObject); + // if there are overlapping nodes, select the last one, this is the + // one which is drawn on top of the others + if (overlappingNodes.length > 0) { + if (returnNode === true) { + return this.body.nodes[overlappingNodes[overlappingNodes.length - 1]]; + } else { + return overlappingNodes[overlappingNodes.length - 1]; + } + } else { + return undefined; + } + } + + /** + * retrieve all edges overlapping with given object, selector is around center + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes + * @private + */ + }, { + key: "_getEdgesOverlappingWith", + value: function _getEdgesOverlappingWith(object, overlappingEdges) { + var edges = this.body.edges; + for (var i = 0; i < this.body.edgeIndices.length; i++) { + var edgeId = this.body.edgeIndices[i]; + if (edges[edgeId].isOverlappingWith(object)) { + overlappingEdges.push(edgeId); + } + } + } + + /** + * retrieve all nodes overlapping with given object + * @param {Object} object An object with parameters left, top, right, bottom + * @return {Number[]} An array with id's of the overlapping nodes + * @private + */ + }, { + key: "_getAllEdgesOverlappingWith", + value: function _getAllEdgesOverlappingWith(object) { + var overlappingEdges = []; + this._getEdgesOverlappingWith(object, overlappingEdges); + return overlappingEdges; + } + + /** + * Place holder. To implement change the getNodeAt to a _getObjectAt. Have the _getObjectAt call + * getNodeAt and _getEdgesAt, then priortize the selection to user preferences. + * + * @param pointer + * @returns {undefined} + * @private + */ + }, { + key: "getEdgeAt", + value: function getEdgeAt(pointer) { + var returnEdge = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + var positionObject = this._pointerToPositionObject(pointer); + var overlappingEdges = this._getAllEdgesOverlappingWith(positionObject); + + if (overlappingEdges.length > 0) { + if (returnEdge === true) { + return this.body.edges[overlappingEdges[overlappingEdges.length - 1]]; + } else { + return overlappingEdges[overlappingEdges.length - 1]; + } + } else { + return undefined; + } + } + + /** + * Add object to the selection array. + * + * @param obj + * @private + */ + }, { + key: "_addToSelection", + value: function _addToSelection(obj) { + if (obj instanceof Node) { + this.selectionObj.nodes[obj.id] = obj; + } else { + this.selectionObj.edges[obj.id] = obj; + } + } + + /** + * Add object to the selection array. + * + * @param obj + * @private + */ + }, { + key: "_addToHover", + value: function _addToHover(obj) { + if (obj instanceof Node) { + this.hoverObj.nodes[obj.id] = obj; + } else { + this.hoverObj.edges[obj.id] = obj; + } + } + + /** + * Remove a single option from selection. + * + * @param {Object} obj + * @private + */ + }, { + key: "_removeFromSelection", + value: function _removeFromSelection(obj) { + if (obj instanceof Node) { + delete this.selectionObj.nodes[obj.id]; + } else { + delete this.selectionObj.edges[obj.id]; + } + } + + /** + * Unselect all. The selectionObj is useful for this. + * + * @private + */ + }, { + key: "unselectAll", + value: function unselectAll() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + this.selectionObj.nodes[nodeId].unselect(); + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + this.selectionObj.edges[edgeId].unselect(); + } + } + + this.selectionObj = { nodes: {}, edges: {} }; + } + + /** + * return the number of selected nodes + * + * @returns {number} + * @private + */ + }, { + key: "_getSelectedNodeCount", + value: function _getSelectedNodeCount() { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + return count; + } + + /** + * return the selected node + * + * @returns {number} + * @private + */ + }, { + key: "_getSelectedNode", + value: function _getSelectedNode() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return this.selectionObj.nodes[nodeId]; + } + } + return undefined; + } + + /** + * return the selected edge + * + * @returns {number} + * @private + */ + }, { + key: "_getSelectedEdge", + value: function _getSelectedEdge() { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return this.selectionObj.edges[edgeId]; + } + } + return undefined; + } + + /** + * return the number of selected edges + * + * @returns {number} + * @private + */ + }, { + key: "_getSelectedEdgeCount", + value: function _getSelectedEdgeCount() { + var count = 0; + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; + } + + /** + * return the number of selected objects. + * + * @returns {number} + * @private + */ + }, { + key: "_getSelectedObjectCount", + value: function _getSelectedObjectCount() { + var count = 0; + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + count += 1; + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + count += 1; + } + } + return count; + } + + /** + * Check if anything is selected + * + * @returns {boolean} + * @private + */ + }, { + key: "_selectionIsEmpty", + value: function _selectionIsEmpty() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + return false; + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + return false; + } + } + return true; + } + + /** + * check if one of the selected nodes is a cluster. + * + * @returns {boolean} + * @private + */ + }, { + key: "_clusterInSelection", + value: function _clusterInSelection() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (this.selectionObj.nodes[nodeId].clusterSize > 1) { + return true; + } + } + } + return false; + } + + /** + * select the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + }, { + key: "_selectConnectedEdges", + value: function _selectConnectedEdges(node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.select(); + this._addToSelection(edge); + } + } + + /** + * select the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + }, { + key: "_hoverConnectedEdges", + value: function _hoverConnectedEdges(node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.hover = true; + this._addToHover(edge); + } + } + + /** + * unselect the edges connected to the node that is being selected + * + * @param {Node} node + * @private + */ + }, { + key: "_unselectConnectedEdges", + value: function _unselectConnectedEdges(node) { + for (var i = 0; i < node.edges.length; i++) { + var edge = node.edges[i]; + edge.unselect(); + this._removeFromSelection(edge); + } + } + + /** + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection + * + * @param {Node || Edge} object + * @private + */ + }, { + key: "blurObject", + value: function blurObject(object) { + if (object.hover === true) { + object.hover = false; + if (object instanceof Node) { + this.body.emitter.emit("blurNode", { node: object.id }); + } else { + this.body.emitter.emit("blurEdge", { edge: object.id }); + } + } + } + + /** + * This is called when someone clicks on a node. either select or deselect it. + * If there is an existing selection and we don't want to append to it, clear the existing selection + * + * @param {Node || Edge} object + * @private + */ + }, { + key: "hoverObject", + value: function hoverObject(object) { + var hoverChanged = false; + // remove all node hover highlights + for (var nodeId in this.hoverObj.nodes) { + if (this.hoverObj.nodes.hasOwnProperty(nodeId)) { + if (object === undefined || object instanceof Node && object.id != nodeId || object instanceof Edge) { + this.blurObject(this.hoverObj.nodes[nodeId]); + delete this.hoverObj.nodes[nodeId]; + hoverChanged = true; + } + } + } + + // removing all edge hover highlights + for (var edgeId in this.hoverObj.edges) { + if (this.hoverObj.edges.hasOwnProperty(edgeId)) { + // if the hover has been changed here it means that the node has been hovered over or off + // we then do not use the blurObject method here. + if (hoverChanged === true) { + this.hoverObj.edges[edgeId].hover = false; + delete this.hoverObj.edges[edgeId]; + } + // if the blur remains the same and the object is undefined (mouse off), we blur the edge + else if (object === undefined) { + this.blurObject(this.hoverObj.edges[edgeId]); + delete this.hoverObj.edges[edgeId]; + hoverChanged = true; + } + } + } + + if (object !== undefined) { + if (object.hover === false) { + object.hover = true; + this._addToHover(object); + hoverChanged = true; + if (object instanceof Node) { + this.body.emitter.emit("hoverNode", { node: object.id }); + } else { + this.body.emitter.emit("hoverEdge", { edge: object.id }); + } + } + if (object instanceof Node && this.options.hoverConnectedEdges === true) { + this._hoverConnectedEdges(object); + } + } + + if (hoverChanged === true) { + this.body.emitter.emit('_requestRedraw'); + } + } + + /** + * + * retrieve the currently selected objects + * @return {{nodes: Array., edges: Array.}} selection + */ + }, { + key: "getSelection", + value: function getSelection() { + var nodeIds = this.getSelectedNodes(); + var edgeIds = this.getSelectedEdges(); + return { nodes: nodeIds, edges: edgeIds }; + } + + /** + * + * retrieve the currently selected nodes + * @return {String[]} selection An array with the ids of the + * selected nodes. + */ + }, { + key: "getSelectedNodes", + value: function getSelectedNodes() { + var idArray = []; + if (this.options.selectable === true) { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + idArray.push(nodeId); + } + } + } + return idArray; + } + + /** + * + * retrieve the currently selected edges + * @return {Array} selection An array with the ids of the + * selected nodes. + */ + }, { + key: "getSelectedEdges", + value: function getSelectedEdges() { + var idArray = []; + if (this.options.selectable === true) { + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + idArray.push(edgeId); + } + } + } + return idArray; + } + + /** + * select zero or more nodes with the option to highlight edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + * @param {boolean} [highlightEdges] + */ + }, { + key: "selectNodes", + value: function selectNodes(selection) { + var highlightEdges = arguments.length <= 1 || arguments[1] === undefined ? true : arguments[1]; + + var i = undefined, + id = undefined; + + if (!selection || selection.length === undefined) throw 'Selection must be an array with ids'; + + // first unselect any selected node + this.unselectAll(); + + for (i = 0; i < selection.length; i++) { + id = selection[i]; + + var node = this.body.nodes[id]; + if (!node) { + throw new RangeError('Node with id "' + id + '" not found'); + } + this.selectObject(node, highlightEdges); + } + this.body.emitter.emit('_requestRedraw'); + } + + /** + * select zero or more edges + * @param {Number[] | String[]} selection An array with the ids of the + * selected nodes. + */ + }, { + key: "selectEdges", + value: function selectEdges(selection) { + var i = undefined, + id = undefined; + + if (!selection || selection.length === undefined) throw 'Selection must be an array with ids'; + + // first unselect any selected objects + this.unselectAll(); + + for (i = 0; i < selection.length; i++) { + id = selection[i]; + + var edge = this.body.edges[id]; + if (!edge) { + throw new RangeError('Edge with id "' + id + '" not found'); + } + this.selectObject(edge); + } + this.body.emitter.emit('_requestRedraw'); + } + + /** + * Validate the selection: remove ids of nodes which no longer exist + * @private + */ + }, { + key: "updateSelection", + value: function updateSelection() { + for (var nodeId in this.selectionObj.nodes) { + if (this.selectionObj.nodes.hasOwnProperty(nodeId)) { + if (!this.body.nodes.hasOwnProperty(nodeId)) { + delete this.selectionObj.nodes[nodeId]; + } + } + } + for (var edgeId in this.selectionObj.edges) { + if (this.selectionObj.edges.hasOwnProperty(edgeId)) { + if (!this.body.edges.hasOwnProperty(edgeId)) { + delete this.selectionObj.edges[edgeId]; + } + } + } + } + }]); + + return SelectionHandler; + })(); + + exports["default"] = SelectionHandler; + module.exports = exports["default"]; + +/***/ }, +/* 109 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var _NetworkUtil = __webpack_require__(104); + + var _NetworkUtil2 = _interopRequireDefault(_NetworkUtil); + + var util = __webpack_require__(1); + + var LayoutEngine = (function () { + function LayoutEngine(body) { + _classCallCheck(this, LayoutEngine); + + this.body = body; + + this.initialRandomSeed = Math.round(Math.random() * 1000000); + this.randomSeed = this.initialRandomSeed; + this.options = {}; + this.optionsBackup = {}; + + this.defaultOptions = { + randomSeed: undefined, + improvedLayout: true, + hierarchical: { + enabled: false, + levelSeparation: 150, + direction: 'UD', // UD, DU, LR, RL + sortMethod: 'hubsize' // hubsize, directed + } + }; + util.extend(this.options, this.defaultOptions); + + this.hierarchicalLevels = {}; + + this.bindEventListeners(); + } + + _createClass(LayoutEngine, [{ + key: 'bindEventListeners', + value: function bindEventListeners() { + var _this = this; + + this.body.emitter.on('_dataChanged', function () { + _this.setupHierarchicalLayout(); + }); + this.body.emitter.on('_dataLoaded', function () { + _this.layoutNetwork(); + }); + this.body.emitter.on('_resetHierarchicalLayout', function () { + _this.setupHierarchicalLayout(); + }); + } + }, { + key: 'setOptions', + value: function setOptions(options, allOptions) { + if (options !== undefined) { + var prevHierarchicalState = this.options.hierarchical.enabled; + util.selectiveDeepExtend(["randomSeed", "improvedLayout"], this.options, options); + util.mergeOptions(this.options, options, 'hierarchical'); + if (options.randomSeed !== undefined) { + this.initialRandomSeed = options.randomSeed; + } + + if (this.options.hierarchical.enabled === true) { + if (prevHierarchicalState === true) { + // refresh the overridden options for nodes and edges. + this.body.emitter.emit('refresh', true); + } + + // make sure the level seperation is the right way up + if (this.options.hierarchical.direction === 'RL' || this.options.hierarchical.direction === 'DU') { + if (this.options.hierarchical.levelSeparation > 0) { + this.options.hierarchical.levelSeparation *= -1; + } + } else { + if (this.options.hierarchical.levelSeparation < 0) { + this.options.hierarchical.levelSeparation *= -1; + } + } + + this.body.emitter.emit('_resetHierarchicalLayout'); + // because the hierarchical system needs it's own physics and smooth curve settings, we adapt the other options if needed. + return this.adaptAllOptions(allOptions); + } else { + if (prevHierarchicalState === true) { + // refresh the overridden options for nodes and edges. + this.body.emitter.emit('refresh'); + return util.deepExtend(allOptions, this.optionsBackup); + } + } + } + return allOptions; + } + }, { + key: 'adaptAllOptions', + value: function adaptAllOptions(allOptions) { + if (this.options.hierarchical.enabled === true) { + // set the physics + if (allOptions.physics === undefined || allOptions.physics === true) { + allOptions.physics = { solver: 'hierarchicalRepulsion' }; + this.optionsBackup.physics = { solver: 'barnesHut' }; + } else if (typeof allOptions.physics === 'object') { + this.optionsBackup.physics = { solver: 'barnesHut' }; + if (allOptions.physics.solver !== undefined) { + this.optionsBackup.physics = { solver: allOptions.physics.solver }; + } + allOptions.physics['solver'] = 'hierarchicalRepulsion'; + } else if (allOptions.physics !== false) { + this.optionsBackup.physics = { solver: 'barnesHut' }; + allOptions.physics['solver'] = 'hierarchicalRepulsion'; + } + + // get the type of static smooth curve in case it is required + var type = 'horizontal'; + if (this.options.hierarchical.direction === 'RL' || this.options.hierarchical.direction === 'LR') { + type = 'vertical'; + } + + // disable smooth curves if nothing is defined. If smooth curves have been turned on, turn them into static smooth curves. + if (allOptions.edges === undefined) { + this.optionsBackup.edges = { smooth: { enabled: true, type: 'dynamic' } }; + allOptions.edges = { smooth: false }; + } else if (allOptions.edges.smooth === undefined) { + this.optionsBackup.edges = { smooth: { enabled: true, type: 'dynamic' } }; + allOptions.edges.smooth = false; + } else { + if (typeof allOptions.edges.smooth === 'boolean') { + this.optionsBackup.edges = { smooth: allOptions.edges.smooth }; + allOptions.edges.smooth = { enabled: allOptions.edges.smooth, type: type }; + } else { + // allow custom types except for dynamic + if (allOptions.edges.smooth.type !== undefined && allOptions.edges.smooth.type !== 'dynamic') { + type = allOptions.edges.smooth.type; + } + + this.optionsBackup.edges = { + smooth: allOptions.edges.smooth.enabled === undefined ? true : allOptions.edges.smooth.enabled, + type: allOptions.edges.smooth.type === undefined ? 'dynamic' : allOptions.edges.smooth.type, + roundness: allOptions.edges.smooth.roundness === undefined ? 0.5 : allOptions.edges.smooth.roundness, + forceDirection: allOptions.edges.smooth.forceDirection === undefined ? false : allOptions.edges.smooth.forceDirection + }; + allOptions.edges.smooth = { + enabled: allOptions.edges.smooth.enabled === undefined ? true : allOptions.edges.smooth.enabled, + type: type, + roundness: allOptions.edges.smooth.roundness === undefined ? 0.5 : allOptions.edges.smooth.roundness, + forceDirection: allOptions.edges.smooth.forceDirection === undefined ? false : allOptions.edges.smooth.forceDirection + }; + } + } + + // force all edges into static smooth curves. Only applies to edges that do not use the global options for smooth. + this.body.emitter.emit('_forceDisableDynamicCurves', type); + } + return allOptions; + } + }, { + key: 'seededRandom', + value: function seededRandom() { + var x = Math.sin(this.randomSeed++) * 10000; + return x - Math.floor(x); + } + }, { + key: 'positionInitially', + value: function positionInitially(nodesArray) { + if (this.options.hierarchical.enabled !== true) { + this.randomSeed = this.initialRandomSeed; + for (var i = 0; i < nodesArray.length; i++) { + var node = nodesArray[i]; + var radius = 10 * 0.1 * nodesArray.length + 10; + var angle = 2 * Math.PI * this.seededRandom(); + if (node.x === undefined) { + node.x = radius * Math.cos(angle); + } + if (node.y === undefined) { + node.y = radius * Math.sin(angle); + } + } + } + } + + /** + * Use KamadaKawai to position nodes. This is quite a heavy algorithm so if there are a lot of nodes we + * cluster them first to reduce the amount. + */ + }, { + key: 'layoutNetwork', + value: function layoutNetwork() { + if (this.options.hierarchical.enabled !== true && this.options.improvedLayout === true) { + // first check if we should KamadaKawai to layout. The threshold is if less than half of the visible + // nodes have predefined positions we use this. + var positionDefined = 0; + for (var i = 0; i < this.body.nodeIndices.length; i++) { + var node = this.body.nodes[this.body.nodeIndices[i]]; + if (node.predefinedPosition === true) { + positionDefined += 1; + } + } + + // if less than half of the nodes have a predefined position we continue + if (positionDefined < 0.5 * this.body.nodeIndices.length) { + var MAX_LEVELS = 10; + var level = 0; + var clusterThreshold = 100; + // if there are a lot of nodes, we cluster before we run the algorithm. + if (this.body.nodeIndices.length > clusterThreshold) { + var startLength = this.body.nodeIndices.length; + while (this.body.nodeIndices.length > clusterThreshold) { + //console.time("clustering") + level += 1; + var before = this.body.nodeIndices.length; + // if there are many nodes we do a hubsize cluster + if (level % 3 === 0) { + this.body.modules.clustering.clusterBridges(); + } else { + this.body.modules.clustering.clusterOutliers(); + } + var after = this.body.nodeIndices.length; + if (before == after && level % 3 !== 0 || level > MAX_LEVELS) { + this._declusterAll(); + this.body.emitter.emit("_layoutFailed"); + console.info("This network could not be positioned by this version of the improved layout algorithm. Please disable improvedLayout for better performance."); + return; + } + //console.timeEnd("clustering") + //console.log(level,after) + } + // increase the size of the edges + this.body.modules.kamadaKawai.setOptions({ springLength: Math.max(150, 2 * startLength) }); + } + + // position the system for these nodes and edges + this.body.modules.kamadaKawai.solve(this.body.nodeIndices, this.body.edgeIndices, true); + + // shift to center point + this._shiftToCenter(); + + // perturb the nodes a little bit to force the physics to kick in + var offset = 70; + for (var i = 0; i < this.body.nodeIndices.length; i++) { + this.body.nodes[this.body.nodeIndices[i]].x += (0.5 - this.seededRandom()) * offset; + this.body.nodes[this.body.nodeIndices[i]].y += (0.5 - this.seededRandom()) * offset; + } + + // uncluster all clusters + this._declusterAll(); + + // reposition all bezier nodes. + this.body.emitter.emit("_repositionBezierNodes"); + } + } + } + + /** + * Move all the nodes towards to the center so gravitational pull wil not move the nodes away from view + * @private + */ + }, { + key: '_shiftToCenter', + value: function _shiftToCenter() { + var range = _NetworkUtil2['default']._getRangeCore(this.body.nodes, this.body.nodeIndices); + var center = _NetworkUtil2['default']._findCenter(range); + for (var i = 0; i < this.body.nodeIndices.length; i++) { + this.body.nodes[this.body.nodeIndices[i]].x -= center.x; + this.body.nodes[this.body.nodeIndices[i]].y -= center.y; + } + } + }, { + key: '_declusterAll', + value: function _declusterAll() { + var clustersPresent = true; + while (clustersPresent === true) { + clustersPresent = false; + for (var i = 0; i < this.body.nodeIndices.length; i++) { + if (this.body.nodes[this.body.nodeIndices[i]].isCluster === true) { + clustersPresent = true; + this.body.modules.clustering.openCluster(this.body.nodeIndices[i], {}, false); + } + } + if (clustersPresent === true) { + this.body.emitter.emit('_dataChanged'); + } + } + } + }, { + key: 'getSeed', + value: function getSeed() { + return this.initialRandomSeed; + } + + /** + * This is the main function to layout the nodes in a hierarchical way. + * It checks if the node details are supplied correctly + * + * @private + */ + }, { + key: 'setupHierarchicalLayout', + value: function setupHierarchicalLayout() { + if (this.options.hierarchical.enabled === true && this.body.nodeIndices.length > 0) { + // get the size of the largest hubs and check if the user has defined a level for a node. + var node = undefined, + nodeId = undefined; + var definedLevel = false; + var undefinedLevel = false; + this.hierarchicalLevels = {}; + this.nodeSpacing = 100; + + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + if (node.options.level !== undefined) { + definedLevel = true; + this.hierarchicalLevels[nodeId] = node.options.level; + } else { + undefinedLevel = true; + } + } + } + + // if the user defined some levels but not all, alert and run without hierarchical layout + if (undefinedLevel === true && definedLevel === true) { + throw new Error('To use the hierarchical layout, nodes require either no predefined levels or levels have to be defined for all nodes.'); + return; + } else { + // setup the system to use hierarchical method. + //this._changeConstants(); + + // define levels if undefined by the users. Based on hubsize + if (undefinedLevel === true) { + if (this.options.hierarchical.sortMethod === 'hubsize') { + this._determineLevelsByHubsize(); + } else if (this.options.hierarchical.sortMethod === 'directed' || 'direction') { + this._determineLevelsDirected(); + } + } + + // check the distribution of the nodes per level. + var distribution = this._getDistribution(); + + // place the nodes on the canvas. + this._placeNodesByHierarchy(distribution); + } + } + } + + /** + * This function places the nodes on the canvas based on the hierarchial distribution. + * + * @param {Object} distribution | obtained by the function this._getDistribution() + * @private + */ + }, { + key: '_placeNodesByHierarchy', + value: function _placeNodesByHierarchy(distribution) { + var nodeId = undefined, + node = undefined; + this.positionedNodes = {}; + // start placing all the level 0 nodes first. Then recursively position their branches. + for (var level in distribution) { + if (distribution.hasOwnProperty(level)) { + for (nodeId in distribution[level].nodes) { + if (distribution[level].nodes.hasOwnProperty(nodeId)) { + + node = distribution[level].nodes[nodeId]; + + if (this.options.hierarchical.direction === 'UD' || this.options.hierarchical.direction === 'DU') { + if (node.x === undefined) { + node.x = distribution[level].distance; + } + distribution[level].distance = node.x + this.nodeSpacing; + } else { + if (node.y === undefined) { + node.y = distribution[level].distance; + } + distribution[level].distance = node.y + this.nodeSpacing; + } + + this.positionedNodes[nodeId] = true; + this._placeBranchNodes(node.edges, node.id, distribution, level); + } + } + } + } + } + + /** + * This function get the distribution of levels based on hubsize + * + * @returns {Object} + * @private + */ + }, { + key: '_getDistribution', + value: function _getDistribution() { + var distribution = {}; + var nodeId = undefined, + node = undefined; + + // we fix Y because the hierarchy is vertical, we fix X so we do not give a node an x position for a second time. + // the fix of X is removed after the x value has been set. + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + var level = this.hierarchicalLevels[nodeId] === undefined ? 0 : this.hierarchicalLevels[nodeId]; + if (this.options.hierarchical.direction === 'UD' || this.options.hierarchical.direction === 'DU') { + node.y = this.options.hierarchical.levelSeparation * level; + node.options.fixed.y = true; + } else { + node.x = this.options.hierarchical.levelSeparation * level; + node.options.fixed.x = true; + } + if (distribution[level] === undefined) { + distribution[level] = { amount: 0, nodes: {}, distance: 0 }; + } + distribution[level].amount += 1; + distribution[level].nodes[nodeId] = node; + } + } + return distribution; + } + + /** + * Get the hubsize from all remaining unlevelled nodes. + * + * @returns {number} + * @private + */ + }, { + key: '_getHubSize', + value: function _getHubSize() { + var hubSize = 0; + for (var nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + var node = this.body.nodes[nodeId]; + if (this.hierarchicalLevels[nodeId] === undefined) { + hubSize = node.edges.length < hubSize ? hubSize : node.edges.length; + } + } + } + return hubSize; + } + + /** + * this function allocates nodes in levels based on the recursive branching from the largest hubs. + * + * @param hubsize + * @private + */ + }, { + key: '_determineLevelsByHubsize', + value: function _determineLevelsByHubsize() { + var nodeId = undefined, + node = undefined; + var hubSize = 1; + + while (hubSize > 0) { + // determine hubs + hubSize = this._getHubSize(); + if (hubSize === 0) break; + + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + if (node.edges.length === hubSize) { + this._setLevelByHubsize(0, node); + } + } + } + } + } + + /** + * this function is called recursively to enumerate the barnches of the largest hubs and give each node a level. + * + * @param level + * @param edges + * @param parentId + * @private + */ + }, { + key: '_setLevelByHubsize', + value: function _setLevelByHubsize(level, node) { + if (this.hierarchicalLevels[node.id] !== undefined) return; + + var childNode = undefined; + this.hierarchicalLevels[node.id] = level; + for (var i = 0; i < node.edges.length; i++) { + if (node.edges[i].toId === node.id) { + childNode = node.edges[i].from; + } else { + childNode = node.edges[i].to; + } + this._setLevelByHubsize(level + 1, childNode); + } + } + + /** + * this function allocates nodes in levels based on the direction of the edges + * + * @param hubsize + * @private + */ + }, { + key: '_determineLevelsDirected', + value: function _determineLevelsDirected() { + var nodeId = undefined, + node = undefined; + var minLevel = 10000; + + // set first node to source + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + node = this.body.nodes[nodeId]; + this._setLevelDirected(minLevel, node); + } + } + + // get the minimum level + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + minLevel = this.hierarchicalLevels[nodeId] < minLevel ? this.hierarchicalLevels[nodeId] : minLevel; + } + } + + // subtract the minimum from the set so we have a range starting from 0 + for (nodeId in this.body.nodes) { + if (this.body.nodes.hasOwnProperty(nodeId)) { + this.hierarchicalLevels[nodeId] -= minLevel; + } + } + } + + /** + * this function is called recursively to enumerate the branched of the first node and give each node a level based on edge direction + * + * @param level + * @param edges + * @param parentId + * @private + */ + }, { + key: '_setLevelDirected', + value: function _setLevelDirected(level, node) { + if (this.hierarchicalLevels[node.id] !== undefined) return; + + var childNode = undefined; + this.hierarchicalLevels[node.id] = level; + + for (var i = 0; i < node.edges.length; i++) { + if (node.edges[i].toId === node.id) { + childNode = node.edges[i].from; + this._setLevelDirected(level - 1, childNode); + } else { + childNode = node.edges[i].to; + this._setLevelDirected(level + 1, childNode); + } + } + } + + /** + * This is a recursively called function to enumerate the branches from the largest hubs and place the nodes + * on a X position that ensures there will be no overlap. + * + * @param edges + * @param parentId + * @param distribution + * @param parentLevel + * @private + */ + }, { + key: '_placeBranchNodes', + value: function _placeBranchNodes(edges, parentId, distribution, parentLevel) { + for (var i = 0; i < edges.length; i++) { + var childNode = undefined; + var parentNode = undefined; + if (edges[i].toId === parentId) { + childNode = edges[i].from; + parentNode = edges[i].to; + } else { + childNode = edges[i].to; + parentNode = edges[i].from; + } + var childNodeLevel = this.hierarchicalLevels[childNode.id]; + + if (this.positionedNodes[childNode.id] === undefined) { + // if a node is conneceted to another node on the same level (or higher (means lower level))!, this is not handled here. + if (childNodeLevel > parentLevel) { + if (this.options.hierarchical.direction === 'UD' || this.options.hierarchical.direction === 'DU') { + if (childNode.x === undefined) { + childNode.x = Math.max(distribution[childNodeLevel].distance, parentNode.x); + } + distribution[childNodeLevel].distance = childNode.x + this.nodeSpacing; + this.positionedNodes[childNode.id] = true; + } else { + if (childNode.y === undefined) { + childNode.y = Math.max(distribution[childNodeLevel].distance, parentNode.y); + } + distribution[childNodeLevel].distance = childNode.y + this.nodeSpacing; + } + this.positionedNodes[childNode.id] = true; + + if (childNode.edges.length > 1) { + this._placeBranchNodes(childNode.edges, childNode.id, distribution, childNodeLevel); + } + } + } + } + } + }]); + + return LayoutEngine; + })(); + + exports['default'] = LayoutEngine; + module.exports = exports['default']; + +/***/ }, +/* 110 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } + + var util = __webpack_require__(1); + var Hammer = __webpack_require__(20); + var hammerUtil = __webpack_require__(25); + + /** + * clears the toolbar div element of children + * + * @private + */ + + var ManipulationSystem = (function () { + function ManipulationSystem(body, canvas, selectionHandler) { + var _this = this; + + _classCallCheck(this, ManipulationSystem); + + this.body = body; + this.canvas = canvas; + this.selectionHandler = selectionHandler; + + this.editMode = false; + this.manipulationDiv = undefined; + this.editModeDiv = undefined; + this.closeDiv = undefined; + + this.manipulationHammers = []; + this.temporaryUIFunctions = {}; + this.temporaryEventFunctions = []; + + this.touchTime = 0; + this.temporaryIds = { nodes: [], edges: [] }; + this.guiEnabled = false; + this.inMode = false; + this.selectedControlNode = undefined; + + this.options = {}; + this.defaultOptions = { + enabled: false, + initiallyActive: false, + addNode: true, + addEdge: true, + editNode: undefined, + editEdge: true, + deleteNode: true, + deleteEdge: true, + controlNodeStyle: { + shape: 'dot', + size: 6, + color: { background: '#ff0000', border: '#3c3c3c', highlight: { background: '#07f968', border: '#3c3c3c' } }, + borderWidth: 2, + borderWidthSelected: 2 + } + }; + util.extend(this.options, this.defaultOptions); + + this.body.emitter.on('destroy', function () { + _this._clean(); + }); + this.body.emitter.on('_dataChanged', this._restore.bind(this)); + this.body.emitter.on('_resetData', this._restore.bind(this)); + } + + /** + * If something changes in the data during editing, switch back to the initial datamanipulation state and close all edit modes. + * @private + */ + + _createClass(ManipulationSystem, [{ + key: '_restore', + value: function _restore() { + if (this.inMode !== false) { + if (this.options.initiallyActive === true) { + this.enableEditMode(); + } else { + this.disableEditMode(); + } + } + } + + /** + * Set the Options + * @param options + */ + }, { + key: 'setOptions', + value: function setOptions(options, allOptions, globalOptions) { + if (allOptions !== undefined) { + if (allOptions.locale !== undefined) { + this.options.locale = allOptions.locale; + } else { + this.options.locale = globalOptions.locale; + } + if (allOptions.locales !== undefined) { + this.options.locales = allOptions.locales; + } else { + this.options.locales = globalOptions.locales; + } + } + + if (options !== undefined) { + if (typeof options === 'boolean') { + this.options.enabled = options; + } else { + this.options.enabled = true; + util.deepExtend(this.options, options); + } + if (this.options.initiallyActive === true) { + this.editMode = true; + } + this._setup(); + } + } + + /** + * Enable or disable edit-mode. Draws the DOM required and cleans up after itself. + * + * @private + */ + }, { + key: 'toggleEditMode', + value: function toggleEditMode() { + if (this.editMode === true) { + this.disableEditMode(); + } else { + this.enableEditMode(); + } + } + }, { + key: 'enableEditMode', + value: function enableEditMode() { + this.editMode = true; + + this._clean(); + if (this.guiEnabled === true) { + this.manipulationDiv.style.display = 'block'; + this.closeDiv.style.display = 'block'; + this.editModeDiv.style.display = 'none'; + this.showManipulatorToolbar(); + } + } + }, { + key: 'disableEditMode', + value: function disableEditMode() { + this.editMode = false; + + this._clean(); + if (this.guiEnabled === true) { + this.manipulationDiv.style.display = 'none'; + this.closeDiv.style.display = 'none'; + this.editModeDiv.style.display = 'block'; + this._createEditButton(); + } + } + + /** + * Creates the main toolbar. Removes functions bound to the select event. Binds all the buttons of the toolbar. + * + * @private + */ + }, { + key: 'showManipulatorToolbar', + value: function showManipulatorToolbar() { + // restore the state of any bound functions or events, remove control nodes, restore physics + this._clean(); + + // reset global letiables + this.manipulationDOM = {}; + + // if the gui is enabled, draw all elements. + if (this.guiEnabled === true) { + // a _restore will hide these menus + this.editMode = true; + this.manipulationDiv.style.display = 'block'; + this.closeDiv.style.display = 'block'; + + var selectedNodeCount = this.selectionHandler._getSelectedNodeCount(); + var selectedEdgeCount = this.selectionHandler._getSelectedEdgeCount(); + var selectedTotalCount = selectedNodeCount + selectedEdgeCount; + var locale = this.options.locales[this.options.locale]; + var needSeperator = false; + + if (this.options.addNode !== false) { + this._createAddNodeButton(locale); + needSeperator = true; + } + if (this.options.addEdge !== false) { + if (needSeperator === true) { + this._createSeperator(1); + } else { + needSeperator = true; + } + this._createAddEdgeButton(locale); + } + + if (selectedNodeCount === 1 && typeof this.options.editNode === 'function') { + if (needSeperator === true) { + this._createSeperator(2); + } else { + needSeperator = true; + } + this._createEditNodeButton(locale); + } else if (selectedEdgeCount === 1 && selectedNodeCount === 0 && this.options.editEdge !== false) { + if (needSeperator === true) { + this._createSeperator(3); + } else { + needSeperator = true; + } + this._createEditEdgeButton(locale); + } + + // remove buttons + if (selectedTotalCount !== 0) { + if (selectedNodeCount > 0 && this.options.deleteNode !== false) { + if (needSeperator === true) { + this._createSeperator(4); + } + this._createDeleteButton(locale); + } else if (selectedNodeCount === 0 && this.options.deleteEdge !== false) { + if (needSeperator === true) { + this._createSeperator(4); + } + this._createDeleteButton(locale); + } + } + + // bind the close button + this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this)); + + // refresh this bar based on what has been selected + this._temporaryBindEvent('select', this.showManipulatorToolbar.bind(this)); + } + + // redraw to show any possible changes + this.body.emitter.emit('_redraw'); + } + + /** + * Create the toolbar for adding Nodes + * + * @private + */ + }, { + key: 'addNodeMode', + value: function addNodeMode() { + // when using the gui, enable edit mode if it wasnt already. + if (this.editMode !== true) { + this.enableEditMode(); + } + + // restore the state of any bound functions or events, remove control nodes, restore physics + this._clean(); + + this.inMode = 'addNode'; + if (this.guiEnabled === true) { + var locale = this.options.locales[this.options.locale]; + this.manipulationDOM = {}; + this._createBackButton(locale); + this._createSeperator(); + this._createDescription(locale['addDescription'] || this.options.locales['en']['addDescription']); + + // bind the close button + this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this)); + } + + this._temporaryBindEvent('click', this._performAddNode.bind(this)); + } + + /** + * call the bound function to handle the editing of the node. The node has to be selected. + * + * @private + */ + }, { + key: 'editNode', + value: function editNode() { + var _this2 = this; + + // when using the gui, enable edit mode if it wasnt already. + if (this.editMode !== true) { + this.enableEditMode(); + } + + // restore the state of any bound functions or events, remove control nodes, restore physics + this._clean(); + var node = this.selectionHandler._getSelectedNode(); + if (node !== undefined) { + this.inMode = 'editNode'; + if (typeof this.options.editNode === 'function') { + if (node.isCluster !== true) { + var data = util.deepExtend({}, node.options, true); + data.x = node.x; + data.y = node.y; + + if (this.options.editNode.length === 2) { + this.options.editNode(data, function (finalizedData) { + if (finalizedData !== null && finalizedData !== undefined && _this2.inMode === 'editNode') { + // if for whatever reason the mode has changes (due to dataset change) disregard the callback) { + _this2.body.data.nodes.getDataSet().update(finalizedData); + } + _this2.showManipulatorToolbar(); + }); + } else { + throw new Error('The function for edit does not support two arguments (data, callback)'); + } + } else { + alert(this.options.locales[this.options.locale]['editClusterError'] || this.options.locales['en']['editClusterError']); + } + } else { + throw new Error('No function has been configured to handle the editing of nodes.'); + } + } else { + this.showManipulatorToolbar(); + } + } + + /** + * create the toolbar to connect nodes + * + * @private + */ + }, { + key: 'addEdgeMode', + value: function addEdgeMode() { + // when using the gui, enable edit mode if it wasnt already. + if (this.editMode !== true) { + this.enableEditMode(); + } + + // restore the state of any bound functions or events, remove control nodes, restore physics + this._clean(); + + this.inMode = 'addEdge'; + if (this.guiEnabled === true) { + var locale = this.options.locales[this.options.locale]; + this.manipulationDOM = {}; + this._createBackButton(locale); + this._createSeperator(); + this._createDescription(locale['edgeDescription'] || this.options.locales['en']['edgeDescription']); + + // bind the close button + this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this)); + } + + // temporarily overload functions + this._temporaryBindUI('onTouch', this._handleConnect.bind(this)); + this._temporaryBindUI('onDragEnd', this._finishConnect.bind(this)); + this._temporaryBindUI('onDrag', this._dragControlNode.bind(this)); + this._temporaryBindUI('onRelease', this._finishConnect.bind(this)); + + this._temporaryBindUI('onDragStart', function () {}); + this._temporaryBindUI('onHold', function () {}); + } + + /** + * create the toolbar to edit edges + * + * @private + */ + }, { + key: 'editEdgeMode', + value: function editEdgeMode() { + var _this3 = this; + + // when using the gui, enable edit mode if it wasnt already. + if (this.editMode !== true) { + this.enableEditMode(); + } + + // restore the state of any bound functions or events, remove control nodes, restore physics + this._clean(); + + this.inMode = 'editEdge'; + if (this.guiEnabled === true) { + var locale = this.options.locales[this.options.locale]; + this.manipulationDOM = {}; + this._createBackButton(locale); + this._createSeperator(); + this._createDescription(locale['editEdgeDescription'] || this.options.locales['en']['editEdgeDescription']); + + // bind the close button + this._bindHammerToDiv(this.closeDiv, this.toggleEditMode.bind(this)); + } + + this.edgeBeingEditedId = this.selectionHandler.getSelectedEdges()[0]; + if (this.edgeBeingEditedId !== undefined) { + (function () { + var edge = _this3.body.edges[_this3.edgeBeingEditedId]; + + // create control nodes + var controlNodeFrom = _this3._getNewTargetNode(edge.from.x, edge.from.y); + var controlNodeTo = _this3._getNewTargetNode(edge.to.x, edge.to.y); + + _this3.temporaryIds.nodes.push(controlNodeFrom.id); + _this3.temporaryIds.nodes.push(controlNodeTo.id); + + _this3.body.nodes[controlNodeFrom.id] = controlNodeFrom; + _this3.body.nodeIndices.push(controlNodeFrom.id); + _this3.body.nodes[controlNodeTo.id] = controlNodeTo; + _this3.body.nodeIndices.push(controlNodeTo.id); + + // temporarily overload UI functions, cleaned up automatically because of _temporaryBindUI + _this3._temporaryBindUI('onTouch', _this3._controlNodeTouch.bind(_this3)); // used to get the position + _this3._temporaryBindUI('onTap', function () {}); // disabled + _this3._temporaryBindUI('onHold', function () {}); // disabled + _this3._temporaryBindUI('onDragStart', _this3._controlNodeDragStart.bind(_this3)); // used to select control node + _this3._temporaryBindUI('onDrag', _this3._controlNodeDrag.bind(_this3)); // used to drag control node + _this3._temporaryBindUI('onDragEnd', _this3._controlNodeDragEnd.bind(_this3)); // used to connect or revert control nodes + _this3._temporaryBindUI('onMouseMove', function () {}); // disabled + + // create function to position control nodes correctly on movement + // automatically cleaned up because we use the temporary bind + _this3._temporaryBindEvent('beforeDrawing', function (ctx) { + var positions = edge.edgeType.findBorderPositions(ctx); + if (controlNodeFrom.selected === false) { + controlNodeFrom.x = positions.from.x; + controlNodeFrom.y = positions.from.y; + } + if (controlNodeTo.selected === false) { + controlNodeTo.x = positions.to.x; + controlNodeTo.y = positions.to.y; + } + }); + + _this3.body.emitter.emit('_redraw'); + })(); + } else { + this.showManipulatorToolbar(); + } + } + + /** + * delete everything in the selection + * + * @private + */ + }, { + key: 'deleteSelected', + value: function deleteSelected() { + var _this4 = this; + + // when using the gui, enable edit mode if it wasnt already. + if (this.editMode !== true) { + this.enableEditMode(); + } + + // restore the state of any bound functions or events, remove control nodes, restore physics + this._clean(); + + this.inMode = 'delete'; + var selectedNodes = this.selectionHandler.getSelectedNodes(); + var selectedEdges = this.selectionHandler.getSelectedEdges(); + var deleteFunction = undefined; + if (selectedNodes.length > 0) { + for (var i = 0; i < selectedNodes.length; i++) { + if (this.body.nodes[selectedNodes[i]].isCluster === true) { + alert(this.options.locales[this.options.locale]['deleteClusterError'] || this.options.locales['en']['deleteClusterError']); + return; + } + } + + if (typeof this.options.deleteNode === 'function') { + deleteFunction = this.options.deleteNode; + } + } else if (selectedEdges.length > 0) { + if (typeof this.options.deleteEdge === 'function') { + deleteFunction = this.options.deleteEdge; + } + } + + if (typeof deleteFunction === 'function') { + var data = { nodes: selectedNodes, edges: selectedEdges }; + if (deleteFunction.length === 2) { + deleteFunction(data, function (finalizedData) { + if (finalizedData !== null && finalizedData !== undefined && _this4.inMode === 'delete') { + // if for whatever reason the mode has changes (due to dataset change) disregard the callback) { + _this4.body.data.edges.getDataSet().remove(finalizedData.edges); + _this4.body.data.nodes.getDataSet().remove(finalizedData.nodes); + _this4.body.emitter.emit('startSimulation'); + _this4.showManipulatorToolbar(); + } else { + _this4.body.emitter.emit('startSimulation'); + _this4.showManipulatorToolbar(); + } + }); + } else { + throw new Error('The function for delete does not support two arguments (data, callback)'); + } + } else { + this.body.data.edges.getDataSet().remove(selectedEdges); + this.body.data.nodes.getDataSet().remove(selectedNodes); + this.body.emitter.emit('startSimulation'); + this.showManipulatorToolbar(); + } + } + + //********************************************** PRIVATE ***************************************// + + /** + * draw or remove the DOM + * @private + */ + }, { + key: '_setup', + value: function _setup() { + if (this.options.enabled === true) { + // Enable the GUI + this.guiEnabled = true; + + this._createWrappers(); + if (this.editMode === false) { + this._createEditButton(); + } else { + this.showManipulatorToolbar(); + } + } else { + this._removeManipulationDOM(); + + // disable the gui + this.guiEnabled = false; + } + } + + /** + * create the div overlays that contain the DOM + * @private + */ + }, { + key: '_createWrappers', + value: function _createWrappers() { + // load the manipulator HTML elements. All styling done in css. + if (this.manipulationDiv === undefined) { + this.manipulationDiv = document.createElement('div'); + this.manipulationDiv.className = 'vis-manipulation'; + if (this.editMode === true) { + this.manipulationDiv.style.display = 'block'; + } else { + this.manipulationDiv.style.display = 'none'; + } + this.canvas.frame.appendChild(this.manipulationDiv); + } + + // container for the edit button. + if (this.editModeDiv === undefined) { + this.editModeDiv = document.createElement('div'); + this.editModeDiv.className = 'vis-edit-mode'; + if (this.editMode === true) { + this.editModeDiv.style.display = 'none'; + } else { + this.editModeDiv.style.display = 'block'; + } + this.canvas.frame.appendChild(this.editModeDiv); + } + + // container for the close div button + if (this.closeDiv === undefined) { + this.closeDiv = document.createElement('div'); + this.closeDiv.className = 'vis-close'; + this.closeDiv.style.display = this.manipulationDiv.style.display; + this.canvas.frame.appendChild(this.closeDiv); + } + } + + /** + * generate a new target node. Used for creating new edges and editing edges + * @param x + * @param y + * @returns {*} + * @private + */ + }, { + key: '_getNewTargetNode', + value: function _getNewTargetNode(x, y) { + var controlNodeStyle = util.deepExtend({}, this.options.controlNodeStyle); + + controlNodeStyle.id = 'targetNode' + util.randomUUID(); + controlNodeStyle.hidden = false; + controlNodeStyle.physics = false; + controlNodeStyle.x = x; + controlNodeStyle.y = y; + + return this.body.functions.createNode(controlNodeStyle); + } + + /** + * Create the edit button + */ + }, { + key: '_createEditButton', + value: function _createEditButton() { + // restore everything to it's original state (if applicable) + this._clean(); + + // reset the manipulationDOM + this.manipulationDOM = {}; + + // empty the editModeDiv + util.recursiveDOMDelete(this.editModeDiv); + + // create the contents for the editMode button + var locale = this.options.locales[this.options.locale]; + var button = this._createButton('editMode', 'vis-button vis-edit vis-edit-mode', locale['edit'] || this.options.locales['en']['edit']); + this.editModeDiv.appendChild(button); + + // bind a hammer listener to the button, calling the function toggleEditMode. + this._bindHammerToDiv(button, this.toggleEditMode.bind(this)); + } + + /** + * this function cleans up after everything this module does. Temporary elements, functions and events are removed, physics restored, hammers removed. + * @private + */ + }, { + key: '_clean', + value: function _clean() { + // not in mode + this.inMode = false; + + // _clean the divs + if (this.guiEnabled === true) { + util.recursiveDOMDelete(this.editModeDiv); + util.recursiveDOMDelete(this.manipulationDiv); + + // removes all the bindings and overloads + this._cleanManipulatorHammers(); + } + + // remove temporary nodes and edges + this._cleanupTemporaryNodesAndEdges(); + + // restore overloaded UI functions + this._unbindTemporaryUIs(); + + // remove the temporaryEventFunctions + this._unbindTemporaryEvents(); + + // restore the physics if required + this.body.emitter.emit('restorePhysics'); + } + + /** + * Each dom element has it's own hammer. They are stored in this.manipulationHammers. This cleans them up. + * @private + */ + }, { + key: '_cleanManipulatorHammers', + value: function _cleanManipulatorHammers() { + // _clean hammer bindings + if (this.manipulationHammers.length != 0) { + for (var i = 0; i < this.manipulationHammers.length; i++) { + this.manipulationHammers[i].destroy(); + } + this.manipulationHammers = []; + } + } + + /** + * Remove all DOM elements created by this module. + * @private + */ + }, { + key: '_removeManipulationDOM', + value: function _removeManipulationDOM() { + // removes all the bindings and overloads + this._clean(); + + // empty the manipulation divs + util.recursiveDOMDelete(this.manipulationDiv); + util.recursiveDOMDelete(this.editModeDiv); + util.recursiveDOMDelete(this.closeDiv); + + // remove the manipulation divs + if (this.manipulationDiv) { + this.canvas.frame.removeChild(this.manipulationDiv); + } + if (this.editModeDiv) { + this.canvas.frame.removeChild(this.editModeDiv); + } + if (this.closeDiv) { + this.canvas.frame.removeChild(this.manipulationDiv); + } + + // set the references to undefined + this.manipulationDiv = undefined; + this.editModeDiv = undefined; + this.closeDiv = undefined; + } + + /** + * create a seperator line. the index is to differentiate in the manipulation dom + * @param index + * @private + */ + }, { + key: '_createSeperator', + value: function _createSeperator() { + var index = arguments.length <= 0 || arguments[0] === undefined ? 1 : arguments[0]; + + this.manipulationDOM['seperatorLineDiv' + index] = document.createElement('div'); + this.manipulationDOM['seperatorLineDiv' + index].className = 'vis-separator-line'; + this.manipulationDiv.appendChild(this.manipulationDOM['seperatorLineDiv' + index]); + } + + // ---------------------- DOM functions for buttons --------------------------// + + }, { + key: '_createAddNodeButton', + value: function _createAddNodeButton(locale) { + var button = this._createButton('addNode', 'vis-button vis-add', locale['addNode'] || this.options.locales['en']['addNode']); + this.manipulationDiv.appendChild(button); + this._bindHammerToDiv(button, this.addNodeMode.bind(this)); + } + }, { + key: '_createAddEdgeButton', + value: function _createAddEdgeButton(locale) { + var button = this._createButton('addEdge', 'vis-button vis-connect', locale['addEdge'] || this.options.locales['en']['addEdge']); + this.manipulationDiv.appendChild(button); + this._bindHammerToDiv(button, this.addEdgeMode.bind(this)); + } + }, { + key: '_createEditNodeButton', + value: function _createEditNodeButton(locale) { + var button = this._createButton('editNode', 'vis-button vis-edit', locale['editNode'] || this.options.locales['en']['editNode']); + this.manipulationDiv.appendChild(button); + this._bindHammerToDiv(button, this.editNode.bind(this)); + } + }, { + key: '_createEditEdgeButton', + value: function _createEditEdgeButton(locale) { + var button = this._createButton('editEdge', 'vis-button vis-edit', locale['editEdge'] || this.options.locales['en']['editEdge']); + this.manipulationDiv.appendChild(button); + this._bindHammerToDiv(button, this.editEdgeMode.bind(this)); + } + }, { + key: '_createDeleteButton', + value: function _createDeleteButton(locale) { + var button = this._createButton('delete', 'vis-button vis-delete', locale['del'] || this.options.locales['en']['del']); + this.manipulationDiv.appendChild(button); + this._bindHammerToDiv(button, this.deleteSelected.bind(this)); + } + }, { + key: '_createBackButton', + value: function _createBackButton(locale) { + var button = this._createButton('back', 'vis-button vis-back', locale['back'] || this.options.locales['en']['back']); + this.manipulationDiv.appendChild(button); + this._bindHammerToDiv(button, this.showManipulatorToolbar.bind(this)); + } + }, { + key: '_createButton', + value: function _createButton(id, className, label) { + var labelClassName = arguments.length <= 3 || arguments[3] === undefined ? 'vis-label' : arguments[3]; + + this.manipulationDOM[id + 'Div'] = document.createElement('div'); + this.manipulationDOM[id + 'Div'].className = className; + this.manipulationDOM[id + 'Label'] = document.createElement('div'); + this.manipulationDOM[id + 'Label'].className = labelClassName; + this.manipulationDOM[id + 'Label'].innerHTML = label; + this.manipulationDOM[id + 'Div'].appendChild(this.manipulationDOM[id + 'Label']); + return this.manipulationDOM[id + 'Div']; + } + }, { + key: '_createDescription', + value: function _createDescription(label) { + this.manipulationDiv.appendChild(this._createButton('description', 'vis-button vis-none', label)); + } + + // -------------------------- End of DOM functions for buttons ------------------------------// + + /** + * this binds an event until cleanup by the clean functions. + * @param event + * @param newFunction + * @private + */ + }, { + key: '_temporaryBindEvent', + value: function _temporaryBindEvent(event, newFunction) { + this.temporaryEventFunctions.push({ event: event, boundFunction: newFunction }); + this.body.emitter.on(event, newFunction); + } + + /** + * this overrides an UI function until cleanup by the clean function + * @param UIfunctionName + * @param newFunction + * @private + */ + }, { + key: '_temporaryBindUI', + value: function _temporaryBindUI(UIfunctionName, newFunction) { + if (this.body.eventListeners[UIfunctionName] !== undefined) { + this.temporaryUIFunctions[UIfunctionName] = this.body.eventListeners[UIfunctionName]; + this.body.eventListeners[UIfunctionName] = newFunction; + } else { + throw new Error('This UI function does not exist. Typo? You tried: ' + UIfunctionName + ' possible are: ' + JSON.stringify(Object.keys(this.body.eventListeners))); + } + } + + /** + * Restore the overridden UI functions to their original state. + * + * @private + */ + }, { + key: '_unbindTemporaryUIs', + value: function _unbindTemporaryUIs() { + for (var functionName in this.temporaryUIFunctions) { + if (this.temporaryUIFunctions.hasOwnProperty(functionName)) { + this.body.eventListeners[functionName] = this.temporaryUIFunctions[functionName]; + delete this.temporaryUIFunctions[functionName]; + } + } + this.temporaryUIFunctions = {}; + } + + /** + * Unbind the events created by _temporaryBindEvent + * @private + */ + }, { + key: '_unbindTemporaryEvents', + value: function _unbindTemporaryEvents() { + for (var i = 0; i < this.temporaryEventFunctions.length; i++) { + var eventName = this.temporaryEventFunctions[i].event; + var boundFunction = this.temporaryEventFunctions[i].boundFunction; + this.body.emitter.off(eventName, boundFunction); + } + this.temporaryEventFunctions = []; + } + + /** + * Bind an hammer instance to a DOM element. + * @param domElement + * @param funct + */ + }, { + key: '_bindHammerToDiv', + value: function _bindHammerToDiv(domElement, boundFunction) { + var hammer = new Hammer(domElement, {}); + hammerUtil.onTouch(hammer, boundFunction); + this.manipulationHammers.push(hammer); + } + + /** + * Neatly clean up temporary edges and nodes + * @private + */ + }, { + key: '_cleanupTemporaryNodesAndEdges', + value: function _cleanupTemporaryNodesAndEdges() { + // _clean temporary edges + for (var i = 0; i < this.temporaryIds.edges.length; i++) { + this.body.edges[this.temporaryIds.edges[i]].disconnect(); + delete this.body.edges[this.temporaryIds.edges[i]]; + var indexTempEdge = this.body.edgeIndices.indexOf(this.temporaryIds.edges[i]); + if (indexTempEdge !== -1) { + this.body.edgeIndices.splice(indexTempEdge, 1); + } + } + + // _clean temporary nodes + for (var i = 0; i < this.temporaryIds.nodes.length; i++) { + delete this.body.nodes[this.temporaryIds.nodes[i]]; + var indexTempNode = this.body.nodeIndices.indexOf(this.temporaryIds.nodes[i]); + if (indexTempNode !== -1) { + this.body.nodeIndices.splice(indexTempNode, 1); + } + } + + this.temporaryIds = { nodes: [], edges: [] }; + } + + // ------------------------------------------ EDIT EDGE FUNCTIONS -----------------------------------------// + + /** + * the touch is used to get the position of the initial click + * @param event + * @private + */ + }, { + key: '_controlNodeTouch', + value: function _controlNodeTouch(event) { + this.selectionHandler.unselectAll(); + this.lastTouch = this.body.functions.getPointer(event.center); + this.lastTouch.translation = util.extend({}, this.body.view.translation); // copy the object + } + + /** + * the drag start is used to mark one of the control nodes as selected. + * @param event + * @private + */ + }, { + key: '_controlNodeDragStart', + value: function _controlNodeDragStart(event) { + var pointer = this.lastTouch; + var pointerObj = this.selectionHandler._pointerToPositionObject(pointer); + var from = this.body.nodes[this.temporaryIds.nodes[0]]; + var to = this.body.nodes[this.temporaryIds.nodes[1]]; + var edge = this.body.edges[this.edgeBeingEditedId]; + this.selectedControlNode = undefined; + + var fromSelect = from.isOverlappingWith(pointerObj); + var toSelect = to.isOverlappingWith(pointerObj); + + if (fromSelect === true) { + this.selectedControlNode = from; + edge.edgeType.from = from; + } else if (toSelect === true) { + this.selectedControlNode = to; + edge.edgeType.to = to; + } + + this.body.emitter.emit('_redraw'); + } + + /** + * dragging the control nodes or the canvas + * @param event + * @private + */ + }, { + key: '_controlNodeDrag', + value: function _controlNodeDrag(event) { + this.body.emitter.emit('disablePhysics'); + var pointer = this.body.functions.getPointer(event.center); + var pos = this.canvas.DOMtoCanvas(pointer); + + if (this.selectedControlNode !== undefined) { + this.selectedControlNode.x = pos.x; + this.selectedControlNode.y = pos.y; + } else { + // if the drag was not started properly because the click started outside the network div, start it now. + var diffX = pointer.x - this.lastTouch.x; + var diffY = pointer.y - this.lastTouch.y; + this.body.view.translation = { x: this.lastTouch.translation.x + diffX, y: this.lastTouch.translation.y + diffY }; + } + this.body.emitter.emit('_redraw'); + } + + /** + * connecting or restoring the control nodes. + * @param event + * @private + */ + }, { + key: '_controlNodeDragEnd', + value: function _controlNodeDragEnd(event) { + var pointer = this.body.functions.getPointer(event.center); + var pointerObj = this.selectionHandler._pointerToPositionObject(pointer); + var edge = this.body.edges[this.edgeBeingEditedId]; + + var overlappingNodeIds = this.selectionHandler._getAllNodesOverlappingWith(pointerObj); + var node = undefined; + for (var i = overlappingNodeIds.length - 1; i >= 0; i--) { + if (overlappingNodeIds[i] !== this.selectedControlNode.id) { + node = this.body.nodes[overlappingNodeIds[i]]; + break; + } + } + + // perform the connection + if (node !== undefined && this.selectedControlNode !== undefined) { + if (node.isCluster === true) { + alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError']); + } else { + var from = this.body.nodes[this.temporaryIds.nodes[0]]; + if (this.selectedControlNode.id === from.id) { + this._performEditEdge(node.id, edge.to.id); + } else { + this._performEditEdge(edge.from.id, node.id); + } + } + } else { + edge.updateEdgeType(); + this.body.emitter.emit('restorePhysics'); + } + this.body.emitter.emit('_redraw'); + } + + // ------------------------------------ END OF EDIT EDGE FUNCTIONS -----------------------------------------// + + // ------------------------------------------- ADD EDGE FUNCTIONS -----------------------------------------// + /** + * the function bound to the selection event. It checks if you want to connect a cluster and changes the description + * to walk the user through the process. + * + * @private + */ + }, { + key: '_handleConnect', + value: function _handleConnect(event) { + // check to avoid double fireing of this function. + if (new Date().valueOf() - this.touchTime > 100) { + this.lastTouch = this.body.functions.getPointer(event.center); + this.lastTouch.translation = util.extend({}, this.body.view.translation); // copy the object + + var pointer = this.lastTouch; + var node = this.selectionHandler.getNodeAt(pointer); + + if (node !== undefined) { + if (node.isCluster === true) { + alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError']); + } else { + // create a node the temporary line can look at + var targetNode = this._getNewTargetNode(node.x, node.y); + this.body.nodes[targetNode.id] = targetNode; + this.body.nodeIndices.push(targetNode.id); + + // create a temporary edge + var connectionEdge = this.body.functions.createEdge({ + id: 'connectionEdge' + util.randomUUID(), + from: node.id, + to: targetNode.id, + physics: false, + smooth: { + enabled: true, + type: 'continuous', + roundness: 0.5 + } + }); + this.body.edges[connectionEdge.id] = connectionEdge; + this.body.edgeIndices.push(connectionEdge.id); + + this.temporaryIds.nodes.push(targetNode.id); + this.temporaryIds.edges.push(connectionEdge.id); + } + } + this.touchTime = new Date().valueOf(); + } + } + }, { + key: '_dragControlNode', + value: function _dragControlNode(event) { + var pointer = this.body.functions.getPointer(event.center); + if (this.temporaryIds.nodes[0] !== undefined) { + var targetNode = this.body.nodes[this.temporaryIds.nodes[0]]; // there is only one temp node in the add edge mode. + targetNode.x = this.canvas._XconvertDOMtoCanvas(pointer.x); + targetNode.y = this.canvas._YconvertDOMtoCanvas(pointer.y); + this.body.emitter.emit('_redraw'); + } else { + var diffX = pointer.x - this.lastTouch.x; + var diffY = pointer.y - this.lastTouch.y; + this.body.view.translation = { x: this.lastTouch.translation.x + diffX, y: this.lastTouch.translation.y + diffY }; + } + } + + /** + * Connect the new edge to the target if one exists, otherwise remove temp line + * @param event + * @private + */ + }, { + key: '_finishConnect', + value: function _finishConnect(event) { + var pointer = this.body.functions.getPointer(event.center); + var pointerObj = this.selectionHandler._pointerToPositionObject(pointer); + + // remember the edge id + var connectFromId = undefined; + if (this.temporaryIds.edges[0] !== undefined) { + connectFromId = this.body.edges[this.temporaryIds.edges[0]].fromId; + } + + // get the overlapping node but NOT the temporary node; + var overlappingNodeIds = this.selectionHandler._getAllNodesOverlappingWith(pointerObj); + var node = undefined; + for (var i = overlappingNodeIds.length - 1; i >= 0; i--) { + // if the node id is NOT a temporary node, accept the node. + if (this.temporaryIds.nodes.indexOf(overlappingNodeIds[i]) === -1) { + node = this.body.nodes[overlappingNodeIds[i]]; + break; + } + } + + // clean temporary nodes and edges. + this._cleanupTemporaryNodesAndEdges(); + + // perform the connection + if (node !== undefined) { + if (node.isCluster === true) { + alert(this.options.locales[this.options.locale]['createEdgeError'] || this.options.locales['en']['createEdgeError']); + } else { + if (this.body.nodes[connectFromId] !== undefined && this.body.nodes[node.id] !== undefined) { + this._performAddEdge(connectFromId, node.id); + } + } + } + this.body.emitter.emit('_redraw'); + } + + // --------------------------------------- END OF ADD EDGE FUNCTIONS -------------------------------------// + + // ------------------------------ Performing all the actual data manipulation ------------------------// + + /** + * Adds a node on the specified location + */ + }, { + key: '_performAddNode', + value: function _performAddNode(clickData) { + var _this5 = this; + + var defaultData = { + id: util.randomUUID(), + x: clickData.pointer.canvas.x, + y: clickData.pointer.canvas.y, + label: 'new' + }; + + if (typeof this.options.addNode === 'function') { + if (this.options.addNode.length === 2) { + this.options.addNode(defaultData, function (finalizedData) { + if (finalizedData !== null && finalizedData !== undefined && _this5.inMode === 'addNode') { + // if for whatever reason the mode has changes (due to dataset change) disregard the callback + _this5.body.data.nodes.getDataSet().add(finalizedData); + _this5.showManipulatorToolbar(); + } + }); + } else { + throw new Error('The function for add does not support two arguments (data,callback)'); + this.showManipulatorToolbar(); + } + } else { + this.body.data.nodes.getDataSet().add(defaultData); + this.showManipulatorToolbar(); + } + } + + /** + * connect two nodes with a new edge. + * + * @private + */ + }, { + key: '_performAddEdge', + value: function _performAddEdge(sourceNodeId, targetNodeId) { + var _this6 = this; + + var defaultData = { from: sourceNodeId, to: targetNodeId }; + if (typeof this.options.addEdge === 'function') { + if (this.options.addEdge.length === 2) { + this.options.addEdge(defaultData, function (finalizedData) { + if (finalizedData !== null && finalizedData !== undefined && _this6.inMode === 'addEdge') { + // if for whatever reason the mode has changes (due to dataset change) disregard the callback + _this6.body.data.edges.getDataSet().add(finalizedData); + _this6.selectionHandler.unselectAll(); + _this6.showManipulatorToolbar(); + } + }); + } else { + throw new Error('The function for connect does not support two arguments (data,callback)'); + } + } else { + this.body.data.edges.getDataSet().add(defaultData); + this.selectionHandler.unselectAll(); + this.showManipulatorToolbar(); + } + } + + /** + * connect two nodes with a new edge. + * + * @private + */ + }, { + key: '_performEditEdge', + value: function _performEditEdge(sourceNodeId, targetNodeId) { + var _this7 = this; + + var defaultData = { id: this.edgeBeingEditedId, from: sourceNodeId, to: targetNodeId }; + if (typeof this.options.editEdge === 'function') { + if (this.options.editEdge.length === 2) { + this.options.editEdge(defaultData, function (finalizedData) { + if (finalizedData === null || finalizedData === undefined || _this7.inMode !== 'editEdge') { + // if for whatever reason the mode has changes (due to dataset change) disregard the callback) { + _this7.body.edges[defaultData.id].updateEdgeType(); + _this7.body.emitter.emit('_redraw'); + } else { + _this7.body.data.edges.getDataSet().update(finalizedData); + _this7.selectionHandler.unselectAll(); + _this7.showManipulatorToolbar(); + } + }); + } else { + throw new Error('The function for edit does not support two arguments (data, callback)'); + } + } else { + this.body.data.edges.getDataSet().update(defaultData); + this.selectionHandler.unselectAll(); + this.showManipulatorToolbar(); + } + } + }]); + + return ManipulationSystem; + })(); + + exports['default'] = ManipulationSystem; + module.exports = exports['default']; + +/***/ }, +/* 111 */ +/***/ function(module, exports) { + + /** + * This object contains all possible options. It will check if the types are correct, if required if the option is one + * of the allowed values. + * + * __any__ means that the name of the property does not matter. + * __type__ is a required field for all objects and contains the allowed types of all objects + */ + 'use strict'; + + Object.defineProperty(exports, '__esModule', { + value: true + }); + var string = 'string'; + var boolean = 'boolean'; + var number = 'number'; + var array = 'array'; + var object = 'object'; // should only be in a __type__ property + var dom = 'dom'; + var any = 'any'; + + var allOptions = { + configure: { + enabled: { boolean: boolean }, + filter: { boolean: boolean, string: string, array: array, 'function': 'function' }, + container: { dom: dom }, + showButton: { boolean: boolean }, + __type__: { object: object, boolean: boolean, string: string, array: array, 'function': 'function' } + }, + edges: { + arrows: { + to: { enabled: { boolean: boolean }, scaleFactor: { number: number }, __type__: { object: object, boolean: boolean } }, + middle: { enabled: { boolean: boolean }, scaleFactor: { number: number }, __type__: { object: object, boolean: boolean } }, + from: { enabled: { boolean: boolean }, scaleFactor: { number: number }, __type__: { object: object, boolean: boolean } }, + __type__: { string: ['from', 'to', 'middle'], object: object } + }, + color: { + color: { string: string }, + highlight: { string: string }, + hover: { string: string }, + inherit: { string: ['from', 'to', 'both'], boolean: boolean }, + opacity: { number: number }, + __type__: { object: object, string: string } + }, + dashes: { boolean: boolean, array: array }, + font: { + color: { string: string }, + size: { number: number }, // px + face: { string: string }, + background: { string: string }, + strokeWidth: { number: number }, // px + strokeColor: { string: string }, + align: { string: ['horizontal', 'top', 'middle', 'bottom'] }, + __type__: { object: object, string: string } + }, + hidden: { boolean: boolean }, + hoverWidth: { 'function': 'function', number: number }, + label: { string: string, 'undefined': 'undefined' }, + labelHighlightBold: { boolean: boolean }, + length: { number: number, 'undefined': 'undefined' }, + physics: { boolean: boolean }, + scaling: { + min: { number: number }, + max: { number: number }, + label: { + enabled: { boolean: boolean }, + min: { number: number }, + max: { number: number }, + maxVisible: { number: number }, + drawThreshold: { number: number }, + __type__: { object: object, boolean: boolean } + }, + customScalingFunction: { 'function': 'function' }, + __type__: { object: object } + }, + selectionWidth: { 'function': 'function', number: number }, + selfReferenceSize: { number: number }, + shadow: { + enabled: { boolean: boolean }, + size: { number: number }, + x: { number: number }, + y: { number: number }, + __type__: { object: object, boolean: boolean } + }, + smooth: { + enabled: { boolean: boolean }, + type: { string: ['dynamic', 'continuous', 'discrete', 'diagonalCross', 'straightCross', 'horizontal', 'vertical', 'curvedCW', 'curvedCCW', 'cubicBezier'] }, + roundness: { number: number }, + forceDirection: { string: ['horizontal', 'vertical', 'none'], boolean: boolean }, + __type__: { object: object, boolean: boolean } + }, + title: { string: string, 'undefined': 'undefined' }, + width: { number: number }, + value: { number: number, 'undefined': 'undefined' }, + __type__: { object: object } + }, + groups: { + useDefaultGroups: { boolean: boolean }, + __any__: 'get from nodes, will be overwritten below', + __type__: { object: object } + }, + interaction: { + dragNodes: { boolean: boolean }, + dragView: { boolean: boolean }, + hideEdgesOnDrag: { boolean: boolean }, + hideNodesOnDrag: { boolean: boolean }, + hover: { boolean: boolean }, + keyboard: { + enabled: { boolean: boolean }, + speed: { x: { number: number }, y: { number: number }, zoom: { number: number }, __type__: { object: object } }, + bindToWindow: { boolean: boolean }, + __type__: { object: object, boolean: boolean } + }, + multiselect: { boolean: boolean }, + navigationButtons: { boolean: boolean }, + selectable: { boolean: boolean }, + selectConnectedEdges: { boolean: boolean }, + hoverConnectedEdges: { boolean: boolean }, + tooltipDelay: { number: number }, + zoomView: { boolean: boolean }, + __type__: { object: object } + }, + layout: { + randomSeed: { 'undefined': 'undefined', number: number }, + improvedLayout: { boolean: boolean }, + hierarchical: { + enabled: { boolean: boolean }, + levelSeparation: { number: number }, + direction: { string: ['UD', 'DU', 'LR', 'RL'] }, // UD, DU, LR, RL + sortMethod: { string: ['hubsize', 'directed'] }, // hubsize, directed + __type__: { object: object, boolean: boolean } + }, + __type__: { object: object } + }, + manipulation: { + enabled: { boolean: boolean }, + initiallyActive: { boolean: boolean }, + addNode: { boolean: boolean, 'function': 'function' }, + addEdge: { boolean: boolean, 'function': 'function' }, + editNode: { 'function': 'function' }, + editEdge: { boolean: boolean, 'function': 'function' }, + deleteNode: { boolean: boolean, 'function': 'function' }, + deleteEdge: { boolean: boolean, 'function': 'function' }, + controlNodeStyle: 'get from nodes, will be overwritten below', + __type__: { object: object, boolean: boolean } + }, + nodes: { + borderWidth: { number: number }, + borderWidthSelected: { number: number, 'undefined': 'undefined' }, + brokenImage: { string: string, 'undefined': 'undefined' }, + color: { + border: { string: string }, + background: { string: string }, + highlight: { + border: { string: string }, + background: { string: string }, + __type__: { object: object, string: string } + }, + hover: { + border: { string: string }, + background: { string: string }, + __type__: { object: object, string: string } + }, + __type__: { object: object, string: string } + }, + fixed: { + x: { boolean: boolean }, + y: { boolean: boolean }, + __type__: { object: object, boolean: boolean } + }, + font: { + color: { string: string }, + size: { number: number }, // px + face: { string: string }, + background: { string: string }, + strokeWidth: { number: number }, // px + strokeColor: { string: string }, + __type__: { object: object, string: string } + }, + group: { string: string, number: number, 'undefined': 'undefined' }, + hidden: { boolean: boolean }, + icon: { + face: { string: string }, + code: { string: string }, //'\uf007', + size: { number: number }, //50, + color: { string: string }, + __type__: { object: object } + }, + id: { string: string, number: number }, + image: { string: string, 'undefined': 'undefined' }, // --> URL + label: { string: string, 'undefined': 'undefined' }, + labelHighlightBold: { boolean: boolean }, + level: { number: number, 'undefined': 'undefined' }, + mass: { number: number }, + physics: { boolean: boolean }, + scaling: { + min: { number: number }, + max: { number: number }, + label: { + enabled: { boolean: boolean }, + min: { number: number }, + max: { number: number }, + maxVisible: { number: number }, + drawThreshold: { number: number }, + __type__: { object: object, boolean: boolean } + }, + customScalingFunction: { 'function': 'function' }, + __type__: { object: object } + }, + shadow: { + enabled: { boolean: boolean }, + size: { number: number }, + x: { number: number }, + y: { number: number }, + __type__: { object: object, boolean: boolean } + }, + shape: { string: ['ellipse', 'circle', 'database', 'box', 'text', 'image', 'circularImage', 'diamond', 'dot', 'star', 'triangle', 'triangleDown', 'square', 'icon'] }, + shapeProperties: { + borderDashes: { boolean: boolean, array: array }, + borderRadius: { number: number }, + useImageSize: { boolean: boolean }, + __type__: { object: object } + }, + size: { number: number }, + title: { string: string, 'undefined': 'undefined' }, + value: { number: number, 'undefined': 'undefined' }, + x: { number: number }, + y: { number: number }, + __type__: { object: object } + }, + physics: { + enabled: { boolean: boolean }, + barnesHut: { + gravitationalConstant: { number: number }, + centralGravity: { number: number }, + springLength: { number: number }, + springConstant: { number: number }, + damping: { number: number }, + avoidOverlap: { number: number }, + __type__: { object: object } + }, + forceAtlas2Based: { + gravitationalConstant: { number: number }, + centralGravity: { number: number }, + springLength: { number: number }, + springConstant: { number: number }, + damping: { number: number }, + avoidOverlap: { number: number }, + __type__: { object: object } + }, + repulsion: { + centralGravity: { number: number }, + springLength: { number: number }, + springConstant: { number: number }, + nodeDistance: { number: number }, + damping: { number: number }, + __type__: { object: object } + }, + hierarchicalRepulsion: { + centralGravity: { number: number }, + springLength: { number: number }, + springConstant: { number: number }, + nodeDistance: { number: number }, + damping: { number: number }, + __type__: { object: object } + }, + maxVelocity: { number: number }, + minVelocity: { number: number }, // px/s + solver: { string: ['barnesHut', 'repulsion', 'hierarchicalRepulsion', 'forceAtlas2Based'] }, + stabilization: { + enabled: { boolean: boolean }, + iterations: { number: number }, // maximum number of iteration to stabilize + updateInterval: { number: number }, + onlyDynamicEdges: { boolean: boolean }, + fit: { boolean: boolean }, + __type__: { object: object, boolean: boolean } + }, + timestep: { number: number }, + adaptiveTimestep: { boolean: boolean }, + __type__: { object: object, boolean: boolean } + }, + + //globals : + autoResize: { boolean: boolean }, + clickToUse: { boolean: boolean }, + locale: { string: string }, + locales: { + __any__: { any: any }, + __type__: { object: object } + }, + height: { string: string }, + width: { string: string }, + __type__: { object: object } + }; + + allOptions.groups.__any__ = allOptions.nodes; + allOptions.manipulation.controlNodeStyle = allOptions.nodes; + + var configureOptions = { + nodes: { + borderWidth: [1, 0, 10, 1], + borderWidthSelected: [2, 0, 10, 1], + color: { + border: ['color', '#2B7CE9'], + background: ['color', '#97C2FC'], + highlight: { + border: ['color', '#2B7CE9'], + background: ['color', '#D2E5FF'] + }, + hover: { + border: ['color', '#2B7CE9'], + background: ['color', '#D2E5FF'] + } + }, + fixed: { + x: false, + y: false + }, + font: { + color: ['color', '#343434'], + size: [14, 0, 100, 1], // px + face: ['arial', 'verdana', 'tahoma'], + background: ['color', 'none'], + strokeWidth: [0, 0, 50, 1], // px + strokeColor: ['color', '#ffffff'] + }, + //group: 'string', + hidden: false, + labelHighlightBold: true, + //icon: { + // face: 'string', //'FontAwesome', + // code: 'string', //'\uf007', + // size: [50, 0, 200, 1], //50, + // color: ['color','#2B7CE9'] //'#aa00ff' + //}, + //image: 'string', // --> URL + physics: true, + scaling: { + min: [10, 0, 200, 1], + max: [30, 0, 200, 1], + label: { + enabled: false, + min: [14, 0, 200, 1], + max: [30, 0, 200, 1], + maxVisible: [30, 0, 200, 1], + drawThreshold: [5, 0, 20, 1] + } + }, + shadow: { + enabled: false, + size: [10, 0, 20, 1], + x: [5, -30, 30, 1], + y: [5, -30, 30, 1] + }, + shape: ['ellipse', 'box', 'circle', 'database', 'diamond', 'dot', 'square', 'star', 'text', 'triangle', 'triangleDown'], + shapeProperties: { + borderDashes: false, + borderRadius: [6, 0, 20, 1], + useImageSize: false + }, + size: [25, 0, 200, 1] + }, + edges: { + arrows: { + to: { enabled: false, scaleFactor: [1, 0, 3, 0.05] }, // boolean / {arrowScaleFactor:1} / {enabled: false, arrowScaleFactor:1} + middle: { enabled: false, scaleFactor: [1, 0, 3, 0.05] }, + from: { enabled: false, scaleFactor: [1, 0, 3, 0.05] } + }, + color: { + color: ['color', '#848484'], + highlight: ['color', '#848484'], + hover: ['color', '#848484'], + inherit: ['from', 'to', 'both', true, false], + opacity: [1, 0, 1, 0.05] + }, + dashes: false, + font: { + color: ['color', '#343434'], + size: [14, 0, 100, 1], // px + face: ['arial', 'verdana', 'tahoma'], + background: ['color', 'none'], + strokeWidth: [2, 0, 50, 1], // px + strokeColor: ['color', '#ffffff'], + align: ['horizontal', 'top', 'middle', 'bottom'] + }, + hidden: false, + hoverWidth: [1.5, 0, 5, 0.1], + labelHighlightBold: true, + physics: true, + scaling: { + min: [1, 0, 100, 1], + max: [15, 0, 100, 1], + label: { + enabled: true, + min: [14, 0, 200, 1], + max: [30, 0, 200, 1], + maxVisible: [30, 0, 200, 1], + drawThreshold: [5, 0, 20, 1] + } + }, + selectionWidth: [1.5, 0, 5, 0.1], + selfReferenceSize: [20, 0, 200, 1], + shadow: { + enabled: false, + size: [10, 0, 20, 1], + x: [5, -30, 30, 1], + y: [5, -30, 30, 1] + }, + smooth: { + enabled: true, + type: ['dynamic', 'continuous', 'discrete', 'diagonalCross', 'straightCross', 'horizontal', 'vertical', 'curvedCW', 'curvedCCW', 'cubicBezier'], + forceDirection: ['horizontal', 'vertical', 'none'], + roundness: [0.5, 0, 1, 0.05] + }, + width: [1, 0, 30, 1] + }, + layout: { + //randomSeed: [0, 0, 500, 1], + //improvedLayout: true, + hierarchical: { + enabled: false, + levelSeparation: [150, 20, 500, 5], + direction: ['UD', 'DU', 'LR', 'RL'], // UD, DU, LR, RL + sortMethod: ['hubsize', 'directed'] // hubsize, directed + } + }, + interaction: { + dragNodes: true, + dragView: true, + hideEdgesOnDrag: false, + hideNodesOnDrag: false, + hover: false, + keyboard: { + enabled: false, + speed: { x: [10, 0, 40, 1], y: [10, 0, 40, 1], zoom: [0.02, 0, 0.1, 0.005] }, + bindToWindow: true + }, + multiselect: false, + navigationButtons: false, + selectable: true, + selectConnectedEdges: true, + hoverConnectedEdges: true, + tooltipDelay: [300, 0, 1000, 25], + zoomView: true + }, + manipulation: { + enabled: false, + initiallyActive: false + }, + physics: { + enabled: true, + barnesHut: { + //theta: [0.5, 0.1, 1, 0.05], + gravitationalConstant: [-2000, -30000, 0, 50], + centralGravity: [0.3, 0, 10, 0.05], + springLength: [95, 0, 500, 5], + springConstant: [0.04, 0, 1.2, 0.005], + damping: [0.09, 0, 1, 0.01], + avoidOverlap: [0, 0, 1, 0.01] + }, + forceAtlas2Based: { + //theta: [0.5, 0.1, 1, 0.05], + gravitationalConstant: [-50, -500, 0, 1], + centralGravity: [0.01, 0, 1, 0.005], + springLength: [95, 0, 500, 5], + springConstant: [0.08, 0, 1.2, 0.005], + damping: [0.4, 0, 1, 0.01], + avoidOverlap: [0, 0, 1, 0.01] + }, + repulsion: { + centralGravity: [0.2, 0, 10, 0.05], + springLength: [200, 0, 500, 5], + springConstant: [0.05, 0, 1.2, 0.005], + nodeDistance: [100, 0, 500, 5], + damping: [0.09, 0, 1, 0.01] + }, + hierarchicalRepulsion: { + centralGravity: [0.2, 0, 10, 0.05], + springLength: [100, 0, 500, 5], + springConstant: [0.01, 0, 1.2, 0.005], + nodeDistance: [120, 0, 500, 5], + damping: [0.09, 0, 1, 0.01] + }, + maxVelocity: [50, 0, 150, 1], + minVelocity: [0.1, 0.01, 0.5, 0.01], + solver: ['barnesHut', 'forceAtlas2Based', 'repulsion', 'hierarchicalRepulsion'], + timestep: [0.5, 0.01, 1, 0.01] + }, + //adaptiveTimestep: true + global: { + locale: ['en', 'nl'] + } + }; + + exports.allOptions = allOptions; + exports.configureOptions = configureOptions; + +/***/ }, +/* 112 */ +/***/ function(module, exports, __webpack_require__) { + + /** + * Created by Alex on 8/7/2015. + */ + + // distance finding algorithm + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _slicedToArray = (function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; })(); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var _componentsAlgorithmsFloydWarshallJs = __webpack_require__(113); + + var _componentsAlgorithmsFloydWarshallJs2 = _interopRequireDefault(_componentsAlgorithmsFloydWarshallJs); + + /** + * KamadaKawai positions the nodes initially based on + * + * "AN ALGORITHM FOR DRAWING GENERAL UNDIRECTED GRAPHS" + * -- Tomihisa KAMADA and Satoru KAWAI in 1989 + * + * Possible optimizations in the distance calculation can be implemented. + */ + + var KamadaKawai = (function () { + function KamadaKawai(body, edgeLength, edgeStrength) { + _classCallCheck(this, KamadaKawai); + + this.body = body; + this.springLength = edgeLength; + this.springConstant = edgeStrength; + this.distanceSolver = new _componentsAlgorithmsFloydWarshallJs2["default"](); + } + + /** + * Not sure if needed but can be used to update the spring length and spring constant + * @param options + */ + + _createClass(KamadaKawai, [{ + key: "setOptions", + value: function setOptions(options) { + if (options) { + if (options.springLength) { + this.springLength = options.springLength; + } + if (options.springConstant) { + this.springConstant = options.springConstant; + } + } + } + + /** + * Position the system + * @param nodesArray + * @param edgesArray + */ + }, { + key: "solve", + value: function solve(nodesArray, edgesArray) { + var ignoreClusters = arguments.length <= 2 || arguments[2] === undefined ? false : arguments[2]; + + // get distance matrix + var D_matrix = this.distanceSolver.getDistances(this.body, nodesArray, edgesArray); // distance matrix + + // get the L Matrix + this._createL_matrix(D_matrix); + + // get the K Matrix + this._createK_matrix(D_matrix); + + // calculate positions + var threshold = 0.01; + var innerThreshold = 1; + var iterations = 0; + var maxIterations = Math.max(1000, Math.min(10 * this.body.nodeIndices.length, 6000)); + var maxInnerIterations = 5; + + var maxEnergy = 1e9; + var highE_nodeId = 0, + dE_dx = 0, + dE_dy = 0, + delta_m = 0, + subIterations = 0; + + while (maxEnergy > threshold && iterations < maxIterations) { + iterations += 1; + + var _getHighestEnergyNode2 = this._getHighestEnergyNode(ignoreClusters); + + var _getHighestEnergyNode22 = _slicedToArray(_getHighestEnergyNode2, 4); + + highE_nodeId = _getHighestEnergyNode22[0]; + maxEnergy = _getHighestEnergyNode22[1]; + dE_dx = _getHighestEnergyNode22[2]; + dE_dy = _getHighestEnergyNode22[3]; + + delta_m = maxEnergy; + subIterations = 0; + while (delta_m > innerThreshold && subIterations < maxInnerIterations) { + subIterations += 1; + this._moveNode(highE_nodeId, dE_dx, dE_dy); + + var _getEnergy2 = this._getEnergy(highE_nodeId); + + var _getEnergy22 = _slicedToArray(_getEnergy2, 3); + + delta_m = _getEnergy22[0]; + dE_dx = _getEnergy22[1]; + dE_dy = _getEnergy22[2]; + } + } + } + + /** + * get the node with the highest energy + * @returns {*[]} + * @private + */ + }, { + key: "_getHighestEnergyNode", + value: function _getHighestEnergyNode(ignoreClusters) { + var nodesArray = this.body.nodeIndices; + var nodes = this.body.nodes; + var maxEnergy = 0; + var maxEnergyNodeId = nodesArray[0]; + var dE_dx_max = 0, + dE_dy_max = 0; + + for (var nodeIdx = 0; nodeIdx < nodesArray.length; nodeIdx++) { + var m = nodesArray[nodeIdx]; + // by not evaluating nodes with predefined positions we should only move nodes that have no positions. + if (nodes[m].predefinedPosition === false || nodes[m].isCluster === true && ignoreClusters === true || nodes[m].options.fixed.x === true || nodes[m].options.fixed.y === true) { + var _getEnergy3 = this._getEnergy(m); + + var _getEnergy32 = _slicedToArray(_getEnergy3, 3); + + var delta_m = _getEnergy32[0]; + var dE_dx = _getEnergy32[1]; + var dE_dy = _getEnergy32[2]; + + if (maxEnergy < delta_m) { + maxEnergy = delta_m; + maxEnergyNodeId = m; + dE_dx_max = dE_dx; + dE_dy_max = dE_dy; + } + } + } + + return [maxEnergyNodeId, maxEnergy, dE_dx_max, dE_dy_max]; + } + + /** + * calculate the energy of a single node + * @param m + * @returns {*[]} + * @private + */ + }, { + key: "_getEnergy", + value: function _getEnergy(m) { + var nodesArray = this.body.nodeIndices; + var nodes = this.body.nodes; + + var x_m = nodes[m].x; + var y_m = nodes[m].y; + var dE_dx = 0; + var dE_dy = 0; + for (var iIdx = 0; iIdx < nodesArray.length; iIdx++) { + var i = nodesArray[iIdx]; + if (i !== m) { + var x_i = nodes[i].x; + var y_i = nodes[i].y; + var denominator = 1.0 / Math.sqrt(Math.pow(x_m - x_i, 2) + Math.pow(y_m - y_i, 2)); + dE_dx += this.K_matrix[m][i] * (x_m - x_i - this.L_matrix[m][i] * (x_m - x_i) * denominator); + dE_dy += this.K_matrix[m][i] * (y_m - y_i - this.L_matrix[m][i] * (y_m - y_i) * denominator); + } + } + + var delta_m = Math.sqrt(Math.pow(dE_dx, 2) + Math.pow(dE_dy, 2)); + return [delta_m, dE_dx, dE_dy]; + } + + /** + * move the node based on it's energy + * the dx and dy are calculated from the linear system proposed by Kamada and Kawai + * @param m + * @param dE_dx + * @param dE_dy + * @private + */ + }, { + key: "_moveNode", + value: function _moveNode(m, dE_dx, dE_dy) { + var nodesArray = this.body.nodeIndices; + var nodes = this.body.nodes; + var d2E_dx2 = 0; + var d2E_dxdy = 0; + var d2E_dy2 = 0; + + var x_m = nodes[m].x; + var y_m = nodes[m].y; + for (var iIdx = 0; iIdx < nodesArray.length; iIdx++) { + var i = nodesArray[iIdx]; + if (i !== m) { + var x_i = nodes[i].x; + var y_i = nodes[i].y; + var denominator = 1.0 / Math.pow(Math.pow(x_m - x_i, 2) + Math.pow(y_m - y_i, 2), 1.5); + d2E_dx2 += this.K_matrix[m][i] * (1 - this.L_matrix[m][i] * Math.pow(y_m - y_i, 2) * denominator); + d2E_dxdy += this.K_matrix[m][i] * (this.L_matrix[m][i] * (x_m - x_i) * (y_m - y_i) * denominator); + d2E_dy2 += this.K_matrix[m][i] * (1 - this.L_matrix[m][i] * Math.pow(x_m - x_i, 2) * denominator); + } + } + // make the variable names easier to make the solving of the linear system easier to read + var A = d2E_dx2, + B = d2E_dxdy, + C = dE_dx, + D = d2E_dy2, + E = dE_dy; + + // solve the linear system for dx and dy + var dy = (C / A + E / B) / (B / A - D / B); + var dx = -(B * dy + C) / A; + + // move the node + nodes[m].x += dx; + nodes[m].y += dy; + } + + /** + * Create the L matrix: edge length times shortest path + * @param D_matrix + * @private + */ + }, { + key: "_createL_matrix", + value: function _createL_matrix(D_matrix) { + var nodesArray = this.body.nodeIndices; + var edgeLength = this.springLength; + + this.L_matrix = []; + for (var i = 0; i < nodesArray.length; i++) { + this.L_matrix[nodesArray[i]] = {}; + for (var j = 0; j < nodesArray.length; j++) { + this.L_matrix[nodesArray[i]][nodesArray[j]] = edgeLength * D_matrix[nodesArray[i]][nodesArray[j]]; + } + } + } + + /** + * Create the K matrix: spring constants times shortest path + * @param D_matrix + * @private + */ + }, { + key: "_createK_matrix", + value: function _createK_matrix(D_matrix) { + var nodesArray = this.body.nodeIndices; + var edgeStrength = this.springConstant; + + this.K_matrix = []; + for (var i = 0; i < nodesArray.length; i++) { + this.K_matrix[nodesArray[i]] = {}; + for (var j = 0; j < nodesArray.length; j++) { + this.K_matrix[nodesArray[i]][nodesArray[j]] = edgeStrength * Math.pow(D_matrix[nodesArray[i]][nodesArray[j]], -2); + } + } + } + }]); + + return KamadaKawai; + })(); + + exports["default"] = KamadaKawai; + module.exports = exports["default"]; + +/***/ }, +/* 113 */ +/***/ function(module, exports) { + + /** + * Created by Alex on 10-Aug-15. + */ + + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var FloydWarshall = (function () { + function FloydWarshall() { + _classCallCheck(this, FloydWarshall); + } + + _createClass(FloydWarshall, [{ + key: "getDistances", + value: function getDistances(body, nodesArray, edgesArray) { + var D_matrix = {}; + var edges = body.edges; + + // prepare matrix with large numbers + for (var i = 0; i < nodesArray.length; i++) { + D_matrix[nodesArray[i]] = {}; + D_matrix[nodesArray[i]] = {}; + for (var j = 0; j < nodesArray.length; j++) { + D_matrix[nodesArray[i]][nodesArray[j]] = i == j ? 0 : 1e9; + D_matrix[nodesArray[i]][nodesArray[j]] = i == j ? 0 : 1e9; + } + } + + // put the weights for the edges in. This assumes unidirectionality. + for (var i = 0; i < edgesArray.length; i++) { + var edge = edges[edgesArray[i]]; + D_matrix[edge.fromId][edge.toId] = 1; + D_matrix[edge.toId][edge.fromId] = 1; + } + + var nodeCount = nodesArray.length; + + // Adapted FloydWarshall based on unidirectionality to greatly reduce complexity. + for (var k = 0; k < nodeCount; k++) { + for (var i = 0; i < nodeCount - 1; i++) { + for (var j = i + 1; j < nodeCount; j++) { + D_matrix[nodesArray[i]][nodesArray[j]] = Math.min(D_matrix[nodesArray[i]][nodesArray[j]], D_matrix[nodesArray[i]][nodesArray[k]] + D_matrix[nodesArray[k]][nodesArray[j]]); + D_matrix[nodesArray[j]][nodesArray[i]] = D_matrix[nodesArray[i]][nodesArray[j]]; + } + } + } + + return D_matrix; + } + }]); + + return FloydWarshall; + })(); + + exports["default"] = FloydWarshall; + module.exports = exports["default"]; + +/***/ }, +/* 114 */ +/***/ function(module, exports) { + + /** + * Canvas shapes used by Network + */ + 'use strict'; + + if (typeof CanvasRenderingContext2D !== 'undefined') { + + /** + * Draw a circle shape + */ + CanvasRenderingContext2D.prototype.circle = function (x, y, r) { + this.beginPath(); + this.arc(x, y, r, 0, 2 * Math.PI, false); + this.closePath(); + }; + + /** + * Draw a square shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r size, width and height of the square + */ + CanvasRenderingContext2D.prototype.square = function (x, y, r) { + this.beginPath(); + this.rect(x - r, y - r, r * 2, r * 2); + this.closePath(); + }; + + /** + * Draw a triangle shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.triangle = function (x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); + + // the change in radius and the offset is here to center the shape + r *= 1.15; + y += 0.275 * r; + + var s = r * 2; + var s2 = s / 2; + var ir = Math.sqrt(3) / 6 * s; // radius of inner circle + var h = Math.sqrt(s * s - s2 * s2); // height + + this.moveTo(x, y - (h - ir)); + this.lineTo(x + s2, y + ir); + this.lineTo(x - s2, y + ir); + this.lineTo(x, y - (h - ir)); + this.closePath(); + }; + + /** + * Draw a triangle shape in downward orientation + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius + */ + CanvasRenderingContext2D.prototype.triangleDown = function (x, y, r) { + // http://en.wikipedia.org/wiki/Equilateral_triangle + this.beginPath(); + + // the change in radius and the offset is here to center the shape + r *= 1.15; + y -= 0.275 * r; + + var s = r * 2; + var s2 = s / 2; + var ir = Math.sqrt(3) / 6 * s; // radius of inner circle + var h = Math.sqrt(s * s - s2 * s2); // height + + this.moveTo(x, y + (h - ir)); + this.lineTo(x + s2, y - ir); + this.lineTo(x - s2, y - ir); + this.lineTo(x, y + (h - ir)); + this.closePath(); + }; + + /** + * Draw a star shape, a star with 5 points + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.star = function (x, y, r) { + // http://www.html5canvastutorials.com/labs/html5-canvas-star-spinner/ + this.beginPath(); + + // the change in radius and the offset is here to center the shape + r *= 0.82; + y += 0.1 * r; + + for (var n = 0; n < 10; n++) { + var radius = n % 2 === 0 ? r * 1.3 : r * 0.5; + this.lineTo(x + radius * Math.sin(n * 2 * Math.PI / 10), y - radius * Math.cos(n * 2 * Math.PI / 10)); + } + + this.closePath(); + }; + + /** + * Draw a Diamond shape + * @param {Number} x horizontal center + * @param {Number} y vertical center + * @param {Number} r radius, half the length of the sides of the triangle + */ + CanvasRenderingContext2D.prototype.diamond = function (x, y, r) { + // http://www.html5canvastutorials.com/labs/html5-canvas-star-spinner/ + this.beginPath(); + + this.lineTo(x, y + r); + this.lineTo(x + r, y); + this.lineTo(x, y - r); + this.lineTo(x - r, y); + + this.closePath(); + }; + + /** + * http://stackoverflow.com/questions/1255512/how-to-draw-a-rounded-rectangle-on-html-canvas + */ + CanvasRenderingContext2D.prototype.roundRect = function (x, y, w, h, r) { + var r2d = Math.PI / 180; + if (w - 2 * r < 0) { + r = w / 2; + } //ensure that the radius isn't too large for x + if (h - 2 * r < 0) { + r = h / 2; + } //ensure that the radius isn't too large for y + this.beginPath(); + this.moveTo(x + r, y); + this.lineTo(x + w - r, y); + this.arc(x + w - r, y + r, r, r2d * 270, r2d * 360, false); + this.lineTo(x + w, y + h - r); + this.arc(x + w - r, y + h - r, r, 0, r2d * 90, false); + this.lineTo(x + r, y + h); + this.arc(x + r, y + h - r, r, r2d * 90, r2d * 180, false); + this.lineTo(x, y + r); + this.arc(x + r, y + r, r, r2d * 180, r2d * 270, false); + this.closePath(); + }; + + /** + * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas + */ + CanvasRenderingContext2D.prototype.ellipse = function (x, y, w, h) { + var kappa = .5522848, + ox = w / 2 * kappa, + // control point offset horizontal + oy = h / 2 * kappa, + // control point offset vertical + xe = x + w, + // x-end + ye = y + h, + // y-end + xm = x + w / 2, + // x-middle + ym = y + h / 2; // y-middle + + this.beginPath(); + this.moveTo(x, ym); + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); + this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); + this.closePath(); + }; + + /** + * http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas + */ + CanvasRenderingContext2D.prototype.database = function (x, y, w, h) { + var f = 1 / 3; + var wEllipse = w; + var hEllipse = h * f; + + var kappa = .5522848, + ox = wEllipse / 2 * kappa, + // control point offset horizontal + oy = hEllipse / 2 * kappa, + // control point offset vertical + xe = x + wEllipse, + // x-end + ye = y + hEllipse, + // y-end + xm = x + wEllipse / 2, + // x-middle + ym = y + hEllipse / 2, + // y-middle + ymb = y + (h - hEllipse / 2), + // y-midlle, bottom ellipse + yeb = y + h; // y-end, bottom ellipse + + this.beginPath(); + this.moveTo(xe, ym); + + this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); + this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); + + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + + this.lineTo(xe, ymb); + + this.bezierCurveTo(xe, ymb + oy, xm + ox, yeb, xm, yeb); + this.bezierCurveTo(xm - ox, yeb, x, ymb + oy, x, ymb); + + this.lineTo(x, ym); + }; + + /** + * Draw an arrow point (no line) + */ + CanvasRenderingContext2D.prototype.arrow = function (x, y, angle, length) { + // tail + var xt = x - length * Math.cos(angle); + var yt = y - length * Math.sin(angle); + + // inner tail + var xi = x - length * 0.9 * Math.cos(angle); + var yi = y - length * 0.9 * Math.sin(angle); + + // left + var xl = xt + length / 3 * Math.cos(angle + 0.5 * Math.PI); + var yl = yt + length / 3 * Math.sin(angle + 0.5 * Math.PI); + + // right + var xr = xt + length / 3 * Math.cos(angle - 0.5 * Math.PI); + var yr = yt + length / 3 * Math.sin(angle - 0.5 * Math.PI); + + this.beginPath(); + this.moveTo(x, y); + this.lineTo(xl, yl); + this.lineTo(xi, yi); + this.lineTo(xr, yr); + this.closePath(); + }; + + /** + * Sets up the dashedLine functionality for drawing + * Original code came from http://stackoverflow.com/questions/4576724/dotted-stroke-in-canvas + * @author David Jordan + * @date 2012-08-08 + */ + CanvasRenderingContext2D.prototype.dashedLine = function (x, y, x2, y2, pattern) { + this.beginPath(); + this.moveTo(x, y); + + var patternLength = pattern.length; + var dx = x2 - x; + var dy = y2 - y; + var slope = dy / dx; + var distRemaining = Math.sqrt(dx * dx + dy * dy); + var patternIndex = 0; + var draw = true; + var xStep = 0; + var dashLength = pattern[0]; + + while (distRemaining >= 0.1) { + dashLength = pattern[patternIndex++ % patternLength]; + if (dashLength > distRemaining) { + dashLength = distRemaining; + } + + xStep = Math.sqrt(dashLength * dashLength / (1 + slope * slope)); + xStep = dx < 0 ? -xStep : xStep; + x += xStep; + y += slope * xStep; + + if (draw === true) { + this.lineTo(x, y); + } else { + this.moveTo(x, y); + } + + distRemaining -= dashLength; + draw = !draw; + } + }; + } + +/***/ }, +/* 115 */ +/***/ function(module, exports) { + + /** + * Parse a text source containing data in DOT language into a JSON object. + * The object contains two lists: one with nodes and one with edges. + * + * DOT language reference: http://www.graphviz.org/doc/info/lang.html + * + * DOT language attributes: http://graphviz.org/content/attrs + * + * @param {String} data Text containing a graph in DOT-notation + * @return {Object} graph An object containing two parameters: + * {Object[]} nodes + * {Object[]} edges + */ + 'use strict'; + + function parseDOT(data) { + dot = data; + return parseGraph(); + } + + // mapping of attributes from DOT (the keys) to vis.js (the values) + var NODE_ATTR_MAPPING = { + 'fontsize': 'font.size', + 'fontcolor': 'font.color', + 'labelfontcolor': 'font.color', + 'fontname': 'font.face', + 'color': ['color.border', 'color.background'], + 'fillcolor': 'color.background', + 'tooltip': 'title', + 'labeltooltip': 'title' + }; + var EDGE_ATTR_MAPPING = Object.create(NODE_ATTR_MAPPING); + EDGE_ATTR_MAPPING.color = 'color.color'; + + // token types enumeration + var TOKENTYPE = { + NULL: 0, + DELIMITER: 1, + IDENTIFIER: 2, + UNKNOWN: 3 + }; + + // map with all delimiters + var DELIMITERS = { + '{': true, + '}': true, + '[': true, + ']': true, + ';': true, + '=': true, + ',': true, + + '->': true, + '--': true + }; + + var dot = ''; // current dot file + var index = 0; // current index in dot file + var c = ''; // current token character in expr + var token = ''; // current token + var tokenType = TOKENTYPE.NULL; // type of the token + + /** + * Get the first character from the dot file. + * The character is stored into the char c. If the end of the dot file is + * reached, the function puts an empty string in c. + */ + function first() { + index = 0; + c = dot.charAt(0); + } + + /** + * Get the next character from the dot file. + * The character is stored into the char c. If the end of the dot file is + * reached, the function puts an empty string in c. + */ + function next() { + index++; + c = dot.charAt(index); + } + + /** + * Preview the next character from the dot file. + * @return {String} cNext + */ + function nextPreview() { + return dot.charAt(index + 1); + } + + /** + * Test whether given character is alphabetic or numeric + * @param {String} c + * @return {Boolean} isAlphaNumeric + */ + var regexAlphaNumeric = /[a-zA-Z_0-9.:#]/; + function isAlphaNumeric(c) { + return regexAlphaNumeric.test(c); + } + + /** + * Merge all options of object b into object b + * @param {Object} a + * @param {Object} b + * @return {Object} a + */ + function merge(a, b) { + if (!a) { + a = {}; + } + + if (b) { + for (var name in b) { + if (b.hasOwnProperty(name)) { + a[name] = b[name]; + } + } + } + return a; + } + + /** + * Set a value in an object, where the provided parameter name can be a + * path with nested parameters. For example: + * + * var obj = {a: 2}; + * setValue(obj, 'b.c', 3); // obj = {a: 2, b: {c: 3}} + * + * @param {Object} obj + * @param {String} path A parameter name or dot-separated parameter path, + * like "color.highlight.border". + * @param {*} value + */ + function setValue(obj, path, value) { + var keys = path.split('.'); + var o = obj; + while (keys.length) { + var key = keys.shift(); + if (keys.length) { + // this isn't the end point + if (!o[key]) { + o[key] = {}; + } + o = o[key]; + } else { + // this is the end point + o[key] = value; + } + } + } + + /** + * Add a node to a graph object. If there is already a node with + * the same id, their attributes will be merged. + * @param {Object} graph + * @param {Object} node + */ + function addNode(graph, node) { + var i, len; + var current = null; + + // find root graph (in case of subgraph) + var graphs = [graph]; // list with all graphs from current graph to root graph + var root = graph; + while (root.parent) { + graphs.push(root.parent); + root = root.parent; + } + + // find existing node (at root level) by its id + if (root.nodes) { + for (i = 0, len = root.nodes.length; i < len; i++) { + if (node.id === root.nodes[i].id) { + current = root.nodes[i]; + break; + } + } + } + + if (!current) { + // this is a new node + current = { + id: node.id + }; + if (graph.node) { + // clone default attributes + current.attr = merge(current.attr, graph.node); + } + } + + // add node to this (sub)graph and all its parent graphs + for (i = graphs.length - 1; i >= 0; i--) { + var g = graphs[i]; + + if (!g.nodes) { + g.nodes = []; + } + if (g.nodes.indexOf(current) === -1) { + g.nodes.push(current); + } + } + + // merge attributes + if (node.attr) { + current.attr = merge(current.attr, node.attr); + } + } + + /** + * Add an edge to a graph object + * @param {Object} graph + * @param {Object} edge + */ + function addEdge(graph, edge) { + if (!graph.edges) { + graph.edges = []; + } + graph.edges.push(edge); + if (graph.edge) { + var attr = merge({}, graph.edge); // clone default attributes + edge.attr = merge(attr, edge.attr); // merge attributes + } + } + + /** + * Create an edge to a graph object + * @param {Object} graph + * @param {String | Number | Object} from + * @param {String | Number | Object} to + * @param {String} type + * @param {Object | null} attr + * @return {Object} edge + */ + function createEdge(graph, from, to, type, attr) { + var edge = { + from: from, + to: to, + type: type + }; + + if (graph.edge) { + edge.attr = merge({}, graph.edge); // clone default attributes + } + edge.attr = merge(edge.attr || {}, attr); // merge attributes + + return edge; + } + + /** + * Get next token in the current dot file. + * The token and token type are available as token and tokenType + */ + function getToken() { + tokenType = TOKENTYPE.NULL; + token = ''; + + // skip over whitespaces + while (c === ' ' || c === '\t' || c === '\n' || c === '\r') { + // space, tab, enter + next(); + } + + do { + var isComment = false; + + // skip comment + if (c === '#') { + // find the previous non-space character + var i = index - 1; + while (dot.charAt(i) === ' ' || dot.charAt(i) === '\t') { + i--; + } + if (dot.charAt(i) === '\n' || dot.charAt(i) === '') { + // the # is at the start of a line, this is indeed a line comment + while (c != '' && c != '\n') { + next(); + } + isComment = true; + } + } + if (c === '/' && nextPreview() === '/') { + // skip line comment + while (c != '' && c != '\n') { + next(); + } + isComment = true; + } + if (c === '/' && nextPreview() === '*') { + // skip block comment + while (c != '') { + if (c === '*' && nextPreview() === '/') { + // end of block comment found. skip these last two characters + next(); + next(); + break; + } else { + next(); + } + } + isComment = true; + } + + // skip over whitespaces + while (c === ' ' || c === '\t' || c === '\n' || c === '\r') { + // space, tab, enter + next(); + } + } while (isComment); + + // check for end of dot file + if (c === '') { + // token is still empty + tokenType = TOKENTYPE.DELIMITER; + return; + } + + // check for delimiters consisting of 2 characters + var c2 = c + nextPreview(); + if (DELIMITERS[c2]) { + tokenType = TOKENTYPE.DELIMITER; + token = c2; + next(); + next(); + return; + } + + // check for delimiters consisting of 1 character + if (DELIMITERS[c]) { + tokenType = TOKENTYPE.DELIMITER; + token = c; + next(); + return; + } + + // check for an identifier (number or string) + // TODO: more precise parsing of numbers/strings (and the port separator ':') + if (isAlphaNumeric(c) || c === '-') { + token += c; + next(); + + while (isAlphaNumeric(c)) { + token += c; + next(); + } + if (token === 'false') { + token = false; // convert to boolean + } else if (token === 'true') { + token = true; // convert to boolean + } else if (!isNaN(Number(token))) { + token = Number(token); // convert to number + } + tokenType = TOKENTYPE.IDENTIFIER; + return; + } + + // check for a string enclosed by double quotes + if (c === '"') { + next(); + while (c != '' && (c != '"' || c === '"' && nextPreview() === '"')) { + token += c; + if (c === '"') { + // skip the escape character + next(); + } + next(); + } + if (c != '"') { + throw newSyntaxError('End of string " expected'); + } + next(); + tokenType = TOKENTYPE.IDENTIFIER; + return; + } + + // something unknown is found, wrong characters, a syntax error + tokenType = TOKENTYPE.UNKNOWN; + while (c != '') { + token += c; + next(); + } + throw new SyntaxError('Syntax error in part "' + chop(token, 30) + '"'); + } + + /** + * Parse a graph. + * @returns {Object} graph + */ + function parseGraph() { + var graph = {}; + + first(); + getToken(); + + // optional strict keyword + if (token === 'strict') { + graph.strict = true; + getToken(); + } + + // graph or digraph keyword + if (token === 'graph' || token === 'digraph') { + graph.type = token; + getToken(); + } + + // optional graph id + if (tokenType === TOKENTYPE.IDENTIFIER) { + graph.id = token; + getToken(); + } + + // open angle bracket + if (token != '{') { + throw newSyntaxError('Angle bracket { expected'); + } + getToken(); + + // statements + parseStatements(graph); + + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); + } + getToken(); + + // end of file + if (token !== '') { + throw newSyntaxError('End of file expected'); + } + getToken(); + + // remove temporary default options + delete graph.node; + delete graph.edge; + delete graph.graph; + + return graph; + } + + /** + * Parse a list with statements. + * @param {Object} graph + */ + function parseStatements(graph) { + while (token !== '' && token != '}') { + parseStatement(graph); + if (token === ';') { + getToken(); + } + } + } + + /** + * Parse a single statement. Can be a an attribute statement, node + * statement, a series of node statements and edge statements, or a + * parameter. + * @param {Object} graph + */ + function parseStatement(graph) { + // parse subgraph + var subgraph = parseSubgraph(graph); + if (subgraph) { + // edge statements + parseEdge(graph, subgraph); + + return; + } + + // parse an attribute statement + var attr = parseAttributeStatement(graph); + if (attr) { + return; + } + + // parse node + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + var id = token; // id can be a string or a number + getToken(); + + if (token === '=') { + // id statement + getToken(); + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier expected'); + } + graph[id] = token; + getToken(); + // TODO: implement comma separated list with "a_list: ID=ID [','] [a_list] " + } else { + parseNodeStatement(graph, id); + } + } + + /** + * Parse a subgraph + * @param {Object} graph parent graph object + * @return {Object | null} subgraph + */ + function parseSubgraph(graph) { + var subgraph = null; + + // optional subgraph keyword + if (token === 'subgraph') { + subgraph = {}; + subgraph.type = 'subgraph'; + getToken(); + + // optional graph id + if (tokenType === TOKENTYPE.IDENTIFIER) { + subgraph.id = token; + getToken(); + } + } + + // open angle bracket + if (token === '{') { + getToken(); + + if (!subgraph) { + subgraph = {}; + } + subgraph.parent = graph; + subgraph.node = graph.node; + subgraph.edge = graph.edge; + subgraph.graph = graph.graph; + + // statements + parseStatements(subgraph); + + // close angle bracket + if (token != '}') { + throw newSyntaxError('Angle bracket } expected'); + } + getToken(); + + // remove temporary default options + delete subgraph.node; + delete subgraph.edge; + delete subgraph.graph; + delete subgraph.parent; + + // register at the parent graph + if (!graph.subgraphs) { + graph.subgraphs = []; + } + graph.subgraphs.push(subgraph); + } + + return subgraph; + } + + /** + * parse an attribute statement like "node [shape=circle fontSize=16]". + * Available keywords are 'node', 'edge', 'graph'. + * The previous list with default attributes will be replaced + * @param {Object} graph + * @returns {String | null} keyword Returns the name of the parsed attribute + * (node, edge, graph), or null if nothing + * is parsed. + */ + function parseAttributeStatement(graph) { + // attribute statements + if (token === 'node') { + getToken(); + + // node attributes + graph.node = parseAttributeList(); + return 'node'; + } else if (token === 'edge') { + getToken(); + + // edge attributes + graph.edge = parseAttributeList(); + return 'edge'; + } else if (token === 'graph') { + getToken(); + + // graph attributes + graph.graph = parseAttributeList(); + return 'graph'; + } + + return null; + } + + /** + * parse a node statement + * @param {Object} graph + * @param {String | Number} id + */ + function parseNodeStatement(graph, id) { + // node statement + var node = { + id: id + }; + var attr = parseAttributeList(); + if (attr) { + node.attr = attr; + } + addNode(graph, node); + + // edge statements + parseEdge(graph, id); + } + + /** + * Parse an edge or a series of edges + * @param {Object} graph + * @param {String | Number} from Id of the from node + */ + function parseEdge(graph, from) { + while (token === '->' || token === '--') { + var to; + var type = token; + getToken(); + + var subgraph = parseSubgraph(graph); + if (subgraph) { + to = subgraph; + } else { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Identifier or subgraph expected'); + } + to = token; + addNode(graph, { + id: to + }); + getToken(); + } + + // parse edge attributes + var attr = parseAttributeList(); + + // create edge + var edge = createEdge(graph, from, to, type, attr); + addEdge(graph, edge); + + from = to; + } + } + + /** + * Parse a set with attributes, + * for example [label="1.000", shape=solid] + * @return {Object | null} attr + */ + function parseAttributeList() { + var attr = null; + + while (token === '[') { + getToken(); + attr = {}; + while (token !== '' && token != ']') { + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute name expected'); + } + var name = token; + + getToken(); + if (token != '=') { + throw newSyntaxError('Equal sign = expected'); + } + getToken(); + + if (tokenType != TOKENTYPE.IDENTIFIER) { + throw newSyntaxError('Attribute value expected'); + } + var value = token; + setValue(attr, name, value); // name can be a path + + getToken(); + if (token == ',') { + getToken(); + } + } + + if (token != ']') { + throw newSyntaxError('Bracket ] expected'); + } + getToken(); + } + + return attr; + } + + /** + * Create a syntax error with extra information on current token and index. + * @param {String} message + * @returns {SyntaxError} err + */ + function newSyntaxError(message) { + return new SyntaxError(message + ', got "' + chop(token, 30) + '" (char ' + index + ')'); + } + + /** + * Chop off text after a maximum length + * @param {String} text + * @param {Number} maxLength + * @returns {String} + */ + function chop(text, maxLength) { + return text.length <= maxLength ? text : text.substr(0, 27) + '...'; + } + + /** + * Execute a function fn for each pair of elements in two arrays + * @param {Array | *} array1 + * @param {Array | *} array2 + * @param {function} fn + */ + function forEach2(array1, array2, fn) { + if (Array.isArray(array1)) { + array1.forEach(function (elem1) { + if (Array.isArray(array2)) { + array2.forEach(function (elem2) { + fn(elem1, elem2); + }); + } else { + fn(elem1, array2); + } + }); + } else { + if (Array.isArray(array2)) { + array2.forEach(function (elem2) { + fn(array1, elem2); + }); + } else { + fn(array1, array2); + } + } + } + + /** + * Set a nested property on an object + * When nested objects are missing, they will be created. + * For example setProp({}, 'font.color', 'red') will return {font: {color: 'red'}} + * @param {Object} object + * @param {string} path A dot separated string like 'font.color' + * @param {*} value Value for the property + * @return {Object} Returns the original object, allows for chaining. + */ + function setProp(object, path, value) { + var names = path.split('.'); + var prop = names.pop(); + + // traverse over the nested objects + var obj = object; + for (var i = 0; i < names.length; i++) { + var name = names[i]; + if (!(name in obj)) { + obj[name] = {}; + } + obj = obj[name]; + } + + // set the property value + obj[prop] = value; + + return object; + } + + /** + * Convert an object with DOT attributes to their vis.js equivalents. + * @param {Object} attr Object with DOT attributes + * @param {Object} mapping + * @return {Object} Returns an object with vis.js attributes + */ + function convertAttr(attr, mapping) { + var converted = {}; + + for (var prop in attr) { + if (attr.hasOwnProperty(prop)) { + var visProp = mapping[prop]; + if (Array.isArray(visProp)) { + visProp.forEach(function (visPropI) { + setProp(converted, visPropI, attr[prop]); + }); + } else if (typeof visProp === 'string') { + setProp(converted, visProp, attr[prop]); + } else { + setProp(converted, prop, attr[prop]); + } + } + } + + return converted; + } + + /** + * Convert a string containing a graph in DOT language into a map containing + * with nodes and edges in the format of graph. + * @param {String} data Text containing a graph in DOT-notation + * @return {Object} graphData + */ + function DOTToGraph(data) { + // parse the DOT file + var dotData = parseDOT(data); + var graphData = { + nodes: [], + edges: [], + options: {} + }; + + // copy the nodes + if (dotData.nodes) { + dotData.nodes.forEach(function (dotNode) { + var graphNode = { + id: dotNode.id, + label: String(dotNode.label || dotNode.id) + }; + merge(graphNode, convertAttr(dotNode.attr, NODE_ATTR_MAPPING)); + if (graphNode.image) { + graphNode.shape = 'image'; + } + graphData.nodes.push(graphNode); + }); + } + + // copy the edges + if (dotData.edges) { + /** + * Convert an edge in DOT format to an edge with VisGraph format + * @param {Object} dotEdge + * @returns {Object} graphEdge + */ + var convertEdge = function convertEdge(dotEdge) { + var graphEdge = { + from: dotEdge.from, + to: dotEdge.to + }; + merge(graphEdge, convertAttr(dotEdge.attr, EDGE_ATTR_MAPPING)); + graphEdge.arrows = dotEdge.type === '->' ? 'to' : undefined; + + return graphEdge; + }; + + dotData.edges.forEach(function (dotEdge) { + var from, to; + if (dotEdge.from instanceof Object) { + from = dotEdge.from.nodes; + } else { + from = { + id: dotEdge.from + }; + } + + // TODO: support of solid/dotted/dashed edges (attr = 'style') + // TODO: support for attributes 'dir' and 'arrowhead' (edge arrows) + + if (dotEdge.to instanceof Object) { + to = dotEdge.to.nodes; + } else { + to = { + id: dotEdge.to + }; + } + + if (dotEdge.from instanceof Object && dotEdge.from.edges) { + dotEdge.from.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } + + forEach2(from, to, function (from, to) { + var subEdge = createEdge(graphData, from.id, to.id, dotEdge.type, dotEdge.attr); + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + + if (dotEdge.to instanceof Object && dotEdge.to.edges) { + dotEdge.to.edges.forEach(function (subEdge) { + var graphEdge = convertEdge(subEdge); + graphData.edges.push(graphEdge); + }); + } + }); + } + + // copy the options + if (dotData.attr) { + graphData.options = dotData.attr; + } + + return graphData; + } + + // exports + exports.parseDOT = parseDOT; + exports.DOTToGraph = DOTToGraph; + +/***/ }, +/* 116 */ +/***/ function(module, exports) { + + 'use strict'; + + function parseGephi(gephiJSON, optionsObj) { + var edges = []; + var nodes = []; + var options = { + edges: { + inheritColor: false + }, + nodes: { + fixed: false, + parseColor: false + } + }; + + if (optionsObj !== undefined) { + if (optionsObj.fixed !== undefined) { + options.nodes.fixed = optionsObj.fixed; + } + if (optionsObj.parseColor !== undefined) { + options.nodes.parseColor = optionsObj.parseColor; + } + if (optionsObj.inheritColor !== undefined) { + options.edges.inheritColor = optionsObj.inheritColor; + } + } + + var gEdges = gephiJSON.edges; + var gNodes = gephiJSON.nodes; + for (var i = 0; i < gEdges.length; i++) { + var edge = {}; + var gEdge = gEdges[i]; + edge['id'] = gEdge.id; + edge['from'] = gEdge.source; + edge['to'] = gEdge.target; + edge['attributes'] = gEdge.attributes; + edge['label'] = gEdge.label; + edge['title'] = gEdge.attributes !== undefined ? gEdge.attributes.title : undefined; + if (gEdge['type'] === 'Directed') { + edge['arrows'] = 'to'; + } + // edge['value'] = gEdge.attributes !== undefined ? gEdge.attributes.Weight : undefined; + // edge['width'] = edge['value'] !== undefined ? undefined : edgegEdge.size; + if (gEdge.color && options.inheritColor === false) { + edge['color'] = gEdge.color; + } + edges.push(edge); + } + + for (var i = 0; i < gNodes.length; i++) { + var node = {}; + var gNode = gNodes[i]; + node['id'] = gNode.id; + node['attributes'] = gNode.attributes; + node['title'] = gNode.title; + node['x'] = gNode.x; + node['y'] = gNode.y; + node['label'] = gNode.label; + node['title'] = gNode.attributes !== undefined ? gNode.attributes.title : undefined; + if (options.nodes.parseColor === true) { + node['color'] = gNode.color; + } else { + node['color'] = gNode.color !== undefined ? { background: gNode.color, border: gNode.color, highlight: { background: gNode.color, border: gNode.color }, hover: { background: gNode.color, border: gNode.color } } : undefined; + } + node['size'] = gNode.size; + node['fixed'] = options.nodes.fixed && gNode.x !== undefined && gNode.y !== undefined; + nodes.push(node); + } + + return { nodes: nodes, edges: edges }; + } + + exports.parseGephi = parseGephi; + +/***/ }, +/* 117 */ +/***/ function(module, exports) { + + /** + * @class Images + * This class loads images and keeps them stored. + */ + "use strict"; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + var Images = (function () { + function Images(callback) { + _classCallCheck(this, Images); + + this.images = {}; + this.imageBroken = {}; + this.callback = callback; + } + + /** + * @param {string} url The Url to cache the image as + * @return {Image} imageToLoadBrokenUrlOn The image object + */ + + _createClass(Images, [{ + key: "_addImageToCache", + value: function _addImageToCache(url, imageToCache) { + // IE11 fix -- thanks dponch! + if (imageToCache.width === 0) { + document.body.appendChild(imageToCache); + imageToCache.width = imageToCache.offsetWidth; + imageToCache.height = imageToCache.offsetHeight; + document.body.removeChild(imageToCache); + } + + this.images[url] = imageToCache; + } + + /** + * @param {string} url The original Url that failed to load, if the broken image is successfully loaded it will be added to the cache using this Url as the key so that subsequent requests for this Url will return the broken image + * @param {string} brokenUrl Url the broken image to try and load + * @return {Image} imageToLoadBrokenUrlOn The image object + */ + }, { + key: "_tryloadBrokenUrl", + value: function _tryloadBrokenUrl(url, brokenUrl, imageToLoadBrokenUrlOn) { + var _this = this; + + //If any of the parameters aren't specified then exit the function because nothing constructive can be done + if (url === undefined || brokenUrl === undefined || imageToLoadBrokenUrlOn === undefined) return; + + //Clear the old subscription to the error event and put a new in place that only handle errors in loading the brokenImageUrl + imageToLoadBrokenUrlOn.onerror = function () { + console.error("Could not load brokenImage:", brokenUrl); + //Add an empty image to the cache so that when subsequent load calls are made for the url we don't try load the image and broken image again + _this._addImageToCache(url, new Image()); + }; + + //Set the source of the image to the brokenUrl, this is actually what kicks off the loading of the broken image + imageToLoadBrokenUrlOn.src = brokenUrl; + } + + /** + * @return {Image} imageToRedrawWith The images that will be passed to the callback when it is invoked + */ + }, { + key: "_redrawWithImage", + value: function _redrawWithImage(imageToRedrawWith) { + if (this.callback) { + this.callback(imageToRedrawWith); + } + } + + /** + * @param {string} url Url of the image + * @param {string} brokenUrl Url of an image to use if the url image is not found + * @return {Image} img The image object + */ + }, { + key: "load", + value: function load(url, brokenUrl, id) { + var _this2 = this; + + //Try and get the image from the cache, if successful then return the cached image + var cachedImage = this.images[url]; + if (cachedImage) return cachedImage; + + //Create a new image + var img = new Image(); + + //Subscribe to the event that is raised if the image loads successfully + img.onload = function () { + //Add the image to the cache and then request a redraw + _this2._addImageToCache(url, img); + _this2._redrawWithImage(img); + }; + + //Subscribe to the event that is raised if the image fails to load + img.onerror = function () { + console.error("Could not load image:", url); + //Try and load the image specified by the brokenUrl using + _this2._tryloadBrokenUrl(url, brokenUrl, img); + }; + + //Set the source of the image to the url, this is actuall what kicks off the loading of the image + img.src = url; + + //Return the new image + return img; + } + }]); + + return Images; + })(); + + exports["default"] = Images; + module.exports = exports["default"]; + +/***/ }, +/* 118 */ +/***/ function(module, exports) { + + // English + 'use strict'; + + exports['en'] = { + edit: 'Edit', + del: 'Delete selected', + back: 'Back', + addNode: 'Add Node', + addEdge: 'Add Edge', + editNode: 'Edit Node', + editEdge: 'Edit Edge', + addDescription: 'Click in an empty space to place a new node.', + edgeDescription: 'Click on a node and drag the edge to another node to connect them.', + editEdgeDescription: 'Click on the control points and drag them to a node to connect to it.', + createEdgeError: 'Cannot link edges to a cluster.', + deleteClusterError: 'Clusters cannot be deleted.', + editClusterError: 'Clusters cannot be edited.' + }; + exports['en_EN'] = exports['en']; + exports['en_US'] = exports['en']; + + // German + exports['de'] = { + edit: 'Editieren', + del: 'Lösche Auswahl', + back: 'Zurück', + addNode: 'Knoten hinzufügen', + addEdge: 'Kante hinzufügen', + editNode: 'Knoten editieren', + editEdge: 'Kante editieren', + addDescription: 'Klicke auf eine freie Stelle, um einen neuen Knoten zu plazieren.', + edgeDescription: 'Klicke auf einen Knoten und ziehe die Kante zu einem anderen Knoten, um diese zu verbinden.', + editEdgeDescription: 'Klicke auf die Verbindungspunkte und ziehe diese auf einen Knoten, um sie zu verbinden.', + createEdgeError: 'Es ist nicht möglich, Kanten mit Clustern zu verbinden.', + deleteClusterError: 'Cluster können nicht gelöscht werden.', + editClusterError: 'Cluster können nicht editiert werden.' + }; + exports['de_DE'] = exports['de']; + + // Spanish + exports['es'] = { + edit: 'Editar', + del: 'Eliminar selección', + back: 'Átras', + addNode: 'Añadir nodo', + addEdge: 'Añadir arista', + editNode: 'Editar nodo', + editEdge: 'Editar arista', + addDescription: 'Haga clic en un lugar vacío para colocar un nuevo nodo.', + edgeDescription: 'Haga clic en un nodo y arrastre la arista hacia otro nodo para conectarlos.', + editEdgeDescription: 'Haga clic en un punto de control y arrastrelo a un nodo para conectarlo.', + createEdgeError: 'No se puede conectar una arista a un grupo.', + deleteClusterError: 'No es posible eliminar grupos.', + editClusterError: 'No es posible editar grupos.' + }; + exports['es_ES'] = exports['es']; + + // Dutch + exports['nl'] = { + edit: 'Wijzigen', + del: 'Selectie verwijderen', + back: 'Terug', + addNode: 'Node toevoegen', + addEdge: 'Link toevoegen', + editNode: 'Node wijzigen', + editEdge: 'Link wijzigen', + addDescription: 'Klik op een leeg gebied om een nieuwe node te maken.', + edgeDescription: 'Klik op een node en sleep de link naar een andere node om ze te verbinden.', + editEdgeDescription: 'Klik op de verbindingspunten en sleep ze naar een node om daarmee te verbinden.', + createEdgeError: 'Kan geen link maken naar een cluster.', + deleteClusterError: 'Clusters kunnen niet worden verwijderd.', + editClusterError: 'Clusters kunnen niet worden aangepast.' + }; + exports['nl_NL'] = exports['nl']; + exports['nl_BE'] = exports['nl']; + +/***/ } +/******/ ]) +}); +; \ No newline at end of file diff --git a/VIS/dist/vis.map b/VIS/dist/vis.map new file mode 100644 index 0000000..e2abd08 --- /dev/null +++ b/VIS/dist/vis.map @@ -0,0 +1 @@ +{"version":3,"file":"vis.map","sources":["./dist/vis.js"],"names":["root","factory","exports","module","define","amd","this","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","util","DOMutil","DataSet","DataView","Queue","Graph3d","graph3d","Camera","Filter","Point2d","Point3d","Slider","StepNumber","Timeline","Graph2d","timeline","DateUtil","DataStep","Range","stack","TimeStep","components","items","Item","BackgroundItem","BoxItem","PointItem","RangeItem","Component","CurrentTime","CustomTime","DataAxis","GraphGroup","Group","BackgroundGroup","ItemSet","Legend","LineGraph","TimeAxis","Network","network","Images","dotparser","gephiParser","allOptions","convertDot","input","DOTToGraph","convertGephi","options","parseGephi","moment","Hammer","keycharm","uuid","isNumber","object","Number","recursiveDOMDelete","DOMobject","hasChildNodes","firstChild","removeChild","giveRange","min","max","total","value","scale","Math","isString","String","isDate","Date","match","ASPDateRegex","exec","isNaN","parse","randomUUID","v4","assignAllKeys","obj","prop","hasOwnProperty","fillIfDefined","a","b","allowDeletion","arguments","length","undefined","protoExtend","i","other","extend","selectiveExtend","props","Array","isArray","Error","selectiveDeepExtend","TypeError","constructor","Object","deepExtend","selectiveNotDeepExtend","indexOf","push","equalArray","len","convert","type","Boolean","valueOf","isMoment","toDate","getType","toISOString","copyAndExtendArray","arr","newValue","newArr","copyArray","getAbsoluteLeft","elem","getBoundingClientRect","left","getAbsoluteTop","top","addClassName","className","classes","split","join","removeClassName","index","splice","forEach","callback","toArray","array","updateProperty","key","throttle","fn","wait","timeout","needExecution","throttled","setTimeout","addEventListener","element","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","window","returnValue","getTarget","target","srcElement","nodeType","parentNode","hasParent","parent","e","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","hexToRGB","hex","shorthandRegex","replace","r","g","result","parseInt","overrideOpacity","color","opacity","rgb","substr","RGBToHex","red","green","blue","toString","slice","parseColor","isValidRGB","map","isValidHex","hsv","hexToHSV","lighterColorHSV","h","s","v","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","RGBToHSV","minRGB","maxRGB","d","hue","saturation","cssUtil","cssText","styles","style","trim","parts","keys","addCssText","currentStyles","newStyles","removeCssText","removeStyles","HSVToRGB","floor","f","q","t","isOk","test","isValidRGBA","rgba","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","mergeOptions","mergeTarget","globalOptions","enabled","binarySearchCustom","orderedItems","searchFunction","field","field2","maxIterations","iteration","low","high","middle","item","searchResult","binarySearchValue","sidePreference","prevValue","nextValue","easingFunctions","linear","easeInQuad","easeOutQuad","easeInOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","global","utils_hooks__hooks","hookCallback","apply","setHookCallback","prototype","res","hasOwnProp","create_utc__createUTC","format","locale","strict","createLocalOrUTC","utc","defaultParsingFlags","empty","unusedTokens","unusedInput","overflow","charsLeftOver","nullInput","invalidMonth","invalidFormat","userInvalidated","iso","getParsingFlags","_pf","valid__isValid","_isValid","flags","_d","getTime","invalidWeekday","_strict","bigHour","valid__createInvalid","NaN","copyConfig","to","from","val","_isAMomentObject","_i","_f","_l","_tzm","_isUTC","_offset","_locale","momentProperties","Moment","config","updateInProgress","updateOffset","absFloor","number","ceil","toInt","argumentForCoercion","coercedNumber","isFinite","compareArrays","array1","array2","dontConvert","lengthDiff","abs","diffs","Locale","normalizeLocale","toLowerCase","chooseLocale","names","j","next","loadLocale","name","oldLocale","locales","globalLocale","_abbr","code","locale_locales__getSetGlobalLocale","values","data","locale_locales__getLocale","defineLocale","abbr","set","addUnitAlias","unit","shorthand","lowerCase","aliases","normalizeUnits","units","normalizeObjectUnits","inputObject","normalizedProp","normalizedInput","makeGetSet","keepTime","get_set__set","get_set__get","mom","getSet","zeroFill","targetLength","forceSign","absNumber","zerosToFill","sign","pow","addFormatToken","token","padded","ordinal","func","formatTokenFunctions","localeData","removeFormattingTokens","makeFormatFunction","formattingTokens","output","Function","formatMoment","isValid","expandFormat","formatFunctions","invalidDate","replaceLongDateFormatTokens","longDateFormat","localFormattingTokens","lastIndex","isFunction","sth","addRegexToken","regex","strictRegex","regexes","isStrict","getParseRegexForToken","RegExp","unescapeFormat","matched","p1","p2","p3","p4","addParseToken","tokens","addWeekParseToken","_w","addTimeToArrayFromToken","_a","daysInMonth","year","month","UTC","getUTCDate","localeMonths","_months","localeMonthsShort","_monthsShort","localeMonthsParse","monthName","_monthsParse","_longMonthsParse","_shortMonthsParse","months","monthsShort","setMonth","dayOfMonth","monthsParse","date","getSetMonth","getDaysInMonth","checkOverflow","MONTH","DATE","YEAR","HOUR","MINUTE","SECOND","MILLISECOND","_overflowDayOfYear","warn","msg","suppressDeprecationWarnings","console","deprecate","firstTime","deprecateSimple","deprecations","configFromISO","l","string","from_string__isoRegex","isoDates","isoTimes","matchOffset","configFromStringAndFormat","configFromString","aspNetJsonRegex","createFromInputFallback","createDate","y","M","ms","setFullYear","createUTCDate","setUTCFullYear","daysInYear","isLeapYear","getIsLeapYear","weekOfYear","firstDayOfWeek","firstDayOfWeekOfYear","adjustedMoment","end","daysToDayOfWeek","day","local__createLocal","add","week","dayOfYear","localeWeek","_week","dow","doy","localeFirstDayOfWeek","localeFirstDayOfYear","getSetWeek","getSetISOWeek","dayOfYearFromWeeks","weekday","week1Jan","janX","getUTCDay","getSetDayOfYear","round","clone","startOf","defaults","currentDateArray","now","_useUTC","getUTCFullYear","getUTCMonth","getFullYear","getMonth","getDate","configFromArray","currentDate","yearToUse","dayOfYearFromWeekInfo","_dayOfYear","_nextDay","setUTCMinutes","getUTCMinutes","w","weekYear","temp","GG","W","E","gg","ISO_8601","parsedInput","skipped","stringLength","totalParsedInputLength","meridiemFixWrap","_meridiem","hour","meridiem","isPm","meridiemHour","isPM","configFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","score","configFromObject","minute","second","millisecond","createFromConfig","prepareConfig","preparse","configFromInput","isUTC","pickBy","moments","args","Duration","duration","years","quarters","quarter","weeks","days","hours","minutes","seconds","milliseconds","_milliseconds","_days","_data","_bubble","isDuration","offset","separator","utcOffset","offsetFromString","matches","chunk","chunkOffset","cloneWithOffset","model","diff","setTime","local","getDateOffset","getTimezoneOffset","getSetOffset","keepLocalTime","localAdjust","_changeInProgress","add_subtract__addSubtract","create__createDuration","getSetZone","setOffsetToUTC","setOffsetToLocal","subtract","setOffsetToParsedOffset","hasAlignedHourOffset","isDaylightSavingTime","isDaylightSavingTimeShifted","_isDSTShifted","isLocal","isUtcOffset","isUtc","ret","diffRes","aspNetRegex","create__isoRegex","parseIso","momentsDifference","inp","parseFloat","positiveMomentsDifference","base","isAfter","isBefore","createAdder","direction","period","dur","tmp","isAdding","moment_calendar__calendar","time","formats","sod","calendar","inputMs","endOf","isBetween","isSame","asFloat","delta","that","zoneDelta","monthDiff","anchor2","adjust","wholeMonthDiff","anchor","moment_format__toISOString","inputString","defaultFormat","postformat","withoutSuffix","humanize","fromNow","toNow","newLocaleData","isoWeekday","to_type__valueOf","unix","toObject","moment_valid__isValid","parsingFlags","invalidAt","addWeekYearFormatToken","getter","weeksInYear","getSetWeekYear","getSetISOWeekYear","getISOWeeksInYear","getWeeksInYear","weekInfo","getSetQuarter","parseWeekday","weekdaysParse","localeWeekdays","_weekdays","localeWeekdaysShort","_weekdaysShort","localeWeekdaysMin","_weekdaysMin","localeWeekdaysParse","weekdayName","_weekdaysParse","weekdays","weekdaysShort","weekdaysMin","getSetDayOfWeek","getDay","getSetLocaleDayOfWeek","getSetISODayOfWeek","lowercase","matchMeridiem","_meridiemParse","localeIsPM","charAt","localeMeridiem","isLower","parseMs","getZoneAbbr","getZoneName","moment__createUnix","moment__createInZone","parseZone","locale_calendar__calendar","_calendar","_longDateFormat","formatUpper","toUpperCase","_invalidDate","_ordinal","preParsePostFormat","relative__relativeTime","isFuture","_relativeTime","pastFuture","locale_set__set","_ordinalParseLenient","_ordinalParse","source","lists__get","setter","list","count","out","lists__listMonths","lists__listMonthsShort","lists__listWeekdays","lists__listWeekdaysShort","lists__listWeekdaysMin","duration_abs__abs","mathAbs","duration_add_subtract__addSubtract","duration_add_subtract__add","duration_add_subtract__subtract","absCeil","bubble","monthsFromDays","monthsToDays","daysToMonths","as","duration_as__valueOf","makeAs","alias","duration_get__get","makeGetter","substituteTimeAgo","relativeTime","duration_humanize__relativeTime","posNegDuration","thresholds","duration_humanize__getSetRelativeTimeThreshold","threshold","limit","withSuffix","iso_string__toISOString","iso_string__abs","Y","D","asSeconds","match1","match2","match3","match4","match6","match1to2","match1to3","match1to4","match1to6","matchUnsigned","matchSigned","matchTimestamp","matchWord","defaultLocaleMonths","defaultLocaleMonthsShort","parseTwoDigitYear","getSetYear","defaultLocaleWeek","prototypeMin","prototypeMax","add_subtract__add","add_subtract__subtract","lang","isoWeekYear","getSetDayOfMonth","defaultLocaleWeekdays","defaultLocaleWeekdaysShort","defaultLocaleWeekdaysMin","_isPm","defaultLocaleMeridiemParse","getSetHour","getSetMinute","getSetSecond","getSetMillisecond","momentPrototype__proto","get","toJSON","isoWeek","isoWeeks","isoWeeksInYear","isDST","isDSTShifted","zoneAbbr","zoneName","dates","zone","momentPrototype","defaultCalendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","defaultLongDateFormat","LTS","LT","L","LL","LLL","LLLL","defaultInvalidDate","defaultOrdinal","defaultOrdinalParse","defaultRelativeTime","future","past","mm","hh","dd","MM","yy","prototype__proto","firstDayOfYear","ordinalParse","langData","asMilliseconds","asMinutes","asHours","asDays","asWeeks","asMonths","asYears","duration_prototype__proto","toIsoString","version","invalid","relativeTimeThreshold","_moment","webpackPolyfill","paths","children","webpackContext","req","resolve","buf","ii","oct","_hexToByte","unparse","bth","_byteToHex","v1","clockseq","_clockseq","msecs","nsecs","_lastNSecs","dt","_lastMSecs","tl","tmh","node","_nodeId","n","rnds","random","rng","_rng","globalVar","crypto","getRandomValues","_rnds8","Uint8Array","_rnds","_seedBytes","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","getSVGElement","svgContainer","shift","document","createElementNS","appendChild","getDOMElement","DOMContainer","insertBefore","createElement","drawPoint","x","groupTemplate","labelObj","point","setAttributeNS","size","label","xOffset","yOffset","content","textContent","drawBar","width","height","rect","_options","_fieldId","fieldId","_type","_subscribers","setOptions","queue","_queue","destroy","on","subscribers","subscribe","off","filter","unsubscribe","_trigger","params","senderId","concat","subscriber","addedIds","me","_addItem","update","updatedIds","updatedData","addOrUpdate","_updateItem","ids","firstType","returnType","allowedValues","itemId","_getItem","order","_sort","_filterFields","getIds","getDataSet","mappedItems","filteredItem","sort","av","bv","remove","removedId","removedIds","_remove","clear","maxField","itemField","minField","distinct","fieldType","exists","types","raw","converted","JSON","stringify","delay","Infinity","_timeout","_extended","_flushIfNeeded","flush","methods","original","method","context","entry","clearTimeout","_ids","_onEvent","setData","refresh","newIds","added","removed","viewOptions","getArguments","defaultFilter","dataSet","updated","container","SyntaxError","containerElement","margin","defaultXCenter","defaultYCenter","xLabel","yLabel","zLabel","passValueFn","xValueLabel","yValueLabel","zValueLabel","filterLabel","legendLabel","STYLE","DOT","showPerspective","showGrid","keepAspectRatio","showShadow","showGrayBottom","showTooltip","verticalRatio","animationInterval","animationPreload","camera","setArmRotation","setArmLength","eye","dataTable","dataPoints","colX","colY","colZ","colValue","colFilter","xMin","xStep","xMax","yMin","yStep","yMax","zMin","zStep","zMax","valueMin","valueMax","xBarWidth","yBarWidth","axisColor","gridColor","dataColor","fill","stroke","strokeWidth","getMouseX","clientX","targetTouches","getMouseY","clientY","Emitter","_setScale","z","xCenter","yCenter","zCenter","setArmLocation","_convert3Dto2D","point3d","translation","_convertPointToTranslation","_convertTranslationToScreen","ax","ay","az","cx","getCameraLocation","cy","cz","sinTx","sin","getCameraRotation","cosTx","cos","sinTy","cosTy","sinTz","cosTz","dx","dy","dz","bx","by","ex","ey","ez","getArmLength","xcenter","frame","canvas","clientWidth","ycenter","_setBackgroundColor","backgroundColor","borderColor","borderWidth","borderStyle","BAR","BARCOLOR","BARSIZE","DOTLINE","DOTCOLOR","DOTSIZE","GRID","LINE","SURFACE","_getStyleNumber","styleName","_determineColumnIndexes","getNumberOfColumns","getNumberOfRows","counter","column","getDistinctValues","distinctValues","getColumnRange","minMax","_dataInitialize","rawData","_onChange","dataFilter","setOnLoadCallback","redraw","withBars","defaultXBarWidth","dataX","defaultYBarWidth","dataY","xRange","defaultXMin","defaultXMax","defaultXStep","yRange","defaultYMin","defaultYMax","defaultYStep","zRange","defaultZMin","defaultZMax","defaultZStep","valueRange","defaultValueMin","defaultValueMax","_getDataPoints","sortNumber","dataMatrix","xIndex","yIndex","trans","screen","bottom","pointRight","pointTop","pointCross","position","noCanvas","fontWeight","padding","innerHTML","onmousedown","_onMouseDown","ontouchstart","_onTouchStart","onmousewheel","_onWheel","ontooltip","_onTooltip","onkeydown","setSize","_resizeCanvas","clientHeight","animationStart","slider","play","animationStop","stop","_resizeCenter","setCameraPosition","pos","horizontal","vertical","distance","getCameraPosition","getArmRotation","_readData","_redrawFilter","animationAutoStart","cameraPosition","styleNumber","tooltip","showAnimationControls","_redrawSlider","_redrawClear","_redrawAxis","_redrawDataGrid","_redrawDataLine","_redrawDataBar","_redrawDataDot","_redrawInfo","_redrawLegend","ctx","getContext","clearRect","widthMin","widthMax","dotSize","right","lineWidth","font","ymin","ymax","_hsv2rgb","strokeStyle","beginPath","moveTo","lineTo","strokeRect","fillStyle","closePath","gridLineLen","step","start","getCurrent","textAlign","textBaseline","fillText","visible","setValues","setPlayInterval","onchange","getIndex","selectValue","setOnChangeCallback","lineStyle","getLabel","getSelectedValue","prettyStep","text","xText","yText","zText","xMin2d","xMax2d","gridLenX","gridLenY","textMargin","armAngle","H","S","V","R","G","B","C","Hi","X","cross","topSideVisible","zAvg","lineJoin","lineCap","transBottom","dist","sortDepth","aDiff","bDiff","crossproduct","crossProduct","_getStrokeWidth","radius","arc","PI","surface","corners","xWidth","yWidth","surfaces","center","avg","transCenter","leftButtonDown","_onMouseUp","which","button","touchDown","startMouseX","startMouseY","startStart","startEnd","startArmRotation","cursor","onmousemove","_onMouseMove","onmouseup","diffX","diffY","horizontalNew","verticalNew","snapAngle","snapValue","parameters","emit","boundingRect","mouseX","mouseY","tooltipTimeout","_hideTooltip","dataPoint","_dataPointFromXY","_showTooltip","ontouchmove","_onTouchMove","ontouchend","_onTouchEnd","wheelDelta","detail","oldLength","newLength","_insideTriangle","triangle","bs","cs","distMax","closestDataPoint","closestDist","triangle1","triangle2","distX","distY","sqrt","line","dot","dom","borderRadius","boxShadow","borderLeft","contentWidth","offsetWidth","contentHeight","offsetHeight","lineHeight","dotWidth","dotHeight","mixin","_callbacks","once","self","removeListener","removeAllListeners","callbacks","cb","listeners","hasListeners","sub","sum","armLocation","armRotation","armLength","cameraLocation","cameraRotation","calculateCameraOrientation","rot","graph","onLoadCallback","loadInBackground","isLoaded","getLoadedProgress","getColumn","getValues","getValue","dataView","progress","prev","bar","MozBorderRadius","slide","onclick","togglePlay","onChangeCallback","playTimeout","playInterval","playLoop","setIndex","playNext","interval","clearInterval","getPlayInterval","setPlayLoop","doLoop","onChange","indexToLeft","startClientX","startSlideX","leftToIndex","_start","_end","_step","precision","_current","setRange","setStep","calculatePrettyStep","log10","log","LN10","step1","step2","step5","toPrecision","getStep","groups","forthArgument","defaultOptions","autoResize","throttleRedraw","orientation","axis","maxHeight","minHeight","_create","body","domProps","emitter","bind","hiddenDates","getScale","timeAxis","toScreen","_toScreen","toGlobalScreen","_toGlobalScreen","toTime","_toTime","toGlobalTime","_toGlobalTime","range","timeAxis2","currentTime","itemSet","itemsData","groupsData","getEventProperties","oncontextmenu","setGroups","setItems","_redraw","Core","Configurator","Validator","printStyle","configureOptions","_createConfigurator","markDirty","refreshItems","errorFound","validate","selection","getSelection","setSelection","newDataSet","initialLoad","getItemRange","setWindow","animation","fit","focus","itemData","_this","getDataRange","minItem","maxItem","factor","lhs","rhs","getStart","getEnd","show","getWidthLeft","getWidthRight","dataset","centerContainer","itemFromTarget","group","groupFromTarget","customTime","customTimeFromTarget","snap","snappedTime","what","foreground","labelSet","groupId","pageX","srcEvent","pageY","propagating","__WEBPACK_AMD_DEFINE_FACTORY__","__WEBPACK_AMD_DEFINE_ARRAY__","__WEBPACK_AMD_DEFINE_RESULT__","_firstTarget","hammer","events","propagatedHandler","_handled","stopped","stopPropagation","firstTarget","_handlers","Manager","PropagatingHammer","o","wrapper","pointerType","isFirst","handler","eventType","exportName","setTimeoutContext","bindFn","invokeArrayArg","arg","each","iterator","dest","src","merge","inherit","child","properties","childP","baseP","_super","boolOrFn","TYPE_FUNCTION","ifUndefined","val1","val2","addEventListeners","splitStr","removeEventListeners","inStr","str","find","inArray","findByKey","uniqueArray","results","prefixed","property","prefix","camelProp","VENDOR_PREFIXES","uniqueId","_uniqueId","getWindowForElement","doc","ownerDocument","defaultView","parentWindow","Input","manager","inputTarget","domHandler","ev","enable","init","createInputInstance","Type","inputClass","SUPPORT_POINTER_EVENTS","PointerEventInput","SUPPORT_ONLY_TOUCH","TouchInput","SUPPORT_TOUCH","TouchMouseInput","MouseInput","inputHandler","pointersLen","pointers","changedPointersLen","changedPointers","INPUT_START","isFinal","INPUT_END","INPUT_CANCEL","session","computeInputData","recognize","prevInput","pointersLength","firstInput","simpleCloneInputData","firstMultiple","offsetCenter","getCenter","timeStamp","deltaTime","angle","getAngle","getDistance","computeDeltaXY","offsetDirection","getDirection","deltaX","deltaY","rotation","getRotation","computeIntervalInputData","offsetDelta","prevDelta","velocity","velocityX","velocityY","last","lastInterval","COMPUTE_INTERVAL","getVelocity","DIRECTION_NONE","DIRECTION_LEFT","DIRECTION_RIGHT","DIRECTION_UP","DIRECTION_DOWN","PROPS_XY","atan2","PROPS_CLIENT_XY","evEl","MOUSE_ELEMENT_EVENTS","evWin","MOUSE_WINDOW_EVENTS","allow","pressed","POINTER_ELEMENT_EVENTS","POINTER_WINDOW_EVENTS","store","pointerEvents","SingleTouchInput","evTarget","SINGLE_TOUCH_TARGET_EVENTS","SINGLE_TOUCH_WINDOW_EVENTS","started","normalizeSingleTouches","all","touches","changed","changedTouches","TOUCH_TARGET_EVENTS","targetIds","getTouches","allTouches","INPUT_MOVE","identifier","changedTargetTouches","touch","mouse","TouchAction","cleanTouchActions","actions","TOUCH_ACTION_NONE","hasPanX","TOUCH_ACTION_PAN_X","hasPanY","TOUCH_ACTION_PAN_Y","TOUCH_ACTION_MANIPULATION","TOUCH_ACTION_AUTO","Recognizer","state","STATE_POSSIBLE","simultaneous","requireFail","stateStr","STATE_CANCELLED","STATE_ENDED","STATE_CHANGED","STATE_BEGAN","directionStr","getRecognizerByNameIfManager","otherRecognizer","recognizer","AttrRecognizer","PanRecognizer","pX","pY","PinchRecognizer","PressRecognizer","_timer","_input","RotateRecognizer","SwipeRecognizer","TapRecognizer","pTime","pCenter","recognizers","preset","handlers","touchAction","toggleCssProps","recognizeWith","requireFailure","cssProps","triggerDomEvent","gestureEvent","createEvent","initEvent","gesture","dispatchEvent","TEST_ELEMENT","MOBILE_REGEX","INPUT_TYPE_TOUCH","INPUT_TYPE_PEN","INPUT_TYPE_MOUSE","INPUT_TYPE_KINECT","DIRECTION_HORIZONTAL","DIRECTION_VERTICAL","DIRECTION_ALL","MOUSE_INPUT_MAP","mousedown","mousemove","mouseup","POINTER_INPUT_MAP","pointerdown","pointermove","pointerup","pointercancel","pointerout","IE10_POINTER_TYPE_ENUM",2,3,4,5,"MSPointerEvent","removePointer","eventTypeNormalized","isTouch","storeIndex","pointerId","SINGLE_TOUCH_INPUT_MAP","touchstart","touchmove","touchend","touchcancel","TOUCH_INPUT_MAP","inputEvent","inputData","isMouse","PREFIXED_TOUCH_ACTION","NATIVE_TOUCH_ACTION","TOUCH_ACTION_COMPUTE","compute","getTouchAction","preventDefaults","prevented","hasNone","preventSrc","STATE_RECOGNIZED","STATE_FAILED","dropRecognizeWith","dropRequireFailure","hasRequireFailures","canRecognizeWith","withState","tryEmit","canEmit","inputDataClone","process","reset","attrTest","optionPointers","isRecognized","directionTest","hasMoved","inOut","validPointers","validMovement","validTime","taps","posThreshold","validTouchTime","failTimeout","validInterval","validMultiTap","tapCount","VERSION","domEvents","userSelect","touchSelect","touchCallout","contentZooming","userDrag","tapHighlightColor","STOP","FORCED_STOP","force","curRecognizer","existing","Tap","Pan","Swipe","Pinch","Rotate","Press","__webpack_amd_options__","deltaDifference","scaleOffset","startToFront","endToFront","moveable","zoomable","zoomMin","zoomMax","animationTimer","_onDragStart","_onDrag","_onDragEnd","_onMouseWheel","_onTouch","_onPinch","validateDirection","getPointer","byUser","finalStart","finalEnd","_cancelAnimation","initStart","initEnd","easingName","easingFunction","initTime","anyChanged","dragging","ease","done","_applyRange","updateHiddenDates","newStart","newEnd","getRange","conversion","totalHidden","previousDelta","_isInsideRange","allowDragging","getHiddenDurationBetween","diffRange","safeStart","snapAwayFromHidden","safeEnd","zoomKey","pointer","pointerDate","_pointerToDate","zoom","centerDate","hiddenDuration","hiddenDurationBefore","getHiddenDurationBefore","hiddenDurationAfter","move","onTouch","isTouching","onRelease","isReleasing","offTouch","offRelease","_isResized","resized","_previousWidth","_previousHeight","convertHiddenOptions","repeat","dateItem","totalRange","pixelTime","startDate","endDate","runUntil","dayOffset","removeDuplicates","startHidden","isHidden","endHidden","rangeStart","rangeEnd","hidden","safeDates","printDates","stepOverHiddenDates","timeStep","previousTime","stepInHidden","currentValue","current","switchedYear","switchedMonth","switchedDay","correctTimeForHidden","totalDuration","partialDuration","accumulatedHiddenDuration","getAccumulatedHiddenDuration","newTime","timeOffset","requiredDuration","previousPoint","correctionEnabled","hammerUtil","Activator","onMouseWheel","isActive","backgroundVertical","backgroundHorizontal","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","_redrawTimer","scrollTop","scrollTopMin","customTimes","redrawCount","drawPoints","onRender","clickToUse","activator","_initAutoResize","component","configurator","configure","appliedOptions","setModuleOptions","_origRedraw","active","_stopAutoResize","setCustomTime","getCustomTime","addCustomTime","timestamp","some","removeCustomTime","getVisibleItems","getWindow","borderRootHeight","borderRootWidth","autoHeight","containerHeight","centerWidth","_updateScrollTop","visibilityTop","visibilityBottom","visibility","MAX_REDRAWS","repaint","setCurrentTime","getCurrentTime","_startAutoResize","_onResize","lastWidth","lastHeight","watchTimer","setInterval","initialScrollTop","oldScrollTop","_getScrollTop","newScrollTop","_setScrollTop","align","groupOrderSwap","fromGroup","toGroup","targetOrder","groupOrder","selectable","multiselect","editable","updateTime","updateGroup","groupEditable","onAdd","onUpdate","onMove","onRemove","onMoving","onAddGroup","onMoveGroup","onRemoveGroup","itemOptions","itemListeners","_onAdd","_onUpdate","_onRemove","groupListeners","_onAddGroups","_onUpdateGroups","_onRemoveGroups","groupIds","stackDirty","touchParams","groupTouchParams","UNGROUPED","BACKGROUND","box","_updateUngrouped","backgroundGroup","_onSelectItem","_onMultiSelectItem","_onAddItem","groupHammer","_onGroupDragStart","_onGroupDrag","_onGroupDragEnd","addCallback","dirty","displayed","hide","unselect","select","rawVisibleItems","visibleItems","_deselect","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","restack","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","groupResized","firstGroupIndex","firstGroupId","ungrouped","_getGroupId","getLabelSet","oldItemsData","getItems","_order","getGroups","removeItem","_getType","selected","_removeItem","groupData","groupOptions","oldGroupId","oldSubGroupId","subgroup","oldGroup","_constructByEndArray","endArray","dragLeftItem","dragRightItem","itemProps","_getGroupIndex","initialX","dragLeft","_cloneItemData","dragRight","selectedItem","baseGroupIndex","groupIndex","groupOffset","ctrlKey","metaKey","_onDragStartAddItem","xAbs","newItem","offsetLeft","updateGroupAllowed","newGroupBase","initial","updateTimeAllowed","initialStart","initialEnd","newOffset","_moveToGroup","originalOrder","movingUp","targetGroupTop","draggedGroupHeight","targetGroupHeight","targetGroup","draggedGroup","newOrder","origOrder","draggedId","numGroups","curPos","orgOffset","slippedPosition","switchGroup","shouldBeGroup","switchGroupId","shiftKey","oldSelection","newSelection","newItemData","_getItemRange","_item","itemSetFromTarget","minimumStep","autoScale","FORMAT","minorLabels","majorLabels","setMoment","setFormat","setMinimumStep","roundToMinor","hasNext","setScale","setAutoScale","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","isMajor","getLabelMinor","getLabelMajor","getClassName","even","today","currentWeek","currentMonth","currentYear","subgroups","subgroupIndex","subgroupOrderer","subgroupOrder","byStart","byEnd","checkRangedItems","inner","marker","Element","title","getLabelWidth","markerHeight","lastMarkerHeight","limitSize","repositionX","customOrderedItems","_updateVisibleItems","nostack","_calculateHeight","offsetTop","repositionY","resetSubgroups","setParent","orderSubgroups","_checkIfVisible","sortArray","sortField","itemIndex","removeFromDataSet","startArray","orderByStart","orderByEnd","oldVisibleItems","visibleItemsLookup","lowerBound","upperBound","_checkIfVisibleWithReference","initialPosByStart","_traceVisible","initialPosByEnd","initialPos","breakCondition","isVisible","EPSILON","aTime","bTime","iMax","collidingItem","jj","collision","newTop","baseClassName","_updateContents","_updateTitle","_updateDataAttributes","_updateStyle","getComputedStyle","maxWidth","_repaintDeleteButton","_repaintDragLeft","_repaintDragRight","contentLeft","parentWidth","boxWidth","groupChanged","deleteButton","template","_contentToString","removeAttribute","dataAttributes","attributes","setAttribute","outerHTML","itemSetHeight","marginLeft","onTop","itemSubgroup","totalHeight","newHeight","lines","majorTexts","minorTexts","lineTop","showMinorLabels","showMajorLabels","parentChanged","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineHeight","minorLineWidth","majorLineHeight","majorLineWidth","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","timeLabelsize","minorCharWidth","xNext","labelMinor","xFirstMajorLabel","labelFits","_repaintMinorText","_repaintMajorText","_repaintMajorLine","_repaintMinorLine","leftTime","leftText","widthText","majorCharWidth","pop","createTextNode","childNodes","nodeValue","measureCharMinor","measureCharMajor","overlay","_onTapOverlay","onClick","_hasParent","deactivate","escListener","activate","display","unbind","_exportFunctions","_bound","keydown","keyup","_keys","fromCharCode","down","handleEvent","up","keyCode","bound","bindAll","getKey","newBindings","eventParams","drag","warned","substring","showCurrentTime","currentTimeTimer","_interopRequireDefault","__esModule","default","_classCallCheck","instance","Constructor","defineProperty","_createClass","defineProperties","descriptor","enumerable","configurable","writable","protoProps","staticProps","_ColorPicker","_ColorPicker2","parentModule","defaultContainer","pixelRatio","changedOptions","allowCreation","initialized","popupCounter","showButton","moduleOptions","domElements","popupDiv","popupLimit","popupHistory","colorPicker","_removePopup","_clean","_handleObject","_makeItem","_makeHeader","generateButton","_printOptions","onmouseover","onmouseout","optionsContainer","_push","insertTo","_showPopupIfNeeded","path","_arguments","_this2","_len","_key","_ret2","div","objectLabel","selectedValue","_update","_makeLabel","err","popupString","popupValue","oninput","_setupPopup","_this3","html","hideTimeout","deleteTimeout","_this4","correspondingElement","checkbox","checked","_this5","defaultColor","_showColorPicker","_this6","bodyRect","pickerX","pickerY","setColor","setCallback","colorString","checkOnly","visibleInSet","subObj","newPath","_getValue","_handleArray","_makeTextInput","_makeCheckbox","draw","physics","solver","enabledPath","enabledValue","error","_makeColorField","_makeDropdown","_makeRange","_constructOptions","optionsObj","getOptions","ColorPicker","generated","centerCoordinates","hueCircle","initialColor","previousColor","applied","updateCallback","_bindHammer","_setSize","htmlColors","black","navy","darkblue","mediumblue","darkgreen","teal","darkcyan","deepskyblue","darkturquoise","mediumspringgreen","lime","springgreen","aqua","cyan","midnightblue","dodgerblue","lightseagreen","forestgreen","seagreen","darkslategray","limegreen","mediumseagreen","turquoise","royalblue","steelblue","darkslateblue","mediumturquoise","indigo","darkolivegreen","cadetblue","cornflowerblue","mediumaquamarine","dimgray","slateblue","olivedrab","slategray","lightslategray","mediumslateblue","lawngreen","chartreuse","aquamarine","maroon","purple","olive","gray","skyblue","lightskyblue","blueviolet","darkred","darkmagenta","saddlebrown","darkseagreen","lightgreen","mediumpurple","darkviolet","palegreen","darkorchid","yellowgreen","sienna","brown","darkgray","lightblue","greenyellow","paleturquoise","lightsteelblue","powderblue","firebrick","darkgoldenrod","mediumorchid","rosybrown","darkkhaki","silver","mediumvioletred","indianred","peru","chocolate","tan","lightgrey","palevioletred","thistle","orchid","goldenrod","crimson","gainsboro","plum","burlywood","lightcyan","lavender","darksalmon","violet","palegoldenrod","lightcoral","khaki","aliceblue","honeydew","azure","sandybrown","wheat","beige","whitesmoke","mintcream","ghostwhite","salmon","antiquewhite","linen","lightgoldenrodyellow","oldlace","fuchsia","magenta","deeppink","orangered","tomato","hotpink","coral","darkorange","lightsalmon","orange","lightpink","pink","gold","peachpuff","navajowhite","moccasin","bisque","mistyrose","blanchedalmond","papayawhip","lavenderblush","seashell","cornsilk","lemonchiffon","floralwhite","snow","yellow","lightyellow","ivory","white","setInitial","htmlColor","_isColorString","rgbaArray","rgbObj","alpha","_setColor","_generateHueCircle","storePrevious","_hide","_updatePicker","alert","angleConvert","colorPickerSelector","colorPickerCanvas","pixelRation","devicePixelRatio","webkitBackingStorePixelRatio","mozBackingStorePixelRatio","msBackingStorePixelRatio","oBackingStorePixelRatio","backingStorePixelRatio","setTransform","putImageData","circle","brightnessRange","opacityRange","initialColorDiv","newColorDiv","colorPickerDiv","opacityDiv","brightnessDiv","arrowDiv","_setOpacity","_setBrightness","brightnessLabel","opacityLabel","cancelButton","applyButton","_apply","saveButton","_save","loadButton","_loadLast","pinch","_moveSelector","sat","hfac","sfac","fillRect","getImageData","centerY","centerX","newLeft","referenceOptions","subObject","usedOptions","check","__any__","getSuggestion","__type__","checkFields","referenceOption","refOptionObj","optionType","refOptionType","print","printLocation","localSearch","findInOptions","globalSearch","localSearchThreshold","globalSearchThreshold","indexMatch","closestMatch","recursive","closestMatchPath","lowerCaseOption","op","levenshteinDistance","matrix","boolean","any","function","null","groupsDraggable","linegraph","getLegend","isGroupVisible","yAxisLeft","yAxisRight","legendLeft","legendRight","screenToValue","yAxisOrientation","defaultGroup","sampling","graphHeight","shaded","barChart","sideBySide","interpolation","parametrization","dataAxis","icons","alignZeros","legend","abortedGraphUpdate","updateSVGheight","updateSVGheightOnResize","lastStart","svgElements","groupsUsingDefaultStyles","COUNTER","svg","framework","BarFunctions","_updateAllGroupData","_updateGroup","removeGroup","addGroup","groupsContent","ungroupedCounter","forceGraphUpdate","_updateGraph","rangePerPixelInv","preprocessedGroupData","processedGroupData","groupRanges","changeCalled","minDate","maxDate","_getRelevantData","_applySampling","_convertXcoordinates","_getYRanges","_updateYAxis","MAX_CYCLES","_convertYcoordinates","dataContainer","guess","increment","amountOfPoints","xDistance","pointsPerPixel","sampledData","combinedDataLeft","combinedDataRight","getData","getYRange","getStackedYRange","minVal","maxVal","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","ignore","_toggleAxisVisiblity","drawIcons","master","lineOffset","stepPixels","zeroCrossing","amountOfSteps","tempGroups","axisUsed","datapoints","xValue","yValue","extractedData","svgHeight","labelValue","convertValue","setZeroPosition","linegraphOptions","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","linegraphSVG","DOMelements","labels","conversionFactor","minWidth","iconsRemoved","amountOfGroups","lineContainer","graphOptions","_redrawGroupIcons","iconHeight","iconOffset","groupArray","drawIcon","_cleanupIcons","activeGroups","_redrawLabels","_redrawTitle","stepSize","marginRange","valueAtBottom","marginEnd","maxLabelSize","stepIndex","_redrawLabel","_redrawLine","titleWidth","titleCharHeight","invertedValue","convertedValue","characterHeight","largestWidth","textMinor","textMajor","textTitle","measureCharTitle","titleCharWidth","customRange","formattingFunction","marginStart","deadSpace","majorSteps","minorSteps","setFirst","safeRange","minimumStepValue","orderOfMagnitude","minorStepIdx","magnitudefactor","solutionFound","niceStart","niceEnd","rounded","previous","steps","usingDefaultStyle","zeroPosition","Line","Bar","Points","SVGcontainer","fillPath","fillHeight","outline","barWidth","bar1Height","bar2Height","icon","combinedData","groupLabel","intersections","_getDataIntersections","_getStackedYRange","accumulatedNegative","accumulatedPositive","xpos","coreDistance","amount","resolved","_catmullRom","_linear","dFill","_catmullRomUniform","p0","bp1","bp2","normalization","d1","d2","d3","A","N","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","getGroupTemplate","callbackResult","getCallback","Bargraph","drawData","barPoints","heightOffset","_getSafeDrawData","nextKey","prevKey","pointData","side","iconSize","iconSpacing","excludeFromLegend","textArea","scrollableHeight","drawLegendIcons","paddingTop","nodes","nodeIndices","edges","edgeIndices","eventListeners","onTap","onDoubleTap","onHold","onDragStart","onDrag","onDragEnd","onPinch","onMouseMove","onContext","functions","createNode","createEdge","view","bindEventListeners","images","_modulesGroups2","_modulesCanvas2","selectionHandler","_modulesSelectionHandler2","interactionHandler","_modulesInteractionHandler2","_modulesView2","renderer","_modulesCanvasRenderer2","_modulesPhysicsEngine2","layoutEngine","_modulesLayoutEngine2","clustering","_modulesClustering2","manipulation","_modulesManipulationSystem2","nodesHandler","_modulesNodesHandler2","edgesHandler","_modulesEdgesHandler2","_modulesKamadaKawaiJs2","_modulesGroups","_modulesNodesHandler","_modulesEdgesHandler","_modulesPhysicsEngine","_modulesClustering","_modulesCanvasRenderer","_modulesCanvas","_modulesView","_modulesInteractionHandler","_modulesSelectionHandler","_modulesLayoutEngine","_modulesManipulationSystem","_sharedConfigurator","_sharedConfigurator2","_sharedValidator","_sharedValidator2","_optionsJs","_modulesKamadaKawaiJs","layout","interaction","networkOptions","_updateVisibleIndices","nodeId","edgeId","updatePhysicsData","_updateValueRange","unselectAll","dotData","gephi","gephiData","valueTotal","setValueRange","canvasToDOM","DOMtoCanvas","findNode","isCluster","openCluster","cluster","getNodesInCluster","clusterByConnection","clusterByHubsize","clusterOutliers","getSeed","enableEditMode","disableEditMode","addNodeMode","editNode","editNodeMode","addEdgeMode","editEdgeMode","deleteSelected","getPositions","storePositions","moveNode","getBoundingBox","getConnectedNodes","objectId","getConnectedEdges","startSimulation","stopSimulation","stabilize","getSelectedNodes","getSelectedEdges","getNodeAt","getEdgeAt","edge","selectNodes","selectEdges","getViewPosition","releaseNode","getOptionsFromConfigurator","Groups","defaultIndex","groupsArray","defaultGroups","useDefaultGroups","optionFields","groupName","groupname","_componentsNode","_componentsNode2","_componentsSharedLabel","_componentsSharedLabel2","NodesHandler","nodesListeners","borderWidthSelected","brokenImage","fixed","face","strokeColor","image","labelHighlightBold","level","mass","scaling","maxVisible","drawThreshold","customScalingFunction","shadow","shape","shapeProperties","borderDashes","useImageSize","parseOptions","updateShape","updateLabelModule","_reset","doNotEmit","oldNodesData","newNodes","positionInitially","changedData","dataChanged","constructorClass","clearPositions","dataArray","boundingBox","nodeList","nodeObj","toId","fromId","edgeList","_sharedLabel","_sharedLabel2","_nodesShapesBox","_nodesShapesBox2","_nodesShapesCircle","_nodesShapesCircle2","_nodesShapesCircularImage","_nodesShapesCircularImage2","_nodesShapesDatabase","_nodesShapesDatabase2","_nodesShapesDiamond","_nodesShapesDiamond2","_nodesShapesDot","_nodesShapesDot2","_nodesShapesEllipse","_nodesShapesEllipse2","_nodesShapesIcon","_nodesShapesIcon2","_nodesShapesImage","_nodesShapesImage2","_nodesShapesSquare","_nodesShapesSquare2","_nodesShapesStar","_nodesShapesStar2","_nodesShapesText","_nodesShapesText2","_nodesShapesTriangle","_nodesShapesTriangle2","_nodesShapesTriangleDown","_nodesShapesTriangleDown2","Node","imagelist","grouplist","baseSize","baseFontSize","predefinedPosition","labelModule","currentShape","groupObj","imageObj","load","distanceToBorder","sizeDiff","fontDiff","updateBoundingBox","resize","parentOptions","newOptions","parsedColor","_slicedToArray","sliceIterator","_arr","_n","_e","_s","Symbol","Label","pointToSelf","fontOptions","yLine","nodeOptions","labelDirty","baseline","viewFontSize","calculateLabelSize","_drawBackground","_drawText","lineMargin","fontSize","_getColor2","_getColor","_getColor22","fontColor","_setAlignment2","_setAlignment","_setAlignment22","lineCount","strokeText","_processLabel","measureText","newOptionsArray","_inherits","subClass","superClass","setPrototypeOf","__proto__","_get","_x","_x2","_x3","_again","receiver","desc","getOwnPropertyDescriptor","getPrototypeOf","_utilNodeBase","_utilNodeBase2","Box","_NodeBase","textSize","getTextSize","selectionLineWidth","roundRect","enableShadow","disableShadow","save","enableBorderDashes","disableBorderDashes","restore","NodeBase","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY","setLineDash","dashes","_utilCircleImageBase","_utilCircleImageBase2","Circle","_CircleImageBase","diameter","_drawRawCircle","CircleImageBase","labelOffset","imageLoaded","ratio","networkScaleInv","globalAlpha","drawImage","labelDimensions","CircularImage","_swapToImageResizeWhenImageLoaded","_resizeImage","clip","_drawImageAtPosition","_drawImageLabel","_distanceToBorder","Database","database","_utilShapeBase","_utilShapeBase2","Diamond","_ShapeBase","_resizeShape","_drawShape","ShapeBase","sizeMultiplier","Dot","Ellipse","ellipse","Icon","_icon","iconTextSpacing","Image","Square","Star","Text","Triangle","TriangleDown","_componentsEdge","_componentsEdge2","EdgesHandler","edgesListeners","arrows","scaleFactor","hoverWidth","selectionWidth","selfReferenceSize","smooth","forceDirection","roundness","emitChange","edgeData","edgeOptions","reconnectEdges","markAllEdgesAsDirty","updateEdgeType","oldEdgesData","edgesData","oldEdge","disconnect","showInternalIds","connect","cleanup","edgeType","colorDirty","_edgesCubicBezierEdge","_edgesCubicBezierEdge2","_edgesBezierEdgeDynamic","_edgesBezierEdgeDynamic2","_edgesBezierEdgeStatic","_edgesBezierEdgeStatic2","_edgesStraightEdge","_edgesStraightEdge2","Edge","baseWidth","connected","_setInteractionWidths","changeInType","attachEdge","detachEdge","widthDiff","via","drawLine","drawArrows","drawLabel","viaNode","drawArrowHead","node1","node2","getPoint","translate","_rotateForLabelAlignment","_pointOnCircle","xFrom","yFrom","xTo","yTo","xObj","yObj","getDistanceToEdge","angleInDegrees","rotate","percentage","colorsDefined","_x4","_x5","_utilCubicBezierEdgeBase","_utilCubicBezierEdgeBase2","CubicBezierEdge","_CubicBezierEdgeBase","_getViaCoordinates2","_getViaCoordinates","_getViaCoordinates22","via1","via2","bezierCurveTo","x1","y1","x2","y2","nearNode","_findBorderPositionBezier","x3","y3","_ref","_ref2","_getDistanceToBezierEdge","_ref3","_ref32","vec","_BezierEdgeBase2","_BezierEdgeBase3","CubicBezierEdgeBase","_BezierEdgeBase","minDistance","lastX","lastY","_getDistanceToLine","_EdgeBase2","_EdgeBase3","BezierEdgeBase","_EdgeBase","distanceToPoint","difference","EdgeBase","getColor","getLineWidth","_drawDashedLine","_drawLine","_line","_getCircleData2","_getCircleData","_getCircleData22","_circle","pattern","lineDashOffset","_getCircleData3","_getCircleData32","dashedLine","_getCircleData4","_getCircleData42","_findBorderPosition","_findBorderPositionCircle","_getCircleData5","_getCircleData52","colorOptions","grd","createLinearGradient","fromColor","toColor","addColorStop","_getDistanceToEdge","_getCircleData6","_getCircleData62","px","py","something","u","arrowPos","guideOffset","findBorderPosition","guidePos","arrow","_angle","_getCircleData7","_getCircleData72","_length","_utilBezierEdgeBase","_utilBezierEdgeBase2","BezierEdgeDynamic","_boundFunction","positionBezierNode","setupSupportNode","parentEdgeId","quadraticCurveTo","_x6","BezierEdgeStatic","xVia","yVia","pi","originalAngle","myAngle","_utilEdgeBase","_utilEdgeBase2","StraightEdge","edgeSegmentLength","toBorderDist","toBorderPoint","borderPos","_componentsPhysicsBarnesHutSolver","_componentsPhysicsBarnesHutSolver2","_componentsPhysicsRepulsionSolver","_componentsPhysicsRepulsionSolver2","_componentsPhysicsHierarchicalRepulsionSolver","_componentsPhysicsHierarchicalRepulsionSolver2","_componentsPhysicsSpringSolver","_componentsPhysicsSpringSolver2","_componentsPhysicsHierarchicalSpringSolver","_componentsPhysicsHierarchicalSpringSolver2","_componentsPhysicsCentralGravitySolver","_componentsPhysicsCentralGravitySolver2","_componentsPhysicsFA2BasedRepulsionSolver","_componentsPhysicsFA2BasedRepulsionSolver2","_componentsPhysicsFA2BasedCentralGravitySolver","_componentsPhysicsFA2BasedCentralGravitySolver2","PhysicsEngine","physicsBody","physicsNodeIndices","physicsEdgeIndices","forces","velocities","physicsEnabled","simulationInterval","requiresTimeout","previousStates","referenceState","freezeCache","renderTimer","adaptiveTimestep","adaptiveTimestepEnabled","adaptiveCounter","adaptiveInterval","stabilized","startedStabilization","stabilizationIterations","ready","barnesHut","theta","gravitationalConstant","centralGravity","springLength","springConstant","damping","avoidOverlap","forceAtlas2Based","repulsion","nodeDistance","hierarchicalRepulsion","maxVelocity","minVelocity","stabilization","iterations","updateInterval","onlyDynamicEdges","timestep","layoutFailed","initPhysics","nodesSolver","edgesSolver","gravitySolver","modelOptions","viewFunction","simulationStep","_emitStabilized","startTime","physicsTick","physicsTime","runDoubleSpeed","amountOfIterations","calculateForces","moveNodes","revert","_evaluateStepQuality","nodeIds","positions","vx","vy","dpos","reference","maxNodeVelocity","averageNodeVelocity","velocityAdaptiveThreshold","nodeVelocity","_performStep","totalVelocity","solve","targetIterations","_freezeNodes","_stabilizationBatch","_finalizeStabilization","_restoreFrozenNodes","BarnesHutSolver","barnesHutTree","randomSeed","thetaInversed","overlapAvoidanceFactor","nodeCount","_formBarnesHutTree","_getForceContribution","NW","NE","SW","SE","parentBranch","childrenCount","centerOfMass","calcSize","_calculateForces","gravityForce","fx","fy","minX","minY","maxX","maxY","minimumTreeSize","rootSize","halfRootSize","_splitBranch","_placeInTree","totalMass","totalMassInv","biggestSize","skipMassUpdate","_updateBranchMass","_placeInRegion","region","seededRandom","containedNode","_insertRegion","childSize","_drawBranch","branch","RepulsionSolver","repulsingForce","HierarchicalRepulsionSolver","steepness","SpringSolver","edgeLength","node3","_calculateSpringForce","springForce","HierarchicalSpringSolver","springFx","springFy","totalFx","totalFy","correctionFx","correctionFy","CentralGravitySolver","_BarnesHutSolver2","_BarnesHutSolver3","ForceAtlas2BasedRepulsionSolver","_BarnesHutSolver","degree","_CentralGravitySolver2","_CentralGravitySolver3","ForceAtlas2BasedCentralGravitySolver","_CentralGravitySolver","_componentsNodesCluster","_componentsNodesCluster2","ClusterEngine","clusteredNodes","hubsize","_getHubSize","_checkOptions","nodesToCluster","refreshData","joinCondition","childNodesObj","childEdgesObj","clonedOptions","_cloneOptions","hiddenByCluster","_cluster","edgeCount","clusters","usedNodes","visibleEdges","gatheringSuccessful","childNodeId","_getConnectedId","clusterByEdgeCount","clusterNodeProperties","parentNodeId","parentClonedOptions","childClonedOptions","amountOfConnections","clusterEdgeProperties","childNode","otherNodeId","childKeys","createEdges","_edge","newEdge","clusteringEdgeReplacingId","processProperties","childNodesOptions","childEdgesOptions","clusterId","_getClusterPosition","clusterNode","containedNodes","containedEdges","_createClusterEdges","clusterNodeId","releaseFunction","clusterPosition","newPositions","edgesToBeDeleted","otherCluster","transferEdge","replacedEdge","nodesArray","average","averageSquared","hubCounter","largestHub","variance","standardDeviation","hubThreshold","_Node2","_Node3","Cluster","_Node","requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame","CanvasRenderer","redrawRequested","renderingActive","renderRequests","allowRedraw","hideEdgesOnDrag","hideNodesOnDrag","_determineBrowserMethod","_resizeNodes","_requestRedraw","_startRendering","cancelAnimationFrame","_renderStep","_drawEdges","_drawNodes","controlNodesActive","_drawControlNodes","alwaysShow","topLeft","bottomRight","viewableArea","isSelected","isBoundingBoxOverlappingWith","browserType","Canvas","resizeTimer","resizeFunction","cameraState","hammerFrame","_cleanUp","previousWidth","currentViewCenter","distanceFromCenter","tabIndex","_prepareValue","emitEvent","oldWidth","oldHeight","previousRation","_getCameraState","_setCameraState","_XconvertCanvasToDOM","_YconvertCanvasToDOM","_XconvertDOMtoCanvas","_YconvertDOMtoCanvas","_NetworkUtil","_NetworkUtil2","View","animationSpeed","renderRefreshRate","animationEasingFunction","easingTime","sourceScale","targetScale","sourceTranslation","targetTranslation","lockedOnNodeId","lockedOnNodeOffset","touchTime","initialZoom","zoomLevel","positionDefined","_getRange","numberOfNodes","yDistance","xZoomLevel","yZoomLevel","_findCenter","animationOptions","nodePosition","lockedOnNode","animateView","locked","_transitionRedraw","viewCenter","_lockedRedraw","finished","NetworkUtil","allNodes","specificNodes","_componentsNavigationHandler","_componentsNavigationHandler2","_componentsPopup","_componentsPopup2","InteractionHandler","navigationHandler","popup","popupObj","popupTimer","dragNodes","dragView","keyboard","speed","bindToWindow","navigationButtons","tooltipDelay","zoomView","pinched","checkSelectionChanges","_generateClickEvent","previouslySelectedEdgeCount","_getSelectedEdgeCount","previouslySelectedNodeCount","_getSelectedNodeCount","previousSelection","selectAdditionalOnPoint","selectOnPoint","selectedEdgesCount","selectedNodesCount","currentSelection","_determineIfDifferent2","_determineIfDifferent","nodesChanges","edgesChanges","nodeSelected","selectObject","selectionObj","xFixed","yFixed","scaleOld","preScaleDragPointer","scaleFrac","tx","ty","postScaleDragPointer","popupVisible","_checkHidePopup","setPosition","_checkShowPopup","hoverObject","pointerObj","previousPopupObjId","nodeUnderCursor","popupType","overlappingNodes","isOverlappingWith","getTitle","overlappingEdges","popupTargetType","popupTargetId","setText","_pointerToPositionObject","stillOnObj","overNode","NavigationHandler","iconsCreated","navigationHammers","boundFunctions","activated","configureKeyboardBindings","loadNavigationElements","cleanNavigation","navigationDOM","navigationDivs","navigationDivActions","_fit","bindToRedraw","_stopMovement","boundAction","unbindFromRedraw","Popup","doShow","SelectionHandler","hoverObj","selectConnectedEdges","hoverConnectedEdges","updateSelection","selectionChanged","deselectObject","emptySelection","DOM","highlightEdges","_selectConnectedEdges","_addToSelection","_removeFromSelection","canvasPos","returnNode","positionObject","_getAllNodesOverlappingWith","_getEdgesOverlappingWith","returnEdge","_getAllEdgesOverlappingWith","clusterSize","_addToHover","hoverChanged","blurObject","_hoverConnectedEdges","edgeIds","idArray","RangeError","LayoutEngine","initialRandomSeed","optionsBackup","improvedLayout","hierarchical","levelSeparation","sortMethod","hierarchicalLevels","setupHierarchicalLayout","layoutNetwork","prevHierarchicalState","adaptAllOptions","MAX_LEVELS","clusterThreshold","startLength","before","clusterBridges","after","_declusterAll","info","kamadaKawai","_shiftToCenter","_getRangeCore","clustersPresent","definedLevel","undefinedLevel","nodeSpacing","_determineLevelsByHubsize","_determineLevelsDirected","distribution","_getDistribution","_placeNodesByHierarchy","positionedNodes","_placeBranchNodes","hubSize","_setLevelByHubsize","minLevel","_setLevelDirected","parentId","parentLevel","childNodeLevel","ManipulationSystem","editMode","manipulationDiv","editModeDiv","closeDiv","manipulationHammers","temporaryUIFunctions","temporaryEventFunctions","temporaryIds","guiEnabled","inMode","selectedControlNode","initiallyActive","addNode","addEdge","editEdge","deleteNode","deleteEdge","controlNodeStyle","_restore","_setup","showManipulatorToolbar","_createEditButton","manipulationDOM","selectedNodeCount","selectedEdgeCount","selectedTotalCount","needSeperator","_createAddNodeButton","_createSeperator","_createAddEdgeButton","_createEditNodeButton","_createEditEdgeButton","_createDeleteButton","_bindHammerToDiv","toggleEditMode","_temporaryBindEvent","_createBackButton","_createDescription","_performAddNode","_getSelectedNode","finalizedData","_temporaryBindUI","_handleConnect","_finishConnect","_dragControlNode","edgeBeingEditedId","controlNodeFrom","_getNewTargetNode","controlNodeTo","_controlNodeTouch","_controlNodeDragStart","_controlNodeDrag","_controlNodeDragEnd","findBorderPositions","selectedNodes","selectedEdges","deleteFunction","_createWrappers","_removeManipulationDOM","_createButton","_cleanManipulatorHammers","_cleanupTemporaryNodesAndEdges","_unbindTemporaryUIs","_unbindTemporaryEvents","labelClassName","newFunction","boundFunction","UIfunctionName","functionName","eventName","domElement","indexTempEdge","indexTempNode","lastTouch","fromSelect","toSelect","overlappingNodeIds","_performEditEdge","targetNode","connectionEdge","connectFromId","_performAddEdge","clickData","defaultData","sourceNodeId","targetNodeId","_this7","_componentsAlgorithmsFloydWarshallJs","_componentsAlgorithmsFloydWarshallJs2","KamadaKawai","edgeStrength","distanceSolver","edgesArray","ignoreClusters","D_matrix","getDistances","_createL_matrix","_createK_matrix","innerThreshold","maxInnerIterations","maxEnergy","highE_nodeId","dE_dx","dE_dy","delta_m","subIterations","_getHighestEnergyNode2","_getHighestEnergyNode","_getHighestEnergyNode22","_moveNode","_getEnergy2","_getEnergy","_getEnergy22","maxEnergyNodeId","dE_dx_max","dE_dy_max","nodeIdx","_getEnergy3","_getEnergy32","x_m","y_m","iIdx","x_i","y_i","denominator","K_matrix","L_matrix","d2E_dx2","d2E_dxdy","d2E_dy2","FloydWarshall","k","CanvasRenderingContext2D","square","s2","ir","triangleDown","star","diamond","r2d","kappa","ox","oy","xe","ye","xm","ym","wEllipse","hEllipse","ymb","yeb","xt","yt","xi","yi","xl","yl","xr","yr","patternLength","slope","distRemaining","patternIndex","dashLength","parseDOT","parseGraph","first","nextPreview","isAlphaNumeric","regexAlphaNumeric","setValue","graphs","attr","getToken","tokenType","TOKENTYPE","NULL","isComment","DELIMITER","c2","DELIMITERS","IDENTIFIER","newSyntaxError","UNKNOWN","chop","parseStatements","parseStatement","subgraph","parseSubgraph","parseEdge","parseAttributeStatement","parseNodeStatement","subgraphs","parseAttributeList","message","maxLength","forEach2","elem1","elem2","setProp","convertAttr","mapping","visProp","visPropI","graphData","dotNode","graphNode","NODE_ATTR_MAPPING","convertEdge","dotEdge","graphEdge","EDGE_ATTR_MAPPING","subEdge","fontsize","fontcolor","labelfontcolor","fontname","fillcolor","labeltooltip","{","}","[","]",";","=",",","->","--","gephiJSON","inheritColor","gEdges","gNodes","gEdge","gNode","imageBroken","url","imageToCache","brokenUrl","imageToLoadBrokenUrlOn","onerror","_addImageToCache","imageToRedrawWith","cachedImage","img","onload","_redrawWithImage","_tryloadBrokenUrl","edit","del","back","addDescription","edgeDescription","editEdgeDescription","createEdgeError","deleteClusterError","editClusterError"],"mappings":"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"} \ No newline at end of file diff --git a/VIS/dist/vis.min.css b/VIS/dist/vis.min.css new file mode 100644 index 0000000..529a6b0 --- /dev/null +++ b/VIS/dist/vis.min.css @@ -0,0 +1 @@ +.vis-background,.vis-labelset,.vis-timeline{overflow:hidden}.vis .overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.vis-active{box-shadow:0 0 10px #86d5f8}.vis [class*=span]{min-height:0;width:auto}div.vis-configuration{position:relative;display:block;float:left;font-size:9pt}div.vis-configuration-wrapper{display:block;width:700px}div.vis-configuration.vis-config-option-container{display:block;width:495px;background-color:#fff;border:2px solid #f7f8fa;border-radius:4px;margin-top:20px;left:10px;padding-left:5px}div.vis-configuration.vis-config-button{display:block;width:495px;height:25px;vertical-align:middle;line-height:25px;background-color:#f7f8fa;border:2px solid #ceced0;border-radius:4px;margin-top:20px;left:10px;padding-left:5px;cursor:pointer;margin-bottom:30px}div.vis-configuration.vis-config-button.hover{background-color:#4588e6;border:2px solid #214373;color:#fff}div.vis-configuration.vis-config-item{display:block;float:left;width:495px;height:25px;vertical-align:middle;line-height:25px}div.vis-configuration.vis-config-item.vis-config-s2{left:10px;background-color:#f7f8fa;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-item.vis-config-s3{left:20px;background-color:#e4e9f0;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-item.vis-config-s4{left:30px;background-color:#cfd8e6;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-header{font-size:18px;font-weight:700}div.vis-configuration.vis-config-label{width:90pt;height:25px;line-height:25px}div.vis-configuration.vis-config-label.vis-config-s3{width:110px}div.vis-configuration.vis-config-label.vis-config-s4{width:75pt}div.vis-configuration.vis-config-colorBlock{top:1px;width:30px;height:19px;border:1px solid #444;border-radius:2px;padding:0;margin:0;cursor:pointer}input.vis-configuration.vis-config-checkbox{left:-5px}input.vis-configuration.vis-config-rangeinput{position:relative;top:-5px;width:60px;height:13px;padding:1px;margin:0;pointer-events:none}.vis-panel,.vis-timeline{padding:0;box-sizing:border-box}input.vis-configuration.vis-config-range{-webkit-appearance:none;border:0 solid #fff;background-color:transparent;width:300px;height:20px}input.vis-configuration.vis-config-range::-webkit-slider-runnable-track{width:300px;height:5px;background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(to bottom,#dedede 0,#c8c8c8 99%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8', GradientType=0 );border:1px solid #999;box-shadow:#aaa 0 0 3px 0;border-radius:3px}input.vis-configuration.vis-config-range::-webkit-slider-thumb{-webkit-appearance:none;border:1px solid #14334b;height:17px;width:17px;border-radius:50%;background:#3876c2;background:-moz-linear-gradient(top,#3876c2 0,#385380 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3876c2),color-stop(100%,#385380));background:-webkit-linear-gradient(top,#3876c2 0,#385380 100%);background:-o-linear-gradient(top,#3876c2 0,#385380 100%);background:-ms-linear-gradient(top,#3876c2 0,#385380 100%);background:linear-gradient(to bottom,#3876c2 0,#385380 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380', GradientType=0 );box-shadow:#111927 0 0 1px 0;margin-top:-7px}input.vis-configuration.vis-config-range:focus{outline:0}input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track{background:#9d9d9d;background:-moz-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#9d9d9d),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-o-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:linear-gradient(to bottom,#9d9d9d 0,#c8c8c8 99%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8', GradientType=0 )}input.vis-configuration.vis-config-range::-moz-range-track{width:300px;height:10px;background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(to bottom,#dedede 0,#c8c8c8 99%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8', GradientType=0 );border:1px solid #999;box-shadow:#aaa 0 0 3px 0;border-radius:3px}input.vis-configuration.vis-config-range::-moz-range-thumb{border:none;height:1pc;width:1pc;border-radius:50%;background:#385380}input.vis-configuration.vis-config-range:-moz-focusring{outline:#fff solid 1px;outline-offset:-1px}input.vis-configuration.vis-config-range::-ms-track{width:300px;height:5px;background:0 0;border-color:transparent;border-width:6px 0;color:transparent}input.vis-configuration.vis-config-range::-ms-fill-lower{background:#777;border-radius:10px}input.vis-configuration.vis-config-range::-ms-fill-upper{background:#ddd;border-radius:10px}input.vis-configuration.vis-config-range::-ms-thumb{border:none;height:1pc;width:1pc;border-radius:50%;background:#385380}input.vis-configuration.vis-config-range:focus::-ms-fill-lower{background:#888}input.vis-configuration.vis-config-range:focus::-ms-fill-upper{background:#ccc}.vis-configuration-popup{position:absolute;background:rgba(57,76,89,.85);border:2px solid #f2faff;line-height:30px;height:30px;width:150px;text-align:center;color:#fff;font-size:14px;border-radius:4px;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.vis-configuration-popup:after,.vis-configuration-popup:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.vis-configuration-popup:after{border-color:rgba(136,183,213,0);border-left-color:rgba(57,76,89,.85);border-width:8px;margin-top:-8px}.vis-configuration-popup:before{border-color:rgba(194,225,245,0);border-left-color:#f2faff;border-width:9pt;margin-top:-9pt}.vis-timeline{position:relative;border:1px solid #bfbfbf;margin:0}.vis-panel{position:absolute;margin:0}.vis-panel.vis-bottom,.vis-panel.vis-center,.vis-panel.vis-left,.vis-panel.vis-right,.vis-panel.vis-top{border:1px #bfbfbf}.vis-panel.vis-center,.vis-panel.vis-left,.vis-panel.vis-right{border-top-style:solid;border-bottom-style:solid;overflow:hidden}.vis-panel.vis-bottom,.vis-panel.vis-center,.vis-panel.vis-top{border-left-style:solid;border-right-style:solid}.vis-panel>.vis-content{position:relative}.vis-panel .vis-shadow{position:absolute;width:100%;height:1px;box-shadow:0 0 10px rgba(0,0,0,.8)}.vis-itemset,.vis-labelset,.vis-labelset .vis-label{position:relative;box-sizing:border-box}.vis-panel .vis-shadow.vis-top{top:-1px;left:0}.vis-panel .vis-shadow.vis-bottom{bottom:-1px;left:0}.vis-labelset .vis-label{left:0;top:0;width:100%;color:#4d4d4d;border-bottom:1px solid #bfbfbf}.vis-labelset .vis-label.draggable{cursor:pointer}.vis-labelset .vis-label:last-child{border-bottom:none}.vis-labelset .vis-label .vis-inner{display:inline-block;padding:5px}.vis-labelset .vis-label .vis-inner.vis-hidden{padding:0}.vis-itemset{padding:0;margin:0}.vis-itemset .vis-background,.vis-itemset .vis-foreground{position:absolute;width:100%;height:100%;overflow:visible}.vis-axis{position:absolute;width:100%;height:0;left:0;z-index:1}.vis-foreground .vis-group{position:relative;box-sizing:border-box;border-bottom:1px solid #bfbfbf}.vis-foreground .vis-group:last-child{border-bottom:none}.vis-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.vis-item{position:absolute;color:#1A1A1A;border-color:#97B0F8;border-width:1px;background-color:#D5DDF6;display:inline-block}.vis-item.vis-point.vis-selected,.vis-item.vis-selected{background-color:#FFF785}.vis-item.vis-selected{border-color:#FFC200;z-index:2}.vis-editable.vis-selected{cursor:move}.vis-item.vis-box{text-align:center;border-style:solid;border-radius:2px}.vis-item.vis-point{background:0 0}.vis-item.vis-dot{position:absolute;padding:0;border-width:4px;border-style:solid;border-radius:4px}.vis-item.vis-range{border-style:solid;border-radius:2px;box-sizing:border-box}.vis-item.vis-background{border:none;background-color:rgba(213,221,246,.4);box-sizing:border-box;padding:0;margin:0}.vis-item .vis-item-overflow{position:relative;width:100%;height:100%;padding:0;margin:0;overflow:hidden}.vis-item.vis-range .vis-item-content{position:relative;display:inline-block}.vis-item.vis-background .vis-item-content{position:absolute;display:inline-block}.vis-item.vis-line{padding:0;position:absolute;width:0;border-left-width:1px;border-left-style:solid}.vis-item .vis-item-content{white-space:nowrap;box-sizing:border-box;padding:5px}.vis-item .vis-delete{background:url(img/timeline/delete.png) center no-repeat;position:absolute;width:24px;height:24px;top:-4px;right:-24px;cursor:pointer}.vis-item.vis-range .vis-drag-left{position:absolute;width:24px;max-width:20%;min-width:2px;height:100%;top:0;left:-4px;cursor:w-resize}.vis-item.vis-range .vis-drag-right{position:absolute;width:24px;max-width:20%;min-width:2px;height:100%;top:0;right:-4px;cursor:e-resize}.vis-time-axis{position:relative;overflow:hidden}.vis-time-axis.vis-foreground{top:0;left:0;width:100%}.vis-time-axis.vis-background{position:absolute;top:0;left:0;width:100%;height:100%}.vis-time-axis .vis-text{position:absolute;color:#4d4d4d;padding:3px;overflow:hidden;box-sizing:border-box;white-space:nowrap}.vis-time-axis .vis-text.vis-measure{position:absolute;padding-left:0;padding-right:0;margin-left:0;margin-right:0;visibility:hidden}.vis-time-axis .vis-grid.vis-vertical{position:absolute;border-left:1px solid}.vis-time-axis .vis-grid.vis-minor{border-color:#e5e5e5}.vis-time-axis .vis-grid.vis-major{border-color:#bfbfbf}.vis-current-time{background-color:#FF7F6E;width:2px;z-index:1}.vis-custom-time{background-color:#6E94FF;width:2px;cursor:move;z-index:1}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal{position:absolute;width:100%;height:0;border-bottom:1px solid}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor{border-color:#e5e5e5}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major{border-color:#bfbfbf}.vis-data-axis .vis-y-axis.vis-major{width:100%;position:absolute;color:#4d4d4d;white-space:nowrap}.vis-data-axis .vis-y-axis.vis-major.vis-measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-minor{position:absolute;width:100%;color:#bebebe;white-space:nowrap}.vis-data-axis .vis-y-axis.vis-minor.vis-measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-title{position:absolute;color:#4d4d4d;white-space:nowrap;bottom:20px;text-align:center}.vis-data-axis .vis-y-axis.vis-title.vis-measure{padding:0;margin:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-title.vis-left{bottom:0;-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}.vis-data-axis .vis-y-axis.vis-title.vis-right{bottom:0;-webkit-transform-origin:right bottom;-moz-transform-origin:right bottom;-ms-transform-origin:right bottom;-o-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.vis-legend{background-color:rgba(247,252,255,.65);padding:5px;border:1px solid #b3b3b3;box-shadow:2px 2px 10px rgba(154,154,154,.55)}.vis-legend-text{white-space:nowrap;display:inline-block}.vis-graph-group0{fill:#4f81bd;fill-opacity:0;stroke-width:2px;stroke:#4f81bd}.vis-graph-group1{fill:#f79646;fill-opacity:0;stroke-width:2px;stroke:#f79646}.vis-graph-group2{fill:#8c51cf;fill-opacity:0;stroke-width:2px;stroke:#8c51cf}.vis-graph-group3{fill:#75c841;fill-opacity:0;stroke-width:2px;stroke:#75c841}.vis-graph-group4{fill:#ff0100;fill-opacity:0;stroke-width:2px;stroke:#ff0100}.vis-graph-group5{fill:#37d8e6;fill-opacity:0;stroke-width:2px;stroke:#37d8e6}.vis-graph-group6{fill:#042662;fill-opacity:0;stroke-width:2px;stroke:#042662}.vis-graph-group7{fill:#00ff26;fill-opacity:0;stroke-width:2px;stroke:#00ff26}.vis-graph-group8{fill:#f0f;fill-opacity:0;stroke-width:2px;stroke:#f0f}.vis-graph-group9{fill:#8f3938;fill-opacity:0;stroke-width:2px;stroke:#8f3938}.vis-timeline .vis-fill{fill-opacity:.1;stroke:none}.vis-timeline .vis-bar{fill-opacity:.5;stroke-width:1px}.vis-timeline .vis-point{stroke-width:2px;fill-opacity:1}.vis-timeline .vis-legend-background{stroke-width:1px;fill-opacity:.9;fill:#fff;stroke:#c2c2c2}.vis-timeline .vis-outline{stroke-width:1px;fill-opacity:1;fill:#fff;stroke:#e5e5e5}.vis-timeline .vis-icon-fill{fill-opacity:.3;stroke:none}div.vis-network div.vis-manipulation{border-width:0;border-bottom:1px;border-style:solid;border-color:#d6d9d8;background:#fff;background:-moz-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(48%,#fcfcfc),color-stop(50%,#fafafa),color-stop(100%,#fcfcfc));background:-webkit-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-o-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-ms-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:linear-gradient(to bottom,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fcfcfc', GradientType=0 );position:absolute;left:0;top:0;width:100%;height:30px}div.vis-network div.vis-edit-mode{position:absolute;left:0;top:15px;height:30px}div.vis-network div.vis-close{position:absolute;right:0;top:0;width:30px;height:30px;background-position:20px 3px;background-repeat:no-repeat;background-image:url(img/network/cross.png);cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.vis-network div.vis-close:hover{opacity:.6}div.vis-network div.vis-edit-mode div.vis-button,div.vis-network div.vis-manipulation div.vis-button{position:relative;top:-7px;font-family:verdana;font-size:9pt;-moz-border-radius:15px;border-radius:15px;display:inline-block;background-position:0 0;background-repeat:no-repeat;height:24px;margin:0 0 0 10px;vertical-align:middle;cursor:pointer;padding:0 8px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.vis-network div.vis-manipulation div.vis-button:hover{box-shadow:1px 1px 8px rgba(0,0,0,.2)}div.vis-network div.vis-manipulation div.vis-button:active{box-shadow:1px 1px 8px rgba(0,0,0,.5)}div.vis-network div.vis-manipulation div.vis-button.vis-back{background-image:url(img/network/backIcon.png)}div.vis-network div.vis-manipulation div.vis-button.vis-none:hover{box-shadow:1px 1px 8px transparent;cursor:default}div.vis-network div.vis-manipulation div.vis-button.vis-none:active{box-shadow:1px 1px 8px transparent}div.vis-network div.vis-manipulation div.vis-button.vis-none{padding:0}div.vis-network div.vis-manipulation div.notification{margin:2px;font-weight:700}div.vis-network div.vis-manipulation div.vis-button.vis-add{background-image:url(img/network/addNodeIcon.png)}div.vis-network div.vis-edit-mode div.vis-button.vis-edit,div.vis-network div.vis-manipulation div.vis-button.vis-edit{background-image:url(img/network/editIcon.png)}div.vis-network div.vis-edit-mode div.vis-button.vis-edit.vis-edit-mode{background-color:#fcfcfc;border:1px solid #ccc}div.vis-network div.vis-manipulation div.vis-button.vis-connect{background-image:url(img/network/connectIcon.png)}div.vis-network div.vis-manipulation div.vis-button.vis-delete{background-image:url(img/network/deleteIcon.png)}div.vis-network div.vis-edit-mode div.vis-label,div.vis-network div.vis-manipulation div.vis-label{margin:0 0 0 23px;line-height:25px}div.vis-network div.vis-manipulation div.vis-separator-line{display:inline-block;width:1px;height:20px;background-color:#bdbdbd;margin:5px 7px 0 15px}div.vis-network-tooltip{position:absolute;visibility:hidden;padding:5px;white-space:nowrap;font-family:verdana;font-size:14px;font-color:#000;background-color:#f5f4ed;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid #808074;box-shadow:3px 3px 10px rgba(0,0,0,.2);pointer-events:none}div.vis-network div.vis-navigation div.vis-button{width:34px;height:34px;-moz-border-radius:17px;border-radius:17px;position:absolute;display:inline-block;background-position:2px 2px;background-repeat:no-repeat;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.vis-network div.vis-navigation div.vis-button:hover{box-shadow:0 0 3px 3px rgba(56,207,21,.3)}div.vis-network div.vis-navigation div.vis-button:active{box-shadow:0 0 1px 3px rgba(56,207,21,.95)}div.vis-network div.vis-navigation div.vis-button.vis-up{background-image:url(img/network/upArrow.png);bottom:50px;left:55px}div.vis-network div.vis-navigation div.vis-button.vis-down{background-image:url(img/network/downArrow.png);bottom:10px;left:55px}div.vis-network div.vis-navigation div.vis-button.vis-left{background-image:url(img/network/leftArrow.png);bottom:10px;left:15px}div.vis-network div.vis-navigation div.vis-button.vis-right{background-image:url(img/network/rightArrow.png);bottom:10px;left:95px}div.vis-network div.vis-navigation div.vis-button.vis-zoomIn{background-image:url(img/network/plus.png);bottom:10px;right:15px}div.vis-network div.vis-navigation div.vis-button.vis-zoomOut{background-image:url(img/network/minus.png);bottom:10px;right:55px}div.vis-network div.vis-navigation div.vis-button.vis-zoomExtends{background-image:url(img/network/zoomExtends.png);bottom:50px;right:15px}div.vis-color-picker{position:absolute;margin-top:-140px;margin-left:30px;width:293px;height:425px;padding:10px;border-radius:15px;background-color:#fff;display:none;box-shadow:rgba(0,0,0,.5) 0 0 10px 0}div.vis-color-picker div.vis-arrow{position:absolute;top:147px;left:5px}div.vis-color-picker div.vis-arrow:after,div.vis-color-picker div.vis-arrow:before{right:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}div.vis-color-picker div.vis-arrow:after{border-color:rgba(255,255,255,0);border-right-color:#fff;border-width:30px;margin-top:-30px}div.vis-color-picker div.vis-color{position:absolute;width:289px;height:289px;cursor:pointer}div.vis-color-picker div.vis-brightness{position:absolute;top:313px}div.vis-color-picker div.vis-opacity{position:absolute;top:350px}div.vis-color-picker div.vis-selector{position:absolute;top:137px;left:137px;width:15px;height:15px;border-radius:15px;border:1px solid #fff;background:#4c4c4c;background:-moz-linear-gradient(top,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#4c4c4c),color-stop(12%,#595959),color-stop(25%,#666),color-stop(39%,#474747),color-stop(50%,#2c2c2c),color-stop(51%,#000),color-stop(60%,#111),color-stop(76%,#2b2b2b),color-stop(91%,#1c1c1c),color-stop(100%,#131313));background:-webkit-linear-gradient(top,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);background:-o-linear-gradient(top,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);background:-ms-linear-gradient(top,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);background:linear-gradient(to bottom,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 )}div.vis-color-picker div.vis-initial-color,div.vis-color-picker div.vis-new-color{width:140px;height:20px;top:380px;font-size:10px;color:rgba(0,0,0,.4);line-height:20px;position:absolute;vertical-align:middle}div.vis-color-picker div.vis-new-color{border:1px solid rgba(0,0,0,.1);border-radius:5px;left:159px;text-align:right;padding-right:2px}div.vis-color-picker div.vis-initial-color{border:1px solid rgba(0,0,0,.1);border-radius:5px;left:10px;text-align:left;padding-left:2px}div.vis-color-picker div.vis-label{position:absolute;width:300px;left:10px}div.vis-color-picker div.vis-label.vis-brightness{top:300px}div.vis-color-picker div.vis-label.vis-opacity{top:338px}div.vis-color-picker div.vis-button{position:absolute;width:68px;height:25px;border-radius:10px;vertical-align:middle;text-align:center;line-height:25px;top:410px;border:2px solid #d9d9d9;background-color:#f7f7f7;cursor:pointer}div.vis-color-picker div.vis-button.vis-cancel{left:5px}div.vis-color-picker div.vis-button.vis-load{left:82px}div.vis-color-picker div.vis-button.vis-apply{left:159px}div.vis-color-picker div.vis-button.vis-save{left:236px}div.vis-color-picker input.vis-range{width:290px;height:20px} \ No newline at end of file diff --git a/VIS/dist/vis.min.js b/VIS/dist/vis.min.js new file mode 100644 index 0000000..68558df --- /dev/null +++ b/VIS/dist/vis.min.js @@ -0,0 +1,44 @@ +/** + * vis.js + * https://github.com/almende/vis + * + * A dynamic, browser-based visualization library. + * + * @version 4.8.2 + * @date 2015-09-14 + * + * @license + * Copyright (C) 2011-2015 Almende B.V, http://almende.com + * + * Vis.js is dual licensed under both + * + * * The Apache 2.0 License + * http://www.apache.org/licenses/LICENSE-2.0 + * + * and + * + * * The MIT License + * http://opensource.org/licenses/MIT + * + * Vis.js may be distributed under either license. + */ +"use strict";!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.vis=e():t.vis=e()}(this,function(){return function(t){function e(o){if(i[o])return i[o].exports;var n=i[o]={exports:{},id:o,loaded:!1};return t[o].call(n.exports,n,n.exports,e),n.loaded=!0,n.exports}var i={};return e.m=t,e.c=i,e.p="",e(0)}([function(t,e,i){e.util=i(1),e.DOMutil=i(7),e.DataSet=i(8),e.DataView=i(10),e.Queue=i(9),e.Graph3d=i(11),e.graph3d={Camera:i(15),Filter:i(16),Point2d:i(14),Point3d:i(13),Slider:i(17),StepNumber:i(18)},e.Timeline=i(19),e.Graph2d=i(49),e.timeline={DateUtil:i(27),DataStep:i(52),Range:i(24),stack:i(32),TimeStep:i(30),components:{items:{Item:i(34),BackgroundItem:i(38),BoxItem:i(36),PointItem:i(37),RangeItem:i(33)},Component:i(26),CurrentTime:i(44),CustomTime:i(42),DataAxis:i(51),GraphGroup:i(53),Group:i(31),BackgroundGroup:i(35),ItemSet:i(29),Legend:i(57),LineGraph:i(50),TimeAxis:i(39)}},e.Network=i(59),e.network={Images:i(117),dotparser:i(115),gephiParser:i(116),allOptions:i(111)},e.network.convertDot=function(t){return e.network.dotparser.DOTToGraph(t)},e.network.convertGephi=function(t,i){return e.network.gephiParser.parseGephi(t,i)},e.moment=i(2),e.Hammer=i(20),e.keycharm=i(41)},function(t,e,i){var o=i(2),n=i(6);e.isNumber=function(t){return t instanceof Number||"number"==typeof t},e.recursiveDOMDelete=function(t){if(t)for(;t.hasChildNodes()===!0;)e.recursiveDOMDelete(t.firstChild),t.removeChild(t.firstChild)},e.giveRange=function(t,e,i,o){if(e==t)return.5;var n=1/(e-t);return Math.max(0,(o-t)*n)},e.isString=function(t){return t instanceof String||"string"==typeof t},e.isDate=function(t){if(t instanceof Date)return!0;if(e.isString(t)){var i=s.exec(t);if(i)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},e.randomUUID=function(){return n.v4()},e.assignAllKeys=function(t,e){for(var i in t)t.hasOwnProperty(i)&&"object"!=typeof t[i]&&(t[i]=e)},e.fillIfDefined=function(t,i){var o=arguments.length<=2||void 0===arguments[2]?!1:arguments[2];for(var n in t)void 0!==i[n]&&("object"!=typeof i[n]?void 0!==i[n]&&null!==i[n]||void 0===t[n]||o!==!0?t[n]=i[n]:delete t[n]:"object"==typeof t[n]&&e.fillIfDefined(t[n],i[n],o))},e.protoExtend=function(t,e){for(var i=1;ii;i++)if(t[i]!=e[i])return!1;return!0},e.convert=function(t,i){var n;if(void 0===t)return void 0;if(null===t)return null;if(!i)return t;if("string"!=typeof i&&!(i instanceof String))throw new Error("Type must be a string");switch(i){case"boolean":case"Boolean":return Boolean(t);case"number":case"Number":return Number(t.valueOf());case"string":case"String":return String(t);case"Date":if(e.isNumber(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(o.isMoment(t))return new Date(t.valueOf());if(e.isString(t))return n=s.exec(t),n?new Date(Number(n[1])):o(t).toDate();throw new Error("Cannot convert object of type "+e.getType(t)+" to type Date");case"Moment":if(e.isNumber(t))return o(t);if(t instanceof Date)return o(t.valueOf());if(o.isMoment(t))return o(t);if(e.isString(t))return n=s.exec(t),o(n?Number(n[1]):t);throw new Error("Cannot convert object of type "+e.getType(t)+" to type Date");case"ISODate":if(e.isNumber(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(o.isMoment(t))return t.toDate().toISOString();if(e.isString(t))return n=s.exec(t),n?new Date(Number(n[1])).toISOString():new Date(t).toISOString();throw new Error("Cannot convert object of type "+e.getType(t)+" to type ISODate");case"ASPDate":if(e.isNumber(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(e.isString(t)){n=s.exec(t);var r;return r=n?new Date(Number(n[1])).valueOf():new Date(t).valueOf(),"/Date("+r+")/"}throw new Error("Cannot convert object of type "+e.getType(t)+" to type ASPDate");default:throw new Error('Unknown type "'+i+'"')}};var s=/^\/?Date\((\-?\d+)/i;e.getType=function(t){var e=typeof t;return"object"==e?null===t?"null":t instanceof Boolean?"Boolean":t instanceof Number?"Number":t instanceof String?"String":Array.isArray(t)?"Array":t instanceof Date?"Date":"Object":"number"==e?"Number":"boolean"==e?"Boolean":"string"==e?"String":void 0===e?"undefined":e},e.copyAndExtendArray=function(t,e){for(var i=[],o=0;oi;i++)e(t[i],i,t);else for(i in t)t.hasOwnProperty(i)&&e(t[i],i,t)},e.toArray=function(t){var e=[];for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},e.updateProperty=function(t,e,i){return t[e]!==i?(t[e]=i,!0):!1},e.throttle=function(t,e){var i=null,o=!1;return function n(){i?o=!0:(o=!1,t(),i=setTimeout(function(){i=null,o&&n()},e))}},e.addEventListener=function(t,e,i,o){t.addEventListener?(void 0===o&&(o=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,o)):t.attachEvent("on"+e,i)},e.removeEventListener=function(t,e,i,o){t.removeEventListener?(void 0===o&&(o=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,o)):t.detachEvent("on"+e,i)},e.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},e.getTarget=function(t){t||(t=window.event);var e;return t.target?e=t.target:t.srcElement&&(e=t.srcElement),void 0!=e.nodeType&&3==e.nodeType&&(e=e.parentNode),e},e.hasParent=function(t,e){for(var i=t;i;){if(i===e)return!0;i=i.parentNode}return!1},e.option={},e.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},e.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},e.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},e.option.asSize=function(t,i){return"function"==typeof t&&(t=t()),e.isString(t)?t:e.isNumber(t)?t+"px":i||null},e.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},e.hexToRGB=function(t){var e=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;t=t.replace(e,function(t,e,i,o){return e+e+i+i+o+o});var i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return i?{r:parseInt(i[1],16),g:parseInt(i[2],16),b:parseInt(i[3],16)}:null},e.overrideOpacity=function(t,i){if(-1!=t.indexOf("rgba"))return t;if(-1!=t.indexOf("rgb")){var o=t.substr(t.indexOf("(")+1).replace(")","").split(",");return"rgba("+o[0]+","+o[1]+","+o[2]+","+i+")"}var o=e.hexToRGB(t);return null==o?t:"rgba("+o.r+","+o.g+","+o.b+","+i+")"},e.RGBToHex=function(t,e,i){return"#"+((1<<24)+(t<<16)+(e<<8)+i).toString(16).slice(1)},e.parseColor=function(t){var i;if(e.isString(t)===!0){if(e.isValidRGB(t)===!0){var o=t.substr(4).substr(0,t.length-5).split(",").map(function(t){return parseInt(t)});t=e.RGBToHex(o[0],o[1],o[2])}if(e.isValidHex(t)===!0){var n=e.hexToHSV(t),s={h:n.h,s:.8*n.s,v:Math.min(1,1.02*n.v)},r={h:n.h,s:Math.min(1,1.25*n.s),v:.8*n.v},a=e.HSVToHex(r.h,r.s,r.v),h=e.HSVToHex(s.h,s.s,s.v);i={background:t,border:a,highlight:{background:h,border:a},hover:{background:h,border:a}}}else i={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else i={},i.background=t.background||void 0,i.border=t.border||void 0,e.isString(t.highlight)?i.highlight={border:t.highlight,background:t.highlight}:(i.highlight={},i.highlight.background=t.highlight&&t.highlight.background||void 0,i.highlight.border=t.highlight&&t.highlight.border||void 0),e.isString(t.hover)?i.hover={border:t.hover,background:t.hover}:(i.hover={},i.hover.background=t.hover&&t.hover.background||void 0,i.hover.border=t.hover&&t.hover.border||void 0);return i},e.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var o=Math.min(t,Math.min(e,i)),n=Math.max(t,Math.max(e,i));if(o==n)return{h:0,s:0,v:o};var s=t==o?e-i:i==o?t-e:i-t,r=t==o?3:i==o?1:5,a=60*(r-s/(n-o))/360,h=(n-o)/n,d=n;return{h:a,s:h,v:d}};var r={split:function(t){var e={};return t.split(";").forEach(function(t){if(""!=t.trim()){var i=t.split(":"),o=i[0].trim(),n=i[1].trim();e[o]=n}}),e},join:function(t){return Object.keys(t).map(function(e){return e+": "+t[e]}).join("; ")}};e.addCssText=function(t,i){var o=r.split(t.style.cssText),n=r.split(i),s=e.extend(o,n);t.style.cssText=r.join(s)},e.removeCssText=function(t,e){var i=r.split(t.style.cssText),o=r.split(e);for(var n in o)o.hasOwnProperty(n)&&delete i[n];t.style.cssText=r.join(i)},e.HSVToRGB=function(t,e,i){var o,n,s,r=Math.floor(6*t),a=6*t-r,h=i*(1-e),d=i*(1-a*e),l=i*(1-(1-a)*e);switch(r%6){case 0:o=i,n=l,s=h;break;case 1:o=d,n=i,s=h;break;case 2:o=h,n=i,s=l;break;case 3:o=h,n=d,s=i;break;case 4:o=l,n=h,s=i;break;case 5:o=i,n=h,s=d}return{r:Math.floor(255*o),g:Math.floor(255*n),b:Math.floor(255*s)}},e.HSVToHex=function(t,i,o){var n=e.HSVToRGB(t,i,o);return e.RGBToHex(n.r,n.g,n.b)},e.hexToHSV=function(t){var i=e.hexToRGB(t);return e.RGBToHSV(i.r,i.g,i.b)},e.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},e.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},e.isValidRGBA=function(t){t=t.replace(" ","");var e=/rgba\((\d{1,3}),(\d{1,3}),(\d{1,3}),(.{1,3})\)/i.test(t);return e},e.selectiveBridgeObject=function(t,i){if("object"==typeof i){for(var o=Object.create(i),n=0;n=r&&n>s;){var h=Math.floor((r+a)/2),d=t[h],l=void 0===o?d[i]:d[i][o],u=e(l);if(0==u)return h;-1==u?r=h+1:a=h-1,s++}return-1},e.binarySearchValue=function(t,e,i,o){for(var n,s,r,a,h=1e4,d=0,l=0,u=t.length-1;u>=l&&h>d;){if(a=Math.floor(.5*(u+l)),n=t[Math.max(0,a-1)][i],s=t[a][i],r=t[Math.min(t.length-1,a+1)][i],s==e)return a;if(e>n&&s>e)return"before"==o?Math.max(0,a-1):a;if(e>s&&r>e)return"before"==o?a:Math.min(t.length-1,a+1);e>s?l=a+1:u=a-1,d++}return-1},e.easingFunctions={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return t*(2-t)},easeInOutQuad:function(t){return.5>t?2*t*t:-1+(4-2*t)*t},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return--t*t*t+1},easeInOutCubic:function(t){return.5>t?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return 1- --t*t*t*t},easeInOutQuart:function(t){return.5>t?8*t*t*t*t:1-8*--t*t*t*t},easeInQuint:function(t){return t*t*t*t*t},easeOutQuint:function(t){return 1+--t*t*t*t*t},easeInOutQuint:function(t){return.5>t?16*t*t*t*t*t:1+16*--t*t*t*t*t}}},function(t,e,i){t.exports="undefined"!=typeof window&&window.moment||i(3)},function(t,e,i){(function(t){!function(e,i){t.exports=i()}(this,function(){function e(){return Ni.apply(null,arguments)}function i(t){Ni=t}function o(t){return"[object Array]"===Object.prototype.toString.call(t)}function n(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function s(t,e){var i,o=[];for(i=0;i0)for(i in Ai)o=Ai[i],n=e[o],"undefined"!=typeof n&&(t[o]=n);return t}function f(t){p(this,t),this._d=new Date(null!=t._d?t._d.getTime():NaN),Bi===!1&&(Bi=!0,e.updateOffset(this),Bi=!1)}function m(t){return t instanceof f||null!=t&&null!=t._isAMomentObject}function v(t){return 0>t?Math.ceil(t):Math.floor(t)}function g(t){var e=+t,i=0;return 0!==e&&isFinite(e)&&(i=v(e)),i}function y(t,e,i){var o,n=Math.min(t.length,e.length),s=Math.abs(t.length-e.length),r=0;for(o=0;n>o;o++)(i&&t[o]!==e[o]||!i&&g(t[o])!==g(e[o]))&&r++;return r+s}function b(){}function w(t){return t?t.toLowerCase().replace("_","-"):t}function _(t){for(var e,i,o,n,s=0;s0;){if(o=x(n.slice(0,e).join("-")))return o;if(i&&i.length>=e&&y(n,i,!0)>=e-1)break;e--}s++}return null}function x(e){var i=null;if(!Ri[e]&&"undefined"!=typeof t&&t&&t.exports)try{i=Li._abbr,!function(){var t=new Error('Cannot find module "./locale"');throw t.code="MODULE_NOT_FOUND",t}(),k(i)}catch(o){}return Ri[e]}function k(t,e){var i;return t&&(i="undefined"==typeof e?D(t):O(t,e),i&&(Li=i)),Li._abbr}function O(t,e){return null!==e?(e.abbr=t,Ri[t]=Ri[t]||new b,Ri[t].set(e),k(t),Ri[t]):(delete Ri[t],null)}function D(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return Li;if(!o(t)){if(e=x(t))return e;t=[t]}return _(t)}function M(t,e){var i=t.toLowerCase();Fi[i]=Fi[i+"s"]=Fi[e]=t}function C(t){return"string"==typeof t?Fi[t]||Fi[t.toLowerCase()]:void 0}function T(t){var e,i,o={};for(i in t)r(t,i)&&(e=C(i),e&&(o[e]=t[i]));return o}function E(t,i){return function(o){return null!=o?(P(this,t,o),e.updateOffset(this,i),this):S(this,t)}}function S(t,e){return t._d["get"+(t._isUTC?"UTC":"")+e]()}function P(t,e,i){return t._d["set"+(t._isUTC?"UTC":"")+e](i)}function I(t,e){var i;if("object"==typeof t)for(i in t)this.set(i,t[i]);else if(t=C(t),"function"==typeof this[t])return this[t](e);return this}function z(t,e,i){var o=""+Math.abs(t),n=e-o.length,s=t>=0;return(s?i?"+":"":"-")+Math.pow(10,Math.max(0,n)).toString().substr(1)+o}function N(t,e,i,o){var n=o;"string"==typeof o&&(n=function(){return this[o]()}),t&&(Yi[t]=n),e&&(Yi[e[0]]=function(){return z(n.apply(this,arguments),e[1],e[2])}),i&&(Yi[i]=function(){return this.localeData().ordinal(n.apply(this,arguments),t)})}function L(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function A(t){var e,i,o=t.match(ji);for(e=0,i=o.length;i>e;e++)Yi[o[e]]?o[e]=Yi[o[e]]:o[e]=L(o[e]);return function(n){var s="";for(e=0;i>e;e++)s+=o[e]instanceof Function?o[e].call(n,t):o[e];return s}}function B(t,e){return t.isValid()?(e=R(e,t.localeData()),Wi[e]=Wi[e]||A(e),Wi[e](t)):t.localeData().invalidDate()}function R(t,e){function i(t){return e.longDateFormat(t)||t}var o=5;for(Hi.lastIndex=0;o>=0&&Hi.test(t);)t=t.replace(Hi,i),Hi.lastIndex=0,o-=1;return t}function F(t){return"function"==typeof t&&"[object Function]"===Object.prototype.toString.call(t)}function j(t,e,i){no[t]=F(e)?e:function(t){return t&&i?i:e}}function H(t,e){return r(no,t)?no[t](e._strict,e._locale):new RegExp(W(t))}function W(t){return t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,o,n){return e||i||o||n}).replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function Y(t,e){var i,o=e;for("string"==typeof t&&(t=[t]),"number"==typeof e&&(o=function(t,i){i[e]=g(t)}),i=0;io;o++){if(n=h([2e3,o]),i&&!this._longMonthsParse[o]&&(this._longMonthsParse[o]=new RegExp("^"+this.months(n,"").replace(".","")+"$","i"),this._shortMonthsParse[o]=new RegExp("^"+this.monthsShort(n,"").replace(".","")+"$","i")),i||this._monthsParse[o]||(s="^"+this.months(n,"")+"|^"+this.monthsShort(n,""),this._monthsParse[o]=new RegExp(s.replace(".",""),"i")),i&&"MMMM"===e&&this._longMonthsParse[o].test(t))return o;if(i&&"MMM"===e&&this._shortMonthsParse[o].test(t))return o;if(!i&&this._monthsParse[o].test(t))return o}}function K(t,e){var i;return"string"==typeof e&&(e=t.localeData().monthsParse(e),"number"!=typeof e)?t:(i=Math.min(t.date(),V(t.year(),e)),t._d["set"+(t._isUTC?"UTC":"")+"Month"](e,i),t)}function J(t){return null!=t?(K(this,t),e.updateOffset(this,!0),this):S(this,"Month")}function Q(){return V(this.year(),this.month())}function $(t){var e,i=t._a;return i&&-2===l(t).overflow&&(e=i[ao]<0||i[ao]>11?ao:i[ho]<1||i[ho]>V(i[ro],i[ao])?ho:i[lo]<0||i[lo]>24||24===i[lo]&&(0!==i[uo]||0!==i[co]||0!==i[po])?lo:i[uo]<0||i[uo]>59?uo:i[co]<0||i[co]>59?co:i[po]<0||i[po]>999?po:-1,l(t)._overflowDayOfYear&&(ro>e||e>ho)&&(e=ho),l(t).overflow=e),t}function tt(t){e.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+t)}function et(t,e){var i=!0;return a(function(){return i&&(tt(t+"\n"+(new Error).stack),i=!1),e.apply(this,arguments)},e)}function it(t,e){vo[t]||(tt(e),vo[t]=!0)}function ot(t){var e,i,o=t._i,n=go.exec(o);if(n){for(l(t).iso=!0,e=0,i=yo.length;i>e;e++)if(yo[e][1].exec(o)){t._f=yo[e][0];break}for(e=0,i=bo.length;i>e;e++)if(bo[e][1].exec(o)){t._f+=(n[6]||" ")+bo[e][0];break}o.match(eo)&&(t._f+="Z"),xt(t)}else t._isValid=!1}function nt(t){var i=wo.exec(t._i);return null!==i?void(t._d=new Date(+i[1])):(ot(t),void(t._isValid===!1&&(delete t._isValid,e.createFromInputFallback(t))))}function st(t,e,i,o,n,s,r){var a=new Date(t,e,i,o,n,s,r);return 1970>t&&a.setFullYear(t),a}function rt(t){var e=new Date(Date.UTC.apply(null,arguments));return 1970>t&&e.setUTCFullYear(t),e}function at(t){return ht(t)?366:365}function ht(t){return t%4===0&&t%100!==0||t%400===0}function dt(){return ht(this.year())}function lt(t,e,i){var o,n=i-e,s=i-t.day();return s>n&&(s-=7),n-7>s&&(s+=7),o=St(t).add(s,"d"),{week:Math.ceil(o.dayOfYear()/7),year:o.year()}}function ut(t){return lt(t,this._week.dow,this._week.doy).week}function ct(){return this._week.dow}function pt(){return this._week.doy}function ft(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")}function mt(t){var e=lt(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")}function vt(t,e,i,o,n){var s,r=6+n-o,a=rt(t,0,1+r),h=a.getUTCDay();return n>h&&(h+=7),i=null!=i?1*i:n,s=1+r+7*(e-1)-h+i,{year:s>0?t:t-1,dayOfYear:s>0?s:at(t-1)+s}}function gt(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")}function yt(t,e,i){return null!=t?t:null!=e?e:i}function bt(t){var e=new Date;return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}function wt(t){var e,i,o,n,s=[];if(!t._d){for(o=bt(t),t._w&&null==t._a[ho]&&null==t._a[ao]&&_t(t),t._dayOfYear&&(n=yt(t._a[ro],o[ro]),t._dayOfYear>at(n)&&(l(t)._overflowDayOfYear=!0),i=rt(n,0,t._dayOfYear),t._a[ao]=i.getUTCMonth(),t._a[ho]=i.getUTCDate()),e=0;3>e&&null==t._a[e];++e)t._a[e]=s[e]=o[e];for(;7>e;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[lo]&&0===t._a[uo]&&0===t._a[co]&&0===t._a[po]&&(t._nextDay=!0,t._a[lo]=0),t._d=(t._useUTC?rt:st).apply(null,s),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[lo]=24)}}function _t(t){var e,i,o,n,s,r,a;e=t._w,null!=e.GG||null!=e.W||null!=e.E?(s=1,r=4,i=yt(e.GG,t._a[ro],lt(St(),1,4).year),o=yt(e.W,1),n=yt(e.E,1)):(s=t._locale._week.dow,r=t._locale._week.doy,i=yt(e.gg,t._a[ro],lt(St(),s,r).year),o=yt(e.w,1),null!=e.d?(n=e.d,s>n&&++o):n=null!=e.e?e.e+s:s),a=vt(i,o,n,r,s),t._a[ro]=a.year,t._dayOfYear=a.dayOfYear}function xt(t){if(t._f===e.ISO_8601)return void ot(t);t._a=[],l(t).empty=!0;var i,o,n,s,r,a=""+t._i,h=a.length,d=0;for(n=R(t._f,t._locale).match(ji)||[],i=0;i0&&l(t).unusedInput.push(r),a=a.slice(a.indexOf(o)+o.length),d+=o.length),Yi[s]?(o?l(t).empty=!1:l(t).unusedTokens.push(s),U(s,o,t)):t._strict&&!o&&l(t).unusedTokens.push(s);l(t).charsLeftOver=h-d,a.length>0&&l(t).unusedInput.push(a),l(t).bigHour===!0&&t._a[lo]<=12&&t._a[lo]>0&&(l(t).bigHour=void 0),t._a[lo]=kt(t._locale,t._a[lo],t._meridiem),wt(t),$(t)}function kt(t,e,i){var o;return null==i?e:null!=t.meridiemHour?t.meridiemHour(e,i):null!=t.isPM?(o=t.isPM(i),o&&12>e&&(e+=12),o||12!==e||(e=0),e):e}function Ot(t){var e,i,o,n,s;if(0===t._f.length)return l(t).invalidFormat=!0,void(t._d=new Date(NaN));for(n=0;ns)&&(o=s,i=e));a(t,i||e)}function Dt(t){if(!t._d){var e=T(t._i);t._a=[e.year,e.month,e.day||e.date,e.hour,e.minute,e.second,e.millisecond],wt(t)}}function Mt(t){var e=new f($(Ct(t)));return e._nextDay&&(e.add(1,"d"),e._nextDay=void 0),e}function Ct(t){var e=t._i,i=t._f;return t._locale=t._locale||D(t._l),null===e||void 0===i&&""===e?c({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),m(e)?new f($(e)):(o(i)?Ot(t):i?xt(t):n(e)?t._d=e:Tt(t),t))}function Tt(t){var i=t._i;void 0===i?t._d=new Date:n(i)?t._d=new Date(+i):"string"==typeof i?nt(t):o(i)?(t._a=s(i.slice(0),function(t){return parseInt(t,10)}),wt(t)):"object"==typeof i?Dt(t):"number"==typeof i?t._d=new Date(i):e.createFromInputFallback(t)}function Et(t,e,i,o,n){var s={};return"boolean"==typeof i&&(o=i,i=void 0),s._isAMomentObject=!0,s._useUTC=s._isUTC=n,s._l=i,s._i=t,s._f=e,s._strict=o,Mt(s)}function St(t,e,i,o){return Et(t,e,i,o,!1)}function Pt(t,e){var i,n;if(1===e.length&&o(e[0])&&(e=e[0]),!e.length)return St();for(i=e[0],n=1;nt&&(t=-t,i="-"),i+z(~~(t/60),2)+e+z(~~t%60,2)})}function Bt(t){var e=(t||"").match(eo)||[],i=e[e.length-1]||[],o=(i+"").match(Do)||["-",0,0],n=+(60*o[1])+g(o[2]);return"+"===o[0]?n:-n}function Rt(t,i){var o,s;return i._isUTC?(o=i.clone(),s=(m(t)||n(t)?+t:+St(t))-+o,o._d.setTime(+o._d+s),e.updateOffset(o,!1),o):St(t).local()}function Ft(t){return 15*-Math.round(t._d.getTimezoneOffset()/15)}function jt(t,i){var o,n=this._offset||0;return null!=t?("string"==typeof t&&(t=Bt(t)),Math.abs(t)<16&&(t=60*t),!this._isUTC&&i&&(o=Ft(this)),this._offset=t,this._isUTC=!0,null!=o&&this.add(o,"m"),n!==t&&(!i||this._changeInProgress?ie(this,Jt(t-n,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,e.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?n:Ft(this)}function Ht(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}function Wt(t){return this.utcOffset(0,t)}function Yt(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Ft(this),"m")),this}function Gt(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&this.utcOffset(Bt(this._i)),this}function Ut(t){return t=t?St(t).utcOffset():0,(this.utcOffset()-t)%60===0}function Vt(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function qt(){if("undefined"!=typeof this._isDSTShifted)return this._isDSTShifted;var t={};if(p(t,this),t=Ct(t),t._a){var e=t._isUTC?h(t._a):St(t._a);this._isDSTShifted=this.isValid()&&y(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function Xt(){return!this._isUTC}function Zt(){return this._isUTC}function Kt(){return this._isUTC&&0===this._offset}function Jt(t,e){var i,o,n,s=t,a=null;return Lt(t)?s={ms:t._milliseconds,d:t._days,M:t._months}:"number"==typeof t?(s={},e?s[e]=t:s.milliseconds=t):(a=Mo.exec(t))?(i="-"===a[1]?-1:1,s={y:0,d:g(a[ho])*i,h:g(a[lo])*i,m:g(a[uo])*i,s:g(a[co])*i,ms:g(a[po])*i}):(a=Co.exec(t))?(i="-"===a[1]?-1:1,s={y:Qt(a[2],i),M:Qt(a[3],i),d:Qt(a[4],i),h:Qt(a[5],i),m:Qt(a[6],i),s:Qt(a[7],i),w:Qt(a[8],i)}):null==s?s={}:"object"==typeof s&&("from"in s||"to"in s)&&(n=te(St(s.from),St(s.to)),s={},s.ms=n.milliseconds,s.M=n.months),o=new Nt(s),Lt(t)&&r(t,"_locale")&&(o._locale=t._locale),o}function Qt(t,e){var i=t&&parseFloat(t.replace(",","."));return(isNaN(i)?0:i)*e}function $t(t,e){var i={milliseconds:0,months:0};return i.months=e.month()-t.month()+12*(e.year()-t.year()),t.clone().add(i.months,"M").isAfter(e)&&--i.months,i.milliseconds=+e-+t.clone().add(i.months,"M"),i}function te(t,e){var i;return e=Rt(e,t),t.isBefore(e)?i=$t(t,e):(i=$t(e,t),i.milliseconds=-i.milliseconds,i.months=-i.months),i}function ee(t,e){return function(i,o){var n,s;return null===o||isNaN(+o)||(it(e,"moment()."+e+"(period, number) is deprecated. Please use moment()."+e+"(number, period)."),s=i,i=o,o=s),i="string"==typeof i?+i:i,n=Jt(i,o),ie(this,n,t),this}}function ie(t,i,o,n){var s=i._milliseconds,r=i._days,a=i._months;n=null==n?!0:n,s&&t._d.setTime(+t._d+s*o),r&&P(t,"Date",S(t,"Date")+r*o),a&&K(t,S(t,"Month")+a*o),n&&e.updateOffset(t,r||a)}function oe(t,e){var i=t||St(),o=Rt(i,this).startOf("day"),n=this.diff(o,"days",!0),s=-6>n?"sameElse":-1>n?"lastWeek":0>n?"lastDay":1>n?"sameDay":2>n?"nextDay":7>n?"nextWeek":"sameElse";return this.format(e&&e[s]||this.localeData().calendar(s,this,St(i)))}function ne(){return new f(this)}function se(t,e){var i;return e=C("undefined"!=typeof e?e:"millisecond"),"millisecond"===e?(t=m(t)?t:St(t),+this>+t):(i=m(t)?+t:+St(t),i<+this.clone().startOf(e))}function re(t,e){var i;return e=C("undefined"!=typeof e?e:"millisecond"),"millisecond"===e?(t=m(t)?t:St(t),+t>+this):(i=m(t)?+t:+St(t),+this.clone().endOf(e)e-s?(i=t.clone().add(n-1,"months"),o=(e-s)/(s-i)):(i=t.clone().add(n+1,"months"),o=(e-s)/(i-s)),-(n+o)}function ue(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function ce(){var t=this.clone().utc();return 0e;e++)if(this._weekdaysParse[e]||(i=St([2e3,1]).day(e),o="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[e]=new RegExp(o.replace(".",""),"i")),this._weekdaysParse[e].test(t))return e}function We(t){var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=Be(t,this.localeData()),this.add(t-e,"d")):e}function Ye(t){var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")}function Ge(t){return null==t?this.day()||7:this.day(this.day()%7?t:t-7)}function Ue(t,e){N(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)})}function Ve(t,e){return e._meridiemParse}function qe(t){return"p"===(t+"").toLowerCase().charAt(0)}function Xe(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"}function Ze(t,e){e[po]=g(1e3*("0."+t))}function Ke(){return this._isUTC?"UTC":""}function Je(){return this._isUTC?"Coordinated Universal Time":""}function Qe(t){return St(1e3*t)}function $e(){return St.apply(null,arguments).parseZone()}function ti(t,e,i){var o=this._calendar[t];return"function"==typeof o?o.call(e,i):o}function ei(t){var e=this._longDateFormat[t],i=this._longDateFormat[t.toUpperCase()];return e||!i?e:(this._longDateFormat[t]=i.replace(/MMMM|MM|DD|dddd/g,function(t){return t.slice(1)}),this._longDateFormat[t])}function ii(){return this._invalidDate}function oi(t){return this._ordinal.replace("%d",t)}function ni(t){return t}function si(t,e,i,o){var n=this._relativeTime[i];return"function"==typeof n?n(t,e,i,o):n.replace(/%d/i,t)}function ri(t,e){var i=this._relativeTime[t>0?"future":"past"];return"function"==typeof i?i(e):i.replace(/%s/i,e)}function ai(t){var e,i;for(i in t)e=t[i],"function"==typeof e?this[i]=e:this["_"+i]=e;this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)}function hi(t,e,i,o){var n=D(),s=h().set(o,e);return n[i](s,t)}function di(t,e,i,o,n){if("number"==typeof t&&(e=t,t=void 0),t=t||"",null!=e)return hi(t,e,i,n);var s,r=[];for(s=0;o>s;s++)r[s]=hi(t,s,i,n);return r}function li(t,e){return di(t,e,"months",12,"month")}function ui(t,e){return di(t,e,"monthsShort",12,"month")}function ci(t,e){return di(t,e,"weekdays",7,"day")}function pi(t,e){return di(t,e,"weekdaysShort",7,"day")}function fi(t,e){return di(t,e,"weekdaysMin",7,"day")}function mi(){var t=this._data;return this._milliseconds=Ko(this._milliseconds),this._days=Ko(this._days),this._months=Ko(this._months),t.milliseconds=Ko(t.milliseconds),t.seconds=Ko(t.seconds),t.minutes=Ko(t.minutes),t.hours=Ko(t.hours),t.months=Ko(t.months),t.years=Ko(t.years),this}function vi(t,e,i,o){var n=Jt(e,i);return t._milliseconds+=o*n._milliseconds,t._days+=o*n._days,t._months+=o*n._months,t._bubble()}function gi(t,e){return vi(this,t,e,1)}function yi(t,e){return vi(this,t,e,-1)}function bi(t){return 0>t?Math.floor(t):Math.ceil(t)}function wi(){var t,e,i,o,n,s=this._milliseconds,r=this._days,a=this._months,h=this._data;return s>=0&&r>=0&&a>=0||0>=s&&0>=r&&0>=a||(s+=864e5*bi(xi(a)+r),r=0,a=0),h.milliseconds=s%1e3,t=v(s/1e3),h.seconds=t%60,e=v(t/60),h.minutes=e%60,i=v(e/60),h.hours=i%24,r+=v(i/24),n=v(_i(r)),a+=n,r-=bi(xi(n)),o=v(a/12),a%=12,h.days=r,h.months=a,h.years=o,this}function _i(t){return 4800*t/146097}function xi(t){return 146097*t/4800}function ki(t){var e,i,o=this._milliseconds;if(t=C(t),"month"===t||"year"===t)return e=this._days+o/864e5,i=this._months+_i(e),"month"===t?i:i/12;switch(e=this._days+Math.round(xi(this._months)),t){case"week":return e/7+o/6048e5;case"day":return e+o/864e5;case"hour":return 24*e+o/36e5;case"minute":return 1440*e+o/6e4;case"second":return 86400*e+o/1e3;case"millisecond":return Math.floor(864e5*e)+o;default:throw new Error("Unknown unit "+t)}}function Oi(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*g(this._months/12)}function Di(t){return function(){return this.as(t)}}function Mi(t){return t=C(t),this[t+"s"]()}function Ci(t){return function(){return this._data[t]}}function Ti(){return v(this.days()/7)}function Ei(t,e,i,o,n){return n.relativeTime(e||1,!!i,t,o)}function Si(t,e,i){var o=Jt(t).abs(),n=pn(o.as("s")),s=pn(o.as("m")),r=pn(o.as("h")),a=pn(o.as("d")),h=pn(o.as("M")),d=pn(o.as("y")),l=n0,l[4]=i,Ei.apply(null,l)}function Pi(t,e){return void 0===fn[t]?!1:void 0===e?fn[t]:(fn[t]=e,!0)}function Ii(t){var e=this.localeData(),i=Si(this,!t,e);return t&&(i=e.pastFuture(+this,i)),e.postformat(i)}function zi(){var t,e,i,o=mn(this._milliseconds)/1e3,n=mn(this._days),s=mn(this._months);t=v(o/60),e=v(t/60),o%=60,t%=60,i=v(s/12),s%=12;var r=i,a=s,h=n,d=e,l=t,u=o,c=this.asSeconds();return c?(0>c?"-":"")+"P"+(r?r+"Y":"")+(a?a+"M":"")+(h?h+"D":"")+(d||l||u?"T":"")+(d?d+"H":"")+(l?l+"M":"")+(u?u+"S":""):"P0D"}var Ni,Li,Ai=e.momentProperties=[],Bi=!1,Ri={},Fi={},ji=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,Hi=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Wi={},Yi={},Gi=/\d/,Ui=/\d\d/,Vi=/\d{3}/,qi=/\d{4}/,Xi=/[+-]?\d{6}/,Zi=/\d\d?/,Ki=/\d{1,3}/,Ji=/\d{1,4}/,Qi=/[+-]?\d{1,6}/,$i=/\d+/,to=/[+-]?\d+/,eo=/Z|[+-]\d\d:?\d\d/gi,io=/[+-]?\d+(\.\d{1,3})?/,oo=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,no={},so={},ro=0,ao=1,ho=2,lo=3,uo=4,co=5,po=6;N("M",["MM",2],"Mo",function(){return this.month()+1}),N("MMM",0,0,function(t){return this.localeData().monthsShort(this,t)}),N("MMMM",0,0,function(t){return this.localeData().months(this,t)}),M("month","M"),j("M",Zi),j("MM",Zi,Ui),j("MMM",oo),j("MMMM",oo),Y(["M","MM"],function(t,e){e[ao]=g(t)-1}),Y(["MMM","MMMM"],function(t,e,i,o){var n=i._locale.monthsParse(t,o,i._strict);null!=n?e[ao]=n:l(i).invalidMonth=t});var fo="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),mo="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),vo={};e.suppressDeprecationWarnings=!1;var go=/^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,yo=[["YYYYYY-MM-DD",/[+-]\d{6}-\d{2}-\d{2}/],["YYYY-MM-DD",/\d{4}-\d{2}-\d{2}/],["GGGG-[W]WW-E",/\d{4}-W\d{2}-\d/],["GGGG-[W]WW",/\d{4}-W\d{2}/],["YYYY-DDD",/\d{4}-\d{3}/]],bo=[["HH:mm:ss.SSSS",/(T| )\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss",/(T| )\d\d:\d\d:\d\d/],["HH:mm",/(T| )\d\d:\d\d/],["HH",/(T| )\d\d/]],wo=/^\/?Date\((\-?\d+)/i;e.createFromInputFallback=et("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(t){t._d=new Date(t._i+(t._useUTC?" UTC":""))}),N(0,["YY",2],0,function(){return this.year()%100}),N(0,["YYYY",4],0,"year"),N(0,["YYYYY",5],0,"year"),N(0,["YYYYYY",6,!0],0,"year"),M("year","y"),j("Y",to),j("YY",Zi,Ui),j("YYYY",Ji,qi),j("YYYYY",Qi,Xi),j("YYYYYY",Qi,Xi),Y(["YYYYY","YYYYYY"],ro),Y("YYYY",function(t,i){i[ro]=2===t.length?e.parseTwoDigitYear(t):g(t)}),Y("YY",function(t,i){i[ro]=e.parseTwoDigitYear(t)}),e.parseTwoDigitYear=function(t){return g(t)+(g(t)>68?1900:2e3)};var _o=E("FullYear",!1);N("w",["ww",2],"wo","week"),N("W",["WW",2],"Wo","isoWeek"),M("week","w"),M("isoWeek","W"),j("w",Zi),j("ww",Zi,Ui),j("W",Zi),j("WW",Zi,Ui),G(["w","ww","W","WW"],function(t,e,i,o){e[o.substr(0,1)]=g(t)});var xo={dow:0,doy:6};N("DDD",["DDDD",3],"DDDo","dayOfYear"),M("dayOfYear","DDD"),j("DDD",Ki),j("DDDD",Vi),Y(["DDD","DDDD"],function(t,e,i){i._dayOfYear=g(t)}),e.ISO_8601=function(){};var ko=et("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(){var t=St.apply(null,arguments);return this>t?this:t}),Oo=et("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(){var t=St.apply(null,arguments);return t>this?this:t});At("Z",":"),At("ZZ",""),j("Z",eo),j("ZZ",eo),Y(["Z","ZZ"],function(t,e,i){i._useUTC=!0,i._tzm=Bt(t)});var Do=/([\+\-]|\d\d)/gi;e.updateOffset=function(){};var Mo=/(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,Co=/^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/;Jt.fn=Nt.prototype;var To=ee(1,"add"),Eo=ee(-1,"subtract");e.defaultFormat="YYYY-MM-DDTHH:mm:ssZ";var So=et("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(t){return void 0===t?this.localeData():this.locale(t)});N(0,["gg",2],0,function(){return this.weekYear()%100}),N(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Se("gggg","weekYear"),Se("ggggg","weekYear"),Se("GGGG","isoWeekYear"),Se("GGGGG","isoWeekYear"),M("weekYear","gg"),M("isoWeekYear","GG"),j("G",to),j("g",to),j("GG",Zi,Ui),j("gg",Zi,Ui),j("GGGG",Ji,qi),j("gggg",Ji,qi),j("GGGGG",Qi,Xi),j("ggggg",Qi,Xi),G(["gggg","ggggg","GGGG","GGGGG"],function(t,e,i,o){e[o.substr(0,2)]=g(t)}),G(["gg","GG"],function(t,i,o,n){i[n]=e.parseTwoDigitYear(t)}),N("Q",0,0,"quarter"),M("quarter","Q"),j("Q",Gi),Y("Q",function(t,e){e[ao]=3*(g(t)-1)}),N("D",["DD",2],"Do","date"),M("date","D"),j("D",Zi),j("DD",Zi,Ui),j("Do",function(t,e){return t?e._ordinalParse:e._ordinalParseLenient}),Y(["D","DD"],ho),Y("Do",function(t,e){e[ho]=g(t.match(Zi)[0],10)});var Po=E("Date",!0);N("d",0,"do","day"),N("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),N("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),N("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),N("e",0,0,"weekday"),N("E",0,0,"isoWeekday"),M("day","d"),M("weekday","e"),M("isoWeekday","E"),j("d",Zi),j("e",Zi),j("E",Zi),j("dd",oo),j("ddd",oo),j("dddd",oo),G(["dd","ddd","dddd"],function(t,e,i){var o=i._locale.weekdaysParse(t);null!=o?e.d=o:l(i).invalidWeekday=t}),G(["d","e","E"],function(t,e,i,o){e[o]=g(t)});var Io="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),zo="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),No="Su_Mo_Tu_We_Th_Fr_Sa".split("_");N("H",["HH",2],0,"hour"),N("h",["hh",2],0,function(){return this.hours()%12||12}),Ue("a",!0),Ue("A",!1),M("hour","h"),j("a",Ve),j("A",Ve),j("H",Zi),j("h",Zi),j("HH",Zi,Ui),j("hh",Zi,Ui),Y(["H","HH"],lo),Y(["a","A"],function(t,e,i){i._isPm=i._locale.isPM(t),i._meridiem=t}),Y(["h","hh"],function(t,e,i){e[lo]=g(t),l(i).bigHour=!0});var Lo=/[ap]\.?m?\.?/i,Ao=E("Hours",!0);N("m",["mm",2],0,"minute"),M("minute","m"),j("m",Zi),j("mm",Zi,Ui),Y(["m","mm"],uo);var Bo=E("Minutes",!1);N("s",["ss",2],0,"second"),M("second","s"),j("s",Zi),j("ss",Zi,Ui),Y(["s","ss"],co);var Ro=E("Seconds",!1);N("S",0,0,function(){return~~(this.millisecond()/100)}),N(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),N(0,["SSS",3],0,"millisecond"),N(0,["SSSS",4],0,function(){return 10*this.millisecond()}),N(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),N(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),N(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),N(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),N(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),M("millisecond","ms"),j("S",Ki,Gi),j("SS",Ki,Ui),j("SSS",Ki,Vi);var Fo;for(Fo="SSSS";Fo.length<=9;Fo+="S")j(Fo,$i);for(Fo="S";Fo.length<=9;Fo+="S")Y(Fo,Ze);var jo=E("Milliseconds",!1);N("z",0,0,"zoneAbbr"),N("zz",0,0,"zoneName");var Ho=f.prototype;Ho.add=To,Ho.calendar=oe,Ho.clone=ne,Ho.diff=de,Ho.endOf=_e,Ho.format=pe,Ho.from=fe,Ho.fromNow=me,Ho.to=ve,Ho.toNow=ge,Ho.get=I,Ho.invalidAt=Ee,Ho.isAfter=se,Ho.isBefore=re,Ho.isBetween=ae,Ho.isSame=he,Ho.isValid=Ce,Ho.lang=So,Ho.locale=ye,Ho.localeData=be,Ho.max=Oo,Ho.min=ko,Ho.parsingFlags=Te,Ho.set=I,Ho.startOf=we,Ho.subtract=Eo,Ho.toArray=De,Ho.toObject=Me,Ho.toDate=Oe,Ho.toISOString=ce,Ho.toJSON=ce,Ho.toString=ue,Ho.unix=ke,Ho.valueOf=xe,Ho.year=_o,Ho.isLeapYear=dt,Ho.weekYear=Ie,Ho.isoWeekYear=ze,Ho.quarter=Ho.quarters=Ae,Ho.month=J,Ho.daysInMonth=Q,Ho.week=Ho.weeks=ft,Ho.isoWeek=Ho.isoWeeks=mt,Ho.weeksInYear=Le,Ho.isoWeeksInYear=Ne,Ho.date=Po,Ho.day=Ho.days=We,Ho.weekday=Ye,Ho.isoWeekday=Ge,Ho.dayOfYear=gt,Ho.hour=Ho.hours=Ao,Ho.minute=Ho.minutes=Bo,Ho.second=Ho.seconds=Ro,Ho.millisecond=Ho.milliseconds=jo,Ho.utcOffset=jt,Ho.utc=Wt,Ho.local=Yt,Ho.parseZone=Gt,Ho.hasAlignedHourOffset=Ut,Ho.isDST=Vt,Ho.isDSTShifted=qt,Ho.isLocal=Xt,Ho.isUtcOffset=Zt,Ho.isUtc=Kt,Ho.isUTC=Kt,Ho.zoneAbbr=Ke,Ho.zoneName=Je,Ho.dates=et("dates accessor is deprecated. Use date instead.",Po),Ho.months=et("months accessor is deprecated. Use month instead",J),Ho.years=et("years accessor is deprecated. Use year instead",_o),Ho.zone=et("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",Ht);var Wo=Ho,Yo={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},Go={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},Uo="Invalid date",Vo="%d",qo=/\d{1,2}/,Xo={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},Zo=b.prototype;Zo._calendar=Yo,Zo.calendar=ti,Zo._longDateFormat=Go,Zo.longDateFormat=ei,Zo._invalidDate=Uo,Zo.invalidDate=ii,Zo._ordinal=Vo,Zo.ordinal=oi,Zo._ordinalParse=qo,Zo.preparse=ni,Zo.postformat=ni,Zo._relativeTime=Xo,Zo.relativeTime=si,Zo.pastFuture=ri,Zo.set=ai,Zo.months=q,Zo._months=fo,Zo.monthsShort=X,Zo._monthsShort=mo,Zo.monthsParse=Z,Zo.week=ut,Zo._week=xo,Zo.firstDayOfYear=pt,Zo.firstDayOfWeek=ct,Zo.weekdays=Re,Zo._weekdays=Io,Zo.weekdaysMin=je,Zo._weekdaysMin=No,Zo.weekdaysShort=Fe,Zo._weekdaysShort=zo,Zo.weekdaysParse=He,Zo.isPM=qe,Zo._meridiemParse=Lo,Zo.meridiem=Xe,k("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10,i=1===g(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),e.lang=et("moment.lang is deprecated. Use moment.locale instead.",k),e.langData=et("moment.langData is deprecated. Use moment.localeData instead.",D);var Ko=Math.abs,Jo=Di("ms"),Qo=Di("s"),$o=Di("m"),tn=Di("h"),en=Di("d"),on=Di("w"),nn=Di("M"),sn=Di("y"),rn=Ci("milliseconds"),an=Ci("seconds"),hn=Ci("minutes"),dn=Ci("hours"),ln=Ci("days"),un=Ci("months"),cn=Ci("years"),pn=Math.round,fn={s:45,m:45,h:22,d:26,M:11},mn=Math.abs,vn=Nt.prototype;vn.abs=mi,vn.add=gi,vn.subtract=yi,vn.as=ki,vn.asMilliseconds=Jo,vn.asSeconds=Qo,vn.asMinutes=$o,vn.asHours=tn,vn.asDays=en,vn.asWeeks=on,vn.asMonths=nn,vn.asYears=sn,vn.valueOf=Oi,vn._bubble=wi,vn.get=Mi,vn.milliseconds=rn,vn.seconds=an,vn.minutes=hn,vn.hours=dn,vn.days=ln,vn.weeks=Ti,vn.months=un,vn.years=cn,vn.humanize=Ii,vn.toISOString=zi,vn.toString=zi,vn.toJSON=zi,vn.locale=ye,vn.localeData=be,vn.toIsoString=et("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",zi),vn.lang=So,N("X",0,0,"unix"),N("x",0,0,"valueOf"),j("x",to),j("X",io),Y("X",function(t,e,i){i._d=new Date(1e3*parseFloat(t,10))}),Y("x",function(t,e,i){i._d=new Date(g(t))}),e.version="2.10.6",i(St),e.fn=Wo,e.min=It,e.max=zt,e.utc=h,e.unix=Qe,e.months=li,e.isDate=n,e.locale=k,e.invalid=c,e.duration=Jt,e.isMoment=m,e.weekdays=ci,e.parseZone=$e,e.localeData=D,e.isDuration=Lt,e.monthsShort=ui,e.weekdaysMin=fi,e.defineLocale=O,e.weekdaysShort=pi,e.normalizeUnits=C,e.relativeTimeThreshold=Pi;var gn=e;return gn})}).call(e,i(4)(t))},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}},function(t,e){function i(t){throw new Error("Cannot find module '"+t+"'.")}i.keys=function(){return[]},i.resolve=i,t.exports=i,i.id=5},function(t,e){(function(e){function i(t,e,i){var o=e&&i||0,n=0;for(e=e||[],t.toLowerCase().replace(/[0-9a-f]{2}/g,function(t){16>n&&(e[o+n++]=u[t])});16>n;)e[o+n++]=0;return e}function o(t,e){var i=e||0,o=l;return o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]}function n(t,e,i){var n=e&&i||0,s=e||[];t=t||{};var r=void 0!==t.clockseq?t.clockseq:m,a=void 0!==t.msecs?t.msecs:(new Date).getTime(),h=void 0!==t.nsecs?t.nsecs:g+1,d=a-v+(h-g)/1e4;if(0>d&&void 0===t.clockseq&&(r=r+1&16383),(0>d||a>v)&&void 0===t.nsecs&&(h=0),h>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");v=a,g=h,m=r,a+=122192928e5;var l=(1e4*(268435455&a)+h)%4294967296;s[n++]=l>>>24&255,s[n++]=l>>>16&255,s[n++]=l>>>8&255,s[n++]=255&l;var u=a/4294967296*1e4&268435455;s[n++]=u>>>8&255,s[n++]=255&u,s[n++]=u>>>24&15|16,s[n++]=u>>>16&255,s[n++]=r>>>8|128,s[n++]=255&r;for(var c=t.node||f,p=0;6>p;p++)s[n+p]=c[p];return e?e:o(s)}function s(t,e,i){var n=e&&i||0;"string"==typeof t&&(e="binary"==t?new Array(16):null,t=null),t=t||{};var s=t.random||(t.rng||r)();if(s[6]=15&s[6]|64,s[8]=63&s[8]|128,e)for(var a=0;16>a;a++)e[n+a]=s[a];return e||o(s)}var r,a="undefined"!=typeof window?window:"undefined"!=typeof e?e:null;if(a&&a.crypto&&crypto.getRandomValues){var h=new Uint8Array(16);r=function(){return crypto.getRandomValues(h),h}}if(!r){var d=new Array(16);r=function(){for(var t,e=0;16>e;e++)0===(3&e)&&(t=4294967296*Math.random()),d[e]=t>>>((3&e)<<3)&255;return d}}for(var l=[],u={},c=0;256>c;c++)l[c]=(c+256).toString(16).substr(1),u[l[c]]=c;var p=r(),f=[1|p[0],p[1],p[2],p[3],p[4],p[5]],m=16383&(p[6]<<8|p[7]),v=0,g=0,y=s;y.v1=n,y.v4=s,y.parse=i,y.unparse=o,t.exports=y}).call(e,function(){return this}())},function(t,e){e.prepareElements=function(t){for(var e in t)t.hasOwnProperty(e)&&(t[e].redundant=t[e].used,t[e].used=[])},e.cleanupElements=function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].redundant){for(var i=0;i0?(o=e[t].redundant[0],e[t].redundant.shift()):(o=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(o)):(o=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(o)),e[t].used.push(o),o},e.getDOMElement=function(t,e,i,o){var n;return e.hasOwnProperty(t)?e[t].redundant.length>0?(n=e[t].redundant[0],e[t].redundant.shift()):(n=document.createElement(t),void 0!==o?i.insertBefore(n,o):i.appendChild(n)):(n=document.createElement(t),e[t]={used:[],redundant:[]},void 0!==o?i.insertBefore(n,o):i.appendChild(n)),e[t].used.push(n),n},e.drawPoint=function(t,i,o,n,s,r){var a;if("circle"==o.style?(a=e.getSVGElement("circle",n,s),a.setAttributeNS(null,"cx",t),a.setAttributeNS(null,"cy",i),a.setAttributeNS(null,"r",.5*o.size)):(a=e.getSVGElement("rect",n,s),a.setAttributeNS(null,"x",t-.5*o.size),a.setAttributeNS(null,"y",i-.5*o.size),a.setAttributeNS(null,"width",o.size),a.setAttributeNS(null,"height",o.size)),void 0!==o.style&&a.setAttributeNS(null,"style",o.style),a.setAttributeNS(null,"class",o.className+" vis-point"),r){var h=e.getSVGElement("text",n,s);r.xOffset&&(t+=r.xOffset),r.yOffset&&(i+=r.yOffset),r.content&&(h.textContent=r.content),r.className&&h.setAttributeNS(null,"class",r.className+" vis-label"),h.setAttributeNS(null,"x",t),h.setAttributeNS(null,"y",i)}return a},e.drawBar=function(t,i,o,n,s,r,a,h){if(0!=n){0>n&&(n*=-1,i-=n);var d=e.getSVGElement("rect",r,a);d.setAttributeNS(null,"x",t-.5*o),d.setAttributeNS(null,"y",i),d.setAttributeNS(null,"width",o),d.setAttributeNS(null,"height",n),d.setAttributeNS(null,"class",s),h&&d.setAttributeNS(null,"style",h)}}},function(t,e,i){function o(t,e){if(t&&!Array.isArray(t)&&(e=t,t=null),this._options=e||{},this._data={},this.length=0,this._fieldId=this._options.fieldId||"id",this._type={},this._options.type)for(var i in this._options.type)if(this._options.type.hasOwnProperty(i)){var o=this._options.type[i];"Date"==o||"ISODate"==o||"ASPDate"==o?this._type[i]="Date":this._type[i]=o}if(this._options.convert)throw new Error('Option "convert" is deprecated. Use "type" instead.');this._subscribers={},t&&this.add(t),this.setOptions(e)}var n=i(1),s=i(9);o.prototype.setOptions=function(t){t&&void 0!==t.queue&&(t.queue===!1?this._queue&&(this._queue.destroy(),delete this._queue):(this._queue||(this._queue=s.extend(this,{replace:["add","update","remove"]})),"object"==typeof t.queue&&this._queue.setOptions(t.queue)))},o.prototype.on=function(t,e){var i=this._subscribers[t];i||(i=[],this._subscribers[t]=i),i.push({callback:e})},o.prototype.subscribe=function(){throw new Error("DataSet.subscribe is deprecated. Use DataSet.on instead.")},o.prototype.off=function(t,e){var i=this._subscribers[t];i&&(this._subscribers[t]=i.filter(function(t){return t.callback!=e}))},o.prototype.unsubscribe=function(){throw new Error("DataSet.unsubscribe is deprecated. Use DataSet.off instead.")},o.prototype._trigger=function(t,e,i){if("*"==t)throw new Error("Cannot trigger event *");var o=[];t in this._subscribers&&(o=o.concat(this._subscribers[t])),"*"in this._subscribers&&(o=o.concat(this._subscribers["*"]));for(var n=0;ns;s++)i=n._addItem(t[s]),o.push(i);else{if(!(t instanceof Object))throw new Error("Unknown dataType");i=n._addItem(t),o.push(i)}return o.length&&this._trigger("add",{items:o},e),o},o.prototype.update=function(t,e){var i=[],o=[],n=[],s=this,r=s._fieldId,a=function(t){var e=t[r];s._data[e]?(e=s._updateItem(t),o.push(e),n.push(t)):(e=s._addItem(t),i.push(e))};if(Array.isArray(t))for(var h=0,d=t.length;d>h;h++)a(t[h]);else{if(!(t instanceof Object))throw new Error("Unknown dataType");a(t)}return i.length&&this._trigger("add",{items:i},e),o.length&&this._trigger("update",{items:o,data:n},e),i.concat(o)},o.prototype.get=function(t){var e,i,o,s=this,r=n.getType(arguments[0]);"String"==r||"Number"==r?(e=arguments[0],o=arguments[1]):"Array"==r?(i=arguments[0],o=arguments[1]):o=arguments[0];var a;if(o&&o.returnType){var h=["Array","Object"];a=-1==h.indexOf(o.returnType)?"Array":o.returnType}else a="Array";var d,l,u,c,p=o&&o.type||this._options.type,f=o&&o.filter,m=[];if(void 0!=e)d=s._getItem(e,p),f&&!f(d)&&(d=null);else if(void 0!=i)for(u=0,c=i.length;c>u;u++)d=s._getItem(i[u],p),(!f||f(d))&&m.push(d);else for(l in this._data)this._data.hasOwnProperty(l)&&(d=s._getItem(l,p),(!f||f(d))&&m.push(d));if(o&&o.order&&void 0==e&&this._sort(m,o.order),o&&o.fields){var v=o.fields;if(void 0!=e)d=this._filterFields(d,v);else for(u=0,c=m.length;c>u;u++)m[u]=this._filterFields(m[u],v)}if("Object"==a){var g={};for(u=0;ue;e++)l[e]=s[e][this._fieldId]}else for(o in r)r.hasOwnProperty(o)&&(n=this._getItem(o,d),a(n)&&l.push(n[this._fieldId]));else if(h){s=[];for(o in r)r.hasOwnProperty(o)&&s.push(r[o]);for(this._sort(s,h),e=0,i=s.length;i>e;e++)l[e]=s[e][this._fieldId]}else for(o in r)r.hasOwnProperty(o)&&(n=r[o],l.push(n[this._fieldId]));return l},o.prototype.getDataSet=function(){return this},o.prototype.forEach=function(t,e){var i,o,n=e&&e.filter,s=e&&e.type||this._options.type,r=this._data;if(e&&e.order)for(var a=this.get(e),h=0,d=a.length;d>h;h++)i=a[h],o=i[this._fieldId],t(i,o);else for(o in r)r.hasOwnProperty(o)&&(i=this._getItem(o,s),(!n||n(i))&&t(i,o))},o.prototype.map=function(t,e){var i,o=e&&e.filter,n=e&&e.type||this._options.type,s=[],r=this._data;for(var a in r)r.hasOwnProperty(a)&&(i=this._getItem(a,n),(!o||o(i))&&s.push(t(i,a)));return e&&e.order&&this._sort(s,e.order),s},o.prototype._filterFields=function(t,e){if(!t)return t;var i={};if(Array.isArray(e))for(var o in t)t.hasOwnProperty(o)&&-1!=e.indexOf(o)&&(i[o]=t[o]);else for(var o in t)t.hasOwnProperty(o)&&e.hasOwnProperty(o)&&(i[e[o]]=t[o]);return i},o.prototype._sort=function(t,e){if(n.isString(e)){var i=e;t.sort(function(t,e){var o=t[i],n=e[i];return o>n?1:n>o?-1:0})}else{if("function"!=typeof e)throw new TypeError("Order must be a function or a string");t.sort(e)}},o.prototype.remove=function(t,e){var i,o,n,s=[];if(Array.isArray(t))for(i=0,o=t.length;o>i;i++)n=this._remove(t[i]),null!=n&&s.push(n);else n=this._remove(t),null!=n&&s.push(n);return s.length&&this._trigger("remove",{items:s},e),s},o.prototype._remove=function(t){if(n.isNumber(t)||n.isString(t)){if(this._data[t])return delete this._data[t],this.length--,t}else if(t instanceof Object){var e=t[this._fieldId];if(e&&this._data[e])return delete this._data[e],this.length--,e}return null},o.prototype.clear=function(t){var e=Object.keys(this._data);return this._data={},this.length=0,this._trigger("remove",{items:e},t),e},o.prototype.max=function(t){var e=this._data,i=null,o=null;for(var n in e)if(e.hasOwnProperty(n)){var s=e[n],r=s[t];null!=r&&(!i||r>o)&&(i=s,o=r)}return i},o.prototype.min=function(t){var e=this._data,i=null,o=null;for(var n in e)if(e.hasOwnProperty(n)){var s=e[n],r=s[t];null!=r&&(!i||o>r)&&(i=s,o=r)}return i},o.prototype.distinct=function(t){var e,i=this._data,o=[],s=this._options.type&&this._options.type[t]||null,r=0;for(var a in i)if(i.hasOwnProperty(a)){var h=i[a],d=h[t],l=!1;for(e=0;r>e;e++)if(o[e]==d){l=!0;break}l||void 0===d||(o[r]=d,r++)}if(s)for(e=0;ethis.max&&this.flush(),clearTimeout(this._timeout),this.queue.length>0&&"number"==typeof this.delay){var t=this;this._timeout=setTimeout(function(){t.flush()},this.delay)}},i.prototype.flush=function(){for(;this._queue.length>0;){var t=this._queue.shift();t.fn.apply(t.context||t.fn,t.args||[])}},t.exports=i},function(t,e,i){function o(t,e){this._data=null,this._ids={},this.length=0,this._options=e||{},this._fieldId="id",this._subscribers={};var i=this;this.listener=function(){i._onEvent.apply(i,arguments)},this.setData(t)}var n=i(1),s=i(8);o.prototype.setData=function(t){var e,i,o;if(this._data){this._data.off&&this._data.off("*",this.listener),e=[];for(var n in this._ids)this._ids.hasOwnProperty(n)&&e.push(n);this._ids={},this.length=0,this._trigger("remove",{items:e})}if(this._data=t,this._data){for(this._fieldId=this._options.fieldId||this._data&&this._data.options&&this._data.options.fieldId||"id",e=this._data.getIds({filter:this._options&&this._options.filter}),i=0,o=e.length;o>i;i++)n=e[i],this._ids[n]=!0;this.length=e.length,this._trigger("add",{items:e}),this._data.on&&this._data.on("*",this.listener)}},o.prototype.refresh=function(){for(var t,e=this._data.getIds({filter:this._options&&this._options.filter}),i={},o=[],n=[],s=0;so;o++)s=a[o],r=this.get(s),r&&(this._ids[s]=!0,l.push(s));break;case"update":for(o=0,n=a.length;n>o;o++)s=a[o],r=this.get(s),r?this._ids[s]?(u.push(s),d.push(e.data[o])):(this._ids[s]=!0,l.push(s)):this._ids[s]&&(delete this._ids[s], +c.push(s));break;case"remove":for(o=0,n=a.length;n>o;o++)s=a[o],this._ids[s]&&(delete this._ids[s],c.push(s))}this.length+=l.length-c.length,l.length&&this._trigger("add",{items:l},i),u.length&&this._trigger("update",{items:u,data:d},i),c.length&&this._trigger("remove",{items:c},i)}},o.prototype.on=s.prototype.on,o.prototype.off=s.prototype.off,o.prototype._trigger=s.prototype._trigger,o.prototype.subscribe=o.prototype.on,o.prototype.unsubscribe=o.prototype.off,t.exports=o},function(t,e,i){function o(t,e,i){if(!(this instanceof o))throw new SyntaxError("Constructor must be called with the new operator");this.containerElement=t,this.width="400px",this.height="400px",this.margin=10,this.defaultXCenter="55%",this.defaultYCenter="50%",this.xLabel="x",this.yLabel="y",this.zLabel="z";var n=function(t){return t};this.xValueLabel=n,this.yValueLabel=n,this.zValueLabel=n,this.filterLabel="time",this.legendLabel="value",this.style=o.STYLE.DOT,this.showPerspective=!0,this.showGrid=!0,this.keepAspectRatio=!0,this.showShadow=!1,this.showGrayBottom=!1,this.showTooltip=!1,this.verticalRatio=.5,this.animationInterval=1e3,this.animationPreload=!1,this.camera=new c,this.camera.setArmRotation(1,.5),this.camera.setArmLength(1.7),this.eye=new l(0,0,-1),this.dataTable=null,this.dataPoints=null,this.colX=void 0,this.colY=void 0,this.colZ=void 0,this.colValue=void 0,this.colFilter=void 0,this.xMin=0,this.xStep=void 0,this.xMax=1,this.yMin=0,this.yStep=void 0,this.yMax=1,this.zMin=0,this.zStep=void 0,this.zMax=1,this.valueMin=0,this.valueMax=1,this.xBarWidth=1,this.yBarWidth=1,this.axisColor="#4D4D4D",this.gridColor="#D3D3D3",this.dataColor={fill:"#7DC1FF",stroke:"#3267D2",strokeWidth:1},this.create(),this.setOptions(i),e&&this.setData(e)}function n(t){return"clientX"in t?t.clientX:t.targetTouches[0]&&t.targetTouches[0].clientX||0}function s(t){return"clientY"in t?t.clientY:t.targetTouches[0]&&t.targetTouches[0].clientY||0}var r=i(12),a=i(8),h=i(10),d=i(1),l=i(13),u=i(14),c=i(15),p=i(16),f=i(17),m=i(18);r(o.prototype),o.prototype._setScale=function(){this.scale=new l(1/(this.xMax-this.xMin),1/(this.yMax-this.yMin),1/(this.zMax-this.zMin)),this.keepAspectRatio&&(this.scale.x3&&(this.colFilter=3);else{if(this.style!==o.STYLE.DOTCOLOR&&this.style!==o.STYLE.DOTSIZE&&this.style!==o.STYLE.BARCOLOR&&this.style!==o.STYLE.BARSIZE)throw'Unknown style "'+this.style+'"';this.colX=0,this.colY=1,this.colZ=2,this.colValue=3,t.getNumberOfColumns()>4&&(this.colFilter=4)}},o.prototype.getNumberOfRows=function(t){return t.length},o.prototype.getNumberOfColumns=function(t){var e=0;for(var i in t[0])t[0].hasOwnProperty(i)&&e++;return e},o.prototype.getDistinctValues=function(t,e){for(var i=[],o=0;ot[o][e]&&(i.min=t[o][e]),i.maxt;t++){var f=(t-c)/(p-c),v=240*f,g=this._hsv2rgb(v,1,1);u.strokeStyle=g,u.beginPath(),u.moveTo(h,r+t),u.lineTo(a,r+t),u.stroke()}u.strokeStyle=this.axisColor,u.strokeRect(h,r,i,s)}if(this.style===o.STYLE.DOTSIZE&&(u.strokeStyle=this.axisColor,u.fillStyle=this.dataColor.fill,u.beginPath(),u.moveTo(h,r),u.lineTo(a,r),u.lineTo(a-i+e,d),u.lineTo(h,d),u.closePath(),u.fill(),u.stroke()),this.style===o.STYLE.DOTCOLOR||this.style===o.STYLE.DOTSIZE){var y=5,b=new m(this.valueMin,this.valueMax,(this.valueMax-this.valueMin)/5,!0);for(b.start(),b.getCurrent()0?this.yMin:this.yMax,n=this._convert3Dto2D(new l(_,r,this.zMin)),Math.cos(2*w)>0?(v.textAlign="center",v.textBaseline="top",n.y+=b):Math.sin(2*w)<0?(v.textAlign="right",v.textBaseline="middle"):(v.textAlign="left",v.textBaseline="middle"),v.fillStyle=this.axisColor,v.fillText(" "+this.xValueLabel(i.getCurrent())+" ",n.x,n.y),i.next()}for(v.lineWidth=1,o=void 0===this.defaultYStep,i=new m(this.yMin,this.yMax,this.yStep,o),i.start(),i.getCurrent()0?this.xMin:this.xMax,n=this._convert3Dto2D(new l(s,i.getCurrent(),this.zMin)),Math.cos(2*w)<0?(v.textAlign="center",v.textBaseline="top",n.y+=b):Math.sin(2*w)>0?(v.textAlign="right",v.textBaseline="middle"):(v.textAlign="left",v.textBaseline="middle"),v.fillStyle=this.axisColor,v.fillText(" "+this.yValueLabel(i.getCurrent())+" ",n.x,n.y),i.next();for(v.lineWidth=1,o=void 0===this.defaultZStep,i=new m(this.zMin,this.zMax,this.zStep,o),i.start(),i.getCurrent()0?this.xMin:this.xMax,r=Math.sin(w)<0?this.yMin:this.yMax;!i.end();)t=this._convert3Dto2D(new l(s,r,i.getCurrent())),v.strokeStyle=this.axisColor,v.beginPath(),v.moveTo(t.x,t.y),v.lineTo(t.x-b,t.y),v.stroke(),v.textAlign="right",v.textBaseline="middle",v.fillStyle=this.axisColor,v.fillText(this.zValueLabel(i.getCurrent())+" ",t.x-5,t.y),i.next();v.lineWidth=1,t=this._convert3Dto2D(new l(s,r,this.zMin)),e=this._convert3Dto2D(new l(s,r,this.zMax)),v.strokeStyle=this.axisColor,v.beginPath(),v.moveTo(t.x,t.y),v.lineTo(e.x,e.y),v.stroke(),v.lineWidth=1,c=this._convert3Dto2D(new l(this.xMin,this.yMin,this.zMin)),p=this._convert3Dto2D(new l(this.xMax,this.yMin,this.zMin)),v.strokeStyle=this.axisColor,v.beginPath(),v.moveTo(c.x,c.y),v.lineTo(p.x,p.y),v.stroke(),c=this._convert3Dto2D(new l(this.xMin,this.yMax,this.zMin)),p=this._convert3Dto2D(new l(this.xMax,this.yMax,this.zMin)),v.strokeStyle=this.axisColor,v.beginPath(),v.moveTo(c.x,c.y),v.lineTo(p.x,p.y),v.stroke(),v.lineWidth=1,t=this._convert3Dto2D(new l(this.xMin,this.yMin,this.zMin)),e=this._convert3Dto2D(new l(this.xMin,this.yMax,this.zMin)),v.strokeStyle=this.axisColor,v.beginPath(),v.moveTo(t.x,t.y),v.lineTo(e.x,e.y),v.stroke(),t=this._convert3Dto2D(new l(this.xMax,this.yMin,this.zMin)),e=this._convert3Dto2D(new l(this.xMax,this.yMax,this.zMin)),v.strokeStyle=this.axisColor,v.beginPath(),v.moveTo(t.x,t.y),v.lineTo(e.x,e.y),v.stroke();var x=this.xLabel;x.length>0&&(u=.1/this.scale.y,s=(this.xMin+this.xMax)/2,r=Math.cos(w)>0?this.yMin-u:this.yMax+u,n=this._convert3Dto2D(new l(s,r,this.zMin)),Math.cos(2*w)>0?(v.textAlign="center",v.textBaseline="top"):Math.sin(2*w)<0?(v.textAlign="right",v.textBaseline="middle"):(v.textAlign="left",v.textBaseline="middle"),v.fillStyle=this.axisColor,v.fillText(x,n.x,n.y));var k=this.yLabel;k.length>0&&(d=.1/this.scale.x,s=Math.sin(w)>0?this.xMin-d:this.xMax+d,r=(this.yMin+this.yMax)/2,n=this._convert3Dto2D(new l(s,r,this.zMin)),Math.cos(2*w)<0?(v.textAlign="center",v.textBaseline="top"):Math.sin(2*w)>0?(v.textAlign="right",v.textBaseline="middle"):(v.textAlign="left",v.textBaseline="middle"),v.fillStyle=this.axisColor,v.fillText(k,n.x,n.y));var O=this.zLabel;O.length>0&&(h=30,s=Math.cos(w)>0?this.xMin:this.xMax,r=Math.sin(w)<0?this.yMin:this.yMax,a=(this.zMin+this.zMax)/2,n=this._convert3Dto2D(new l(s,r,a)),v.textAlign="right",v.textBaseline="middle",v.fillStyle=this.axisColor,v.fillText(O,n.x-h,n.y))},o.prototype._hsv2rgb=function(t,e,i){var o,n,s,r,a,h;switch(r=i*e,a=Math.floor(t/60),h=r*(1-Math.abs(t/60%2-1)),a){case 0:o=r,n=h,s=0;break;case 1:o=h,n=r,s=0;break;case 2:o=0,n=r,s=h;break;case 3:o=0,n=h,s=r;break;case 4:o=h,n=0,s=r;break;case 5:o=r,n=0,s=h;break;default:o=0,n=0,s=0}return"RGB("+parseInt(255*o)+","+parseInt(255*n)+","+parseInt(255*s)+")"},o.prototype._redrawDataGrid=function(){var t,e,i,n,s,r,a,h,d,u,c,p,f=this.frame.canvas,m=f.getContext("2d");if(m.lineJoin="round",m.lineCap="round",!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(s=0;s0}else r=!0;r?(p=(t.point.z+e.point.z+i.point.z+n.point.z)/4,d=240*(1-(p-this.zMin)*this.scale.z/this.verticalRatio),u=1,this.showShadow?(c=Math.min(1+x.x/k/2,1),a=this._hsv2rgb(d,u,c),h=a):(c=1,a=this._hsv2rgb(d,u,c),h=this.axisColor)):(a="gray",h=this.axisColor),m.lineWidth=this._getStrokeWidth(t),m.fillStyle=a,m.strokeStyle=h,m.beginPath(),m.moveTo(t.screen.x,t.screen.y),m.lineTo(e.screen.x,e.screen.y),m.lineTo(n.screen.x,n.screen.y),m.lineTo(i.screen.x,i.screen.y),m.closePath(),m.fill(),m.stroke()}}else for(s=0;sc&&(c=0);var p,f,m;this.style===o.STYLE.DOTCOLOR?(p=240*(1-(d.point.value-this.valueMin)*this.scale.value),f=this._hsv2rgb(p,1,1),m=this._hsv2rgb(p,1,.8)):this.style===o.STYLE.DOTSIZE?(f=this.dataColor.fill,m=this.dataColor.stroke):(p=240*(1-(d.point.z-this.zMin)*this.scale.z/this.verticalRatio),f=this._hsv2rgb(p,1,1),m=this._hsv2rgb(p,1,.8)),i.lineWidth=this._getStrokeWidth(d),i.strokeStyle=m,i.fillStyle=f,i.beginPath(),i.arc(d.screen.x,d.screen.y,c,0,2*Math.PI,!0),i.fill(),i.stroke()}}},o.prototype._redrawDataBar=function(){var t,e,i,n,s=this.frame.canvas,r=s.getContext("2d");if(!(void 0===this.dataPoints||this.dataPoints.length<=0)){for(t=0;t0){for(t=this.dataPoints[0],o.lineWidth=this._getStrokeWidth(t),o.lineJoin="round",o.lineCap="round",o.strokeStyle=this.dataColor.stroke,o.beginPath(),o.moveTo(t.screen.x,t.screen.y),e=1;e0?1:0>t?-1:0}var o=e[0],n=e[1],s=e[2],r=i((n.x-o.x)*(t.y-o.y)-(n.y-o.y)*(t.x-o.x)),a=i((s.x-n.x)*(t.y-n.y)-(s.y-n.y)*(t.x-n.x)),h=i((o.x-s.x)*(t.y-s.y)-(o.y-s.y)*(t.x-s.x));return!(0!=r&&0!=a&&r!=a||0!=a&&0!=h&&a!=h||0!=r&&0!=h&&r!=h)},o.prototype._dataPointFromXY=function(t,e){var i,n=100,s=null,r=null,a=null,h=new u(t,e);if(this.style===o.STYLE.BAR||this.style===o.STYLE.BARCOLOR||this.style===o.STYLE.BARSIZE)for(i=this.dataPoints.length-1;i>=0;i--){s=this.dataPoints[i];var d=s.surfaces;if(d)for(var l=d.length-1;l>=0;l--){var c=d[l],p=c.corners,f=[p[0].screen,p[1].screen,p[2].screen],m=[p[2].screen,p[3].screen,p[0].screen];if(this._insideTriangle(h,f)||this._insideTriangle(h,m))return s}}else for(i=0;ib)&&n>b&&(a=b,r=s)}}return r},o.prototype._showTooltip=function(t){var e,i,o;this.tooltip?(e=this.tooltip.dom.content,i=this.tooltip.dom.line,o=this.tooltip.dom.dot):(e=document.createElement("div"),e.style.position="absolute",e.style.padding="10px",e.style.border="1px solid #4d4d4d",e.style.color="#1a1a1a",e.style.background="rgba(255,255,255,0.7)",e.style.borderRadius="2px",e.style.boxShadow="5px 5px 10px rgba(128,128,128,0.5)",i=document.createElement("div"),i.style.position="absolute",i.style.height="40px",i.style.width="0",i.style.borderLeft="1px solid #4d4d4d",o=document.createElement("div"),o.style.position="absolute",o.style.height="0",o.style.width="0",o.style.border="5px solid #4d4d4d",o.style.borderRadius="5px",this.tooltip={dataPoint:null,dom:{content:e,line:i,dot:o}}),this._hideTooltip(),this.tooltip.dataPoint=t,"function"==typeof this.showTooltip?e.innerHTML=this.showTooltip(t.point):e.innerHTML="
x:"+t.point.x+"
y:"+t.point.y+"
z:"+t.point.z+"
",e.style.left="0",e.style.top="0",this.frame.appendChild(e),this.frame.appendChild(i),this.frame.appendChild(o);var n=e.offsetWidth,s=e.offsetHeight,r=i.offsetHeight,a=o.offsetWidth,h=o.offsetHeight,d=t.screen.x-n/2;d=Math.min(Math.max(d,10),this.frame.clientWidth-10-n),i.style.left=t.screen.x+"px",i.style.top=t.screen.y-r+"px",e.style.left=d+"px",e.style.top=t.screen.y-r-s+"px",o.style.left=t.screen.x-a/2+"px",o.style.top=t.screen.y-h/2+"px"},o.prototype._hideTooltip=function(){if(this.tooltip){this.tooltip.dataPoint=null;for(var t in this.tooltip.dom)if(this.tooltip.dom.hasOwnProperty(t)){var e=this.tooltip.dom[t];e&&e.parentNode&&e.parentNode.removeChild(e)}}},t.exports=o},function(t,e){function i(t){return t?o(t):void 0}function o(t){for(var e in i.prototype)t[e]=i.prototype[e];return t}t.exports=i,i.prototype.on=i.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},i.prototype.once=function(t,e){function i(){o.off(t,i),e.apply(this,arguments)}var o=this;return this._callbacks=this._callbacks||{},i.fn=e,this.on(t,i),this},i.prototype.off=i.prototype.removeListener=i.prototype.removeAllListeners=i.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i=this._callbacks[t];if(!i)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var o,n=0;no;++o)i[o].apply(this,e)}return this},i.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks[t]||[]},i.prototype.hasListeners=function(t){return!!this.listeners(t).length}},function(t,e){function i(t,e,i){this.x=void 0!==t?t:0,this.y=void 0!==e?e:0,this.z=void 0!==i?i:0}i.subtract=function(t,e){var o=new i;return o.x=t.x-e.x,o.y=t.y-e.y,o.z=t.z-e.z,o},i.add=function(t,e){var o=new i;return o.x=t.x+e.x,o.y=t.y+e.y,o.z=t.z+e.z,o},i.avg=function(t,e){return new i((t.x+e.x)/2,(t.y+e.y)/2,(t.z+e.z)/2)},i.crossProduct=function(t,e){var o=new i;return o.x=t.y*e.z-t.z*e.y,o.y=t.z*e.x-t.x*e.z,o.z=t.x*e.y-t.y*e.x,o},i.prototype.length=function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},t.exports=i},function(t,e){function i(t,e){this.x=void 0!==t?t:0,this.y=void 0!==e?e:0}t.exports=i},function(t,e,i){function o(){this.armLocation=new n,this.armRotation={},this.armRotation.horizontal=0,this.armRotation.vertical=0,this.armLength=1.7,this.cameraLocation=new n,this.cameraRotation=new n(.5*Math.PI,0,0),this.calculateCameraOrientation()}var n=i(13);o.prototype.setArmLocation=function(t,e,i){this.armLocation.x=t,this.armLocation.y=e,this.armLocation.z=i,this.calculateCameraOrientation()},o.prototype.setArmRotation=function(t,e){void 0!==t&&(this.armRotation.horizontal=t),void 0!==e&&(this.armRotation.vertical=e,this.armRotation.vertical<0&&(this.armRotation.vertical=0),this.armRotation.vertical>.5*Math.PI&&(this.armRotation.vertical=.5*Math.PI)),(void 0!==t||void 0!==e)&&this.calculateCameraOrientation()},o.prototype.getArmRotation=function(){var t={};return t.horizontal=this.armRotation.horizontal,t.vertical=this.armRotation.vertical,t},o.prototype.setArmLength=function(t){void 0!==t&&(this.armLength=t,this.armLength<.71&&(this.armLength=.71),this.armLength>5&&(this.armLength=5),this.calculateCameraOrientation())},o.prototype.getArmLength=function(){return this.armLength},o.prototype.getCameraLocation=function(){return this.cameraLocation},o.prototype.getCameraRotation=function(){return this.cameraRotation},o.prototype.calculateCameraOrientation=function(){this.cameraLocation.x=this.armLocation.x-this.armLength*Math.sin(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.y=this.armLocation.y-this.armLength*Math.cos(this.armRotation.horizontal)*Math.cos(this.armRotation.vertical),this.cameraLocation.z=this.armLocation.z+this.armLength*Math.sin(this.armRotation.vertical),this.cameraRotation.x=Math.PI/2-this.armRotation.vertical,this.cameraRotation.y=0,this.cameraRotation.z=-this.armRotation.horizontal},t.exports=o},function(t,e,i){function o(t,e,i){this.data=t,this.column=e,this.graph=i,this.index=void 0,this.value=void 0,this.values=i.getDistinctValues(t.get(),this.column),this.values.sort(function(t,e){return t>e?1:e>t?-1:0}),this.values.length>0&&this.selectValue(0),this.dataPoints=[],this.loaded=!1,this.onLoadCallback=void 0,i.animationPreload?(this.loaded=!1,this.loadInBackground()):this.loaded=!0}var n=i(10);o.prototype.isLoaded=function(){return this.loaded},o.prototype.getLoadedProgress=function(){for(var t=this.values.length,e=0;this.dataPoints[e];)e++;return Math.round(e/t*100)},o.prototype.getLabel=function(){return this.graph.filterLabel},o.prototype.getColumn=function(){return this.column},o.prototype.getSelectedValue=function(){return void 0===this.index?void 0:this.values[this.index]},o.prototype.getValues=function(){return this.values},o.prototype.getValue=function(t){if(t>=this.values.length)throw"Error: index out of range";return this.values[t]},o.prototype._getDataPoints=function(t){if(void 0===t&&(t=this.index),void 0===t)return[];var e;if(this.dataPoints[t])e=this.dataPoints[t];else{var i={};i.column=this.column,i.value=this.values[t];var o=new n(this.data,{filter:function(t){return t[i.column]==i.value}}).get();e=this.graph._getDataPoints(o),this.dataPoints[t]=e}return e},o.prototype.setOnLoadCallback=function(t){this.onLoadCallback=t},o.prototype.selectValue=function(t){if(t>=this.values.length)throw"Error: index out of range";this.index=t,this.value=this.values[t]},o.prototype.loadInBackground=function(t){void 0===t&&(t=0);var e=this.graph.frame;if(t0&&(t--,this.setIndex(t))},o.prototype.next=function(){var t=this.getIndex();t0?this.setIndex(0):this.index=void 0},o.prototype.setIndex=function(t){if(!(to&&(o=0),o>this.values.length-1&&(o=this.values.length-1),o},o.prototype.indexToLeft=function(t){var e=parseFloat(this.frame.bar.style.width)-this.frame.slide.clientWidth-10,i=t/(this.values.length-1)*e,o=i+3;return o},o.prototype._onMouseMove=function(t){var e=t.clientX-this.startClientX,i=this.startSlideX+e,o=this.leftToIndex(i);this.setIndex(o),n.preventDefault()},o.prototype._onMouseUp=function(t){this.frame.style.cursor="auto",n.removeEventListener(document,"mousemove",this.onmousemove),n.removeEventListener(document,"mouseup",this.onmouseup),n.preventDefault()},t.exports=o},function(t,e){function i(t,e,i,o){this._start=0,this._end=0,this._step=1,this.prettyStep=!0,this.precision=5,this._current=0,this.setRange(t,e,i,o)}i.prototype.setRange=function(t,e,i,o){this._start=t?t:0,this._end=e?e:0,this.setStep(i,o)},i.prototype.setStep=function(t,e){void 0===t||0>=t||(void 0!==e&&(this.prettyStep=e),this.prettyStep===!0?this._step=i.calculatePrettyStep(t):this._step=t)},i.calculatePrettyStep=function(t){var e=function(t){return Math.log(t)/Math.LN10},i=Math.pow(10,Math.round(e(t))),o=2*Math.pow(10,Math.round(e(t/2))),n=5*Math.pow(10,Math.round(e(t/5))),s=i;return Math.abs(o-t)<=Math.abs(s-t)&&(s=o),Math.abs(n-t)<=Math.abs(s-t)&&(s=n),0>=s&&(s=1),s},i.prototype.getCurrent=function(){return parseFloat(this._current.toPrecision(this.precision))},i.prototype.getStep=function(){return this._step},i.prototype.start=function(){this._current=this._start-this._start%this._step},i.prototype.next=function(){this._current+=this._step},i.prototype.end=function(){return this._current>this._end},t.exports=i},function(t,e,i){function o(t,e,i,d){if(!(this instanceof o))throw new SyntaxError("Constructor must be called with the new operator");if(!(Array.isArray(i)||i instanceof r||i instanceof a)&&i instanceof Object){var c=d;d=i,i=c}var f=this;this.defaultOptions={start:null,end:null,autoResize:!0,throttleRedraw:0,orientation:{axis:"bottom",item:"bottom"},moment:n,width:null,height:null,maxHeight:null,minHeight:null},this.options=s.deepExtend({},this.defaultOptions),this._create(t),this.components=[],this.body={dom:this.dom,domProps:this.props,emitter:{on:this.on.bind(this),off:this.off.bind(this),emit:this.emit.bind(this)},hiddenDates:[],util:{getScale:function(){return f.timeAxis.step.scale},getStep:function(){return f.timeAxis.step.step},toScreen:f._toScreen.bind(f),toGlobalScreen:f._toGlobalScreen.bind(f),toTime:f._toTime.bind(f),toGlobalTime:f._toGlobalTime.bind(f)}},this.range=new h(this.body),this.components.push(this.range),this.body.range=this.range,this.timeAxis=new l(this.body),this.timeAxis2=null,this.components.push(this.timeAxis),this.currentTime=new u(this.body),this.components.push(this.currentTime),this.itemSet=new p(this.body),this.components.push(this.itemSet),this.itemsData=null,this.groupsData=null,this.on("tap",function(t){f.emit("click",f.getEventProperties(t))}),this.on("doubletap",function(t){f.emit("doubleClick",f.getEventProperties(t))}),this.dom.root.oncontextmenu=function(t){f.emit("contextmenu",f.getEventProperties(t))},d&&this.setOptions(d),i&&this.setGroups(i),e?this.setItems(e):this._redraw()}var n=(i(12),i(20),i(2)),s=i(1),r=i(8),a=i(10),h=i(24),d=i(28),l=i(39),u=i(44),c=i(42),p=i(29),f=i(45),m=i(47)["default"],v=i(47).printStyle,g=i(48).allOptions,y=i(48).configureOptions;o.prototype=new d,o.prototype._createConfigurator=function(){return new f(this,this.dom.container,y)},o.prototype.redraw=function(){this.itemSet&&this.itemSet.markDirty({refreshItems:!0}),this._redraw()},o.prototype.setOptions=function(t){var e=m.validate(t,g);if(e===!0&&console.log("%cErrors have been found in the supplied options object.",v),d.prototype.setOptions.call(this,t),"type"in t&&t.type!==this.options.type){this.options.type=t.type;var i=this.itemsData;if(i){var o=this.getSelection();this.setItems(null),this.setItems(i),this.setSelection(o)}}},o.prototype.setItems=function(t){var e,i=null==this.itemsData;if(e=t?t instanceof r||t instanceof a?t:new r(t,{type:{start:"Date",end:"Date"}}):null,this.itemsData=e,this.itemSet&&this.itemSet.setItems(e),i)if(void 0!=this.options.start||void 0!=this.options.end){if(void 0==this.options.start||void 0==this.options.end)var o=this.getItemRange();var n=void 0!=this.options.start?this.options.start:o.min,s=void 0!=this.options.end?this.options.end:o.max;this.setWindow(n,s,{animation:!1})}else this.fit({animation:!1})},o.prototype.setGroups=function(t){var e;e=t?t instanceof r||t instanceof a?t:new r(t):null,this.groupsData=e,this.itemSet.setGroups(e)},o.prototype.setData=function(t){t&&t.groups&&this.setGroups(t.groups),t&&t.items&&this.setItems(t.items)},o.prototype.setSelection=function(t,e){this.itemSet&&this.itemSet.setSelection(t),e&&e.focus&&this.focus(t,e)},o.prototype.getSelection=function(){return this.itemSet&&this.itemSet.getSelection()||[]},o.prototype.focus=function(t,e){if(this.itemsData&&void 0!=t){var i=Array.isArray(t)?t:[t],o=this.itemsData.getDataSet().get(i,{type:{start:"Date",end:"Date"}}),n=null,s=null;if(o.forEach(function(t){var e=t.start.valueOf(),i="end"in t?t.end.valueOf():t.start.valueOf();(null===n||n>e)&&(n=e),(null===s||i>s)&&(s=i)}),null!==n&&null!==s){var r=(n+s)/2,a=Math.max(this.range.end-this.range.start,1.1*(s-n)),h=e&&void 0!==e.animation?e.animation:!0;this.range.setRange(r-a/2,r+a/2,h)}}},o.prototype.fit=function(t){var e=t&&void 0!==t.animation?t.animation:!0,i=this.getItemRange();this.range.setRange(i.min,i.max,e)},o.prototype.getItemRange=function(){var t=this,e=this.getDataRange(),i=e.min,o=e.max,n=null,r=null;if(null!=i&&null!=o){var a,h,d,l,u;!function(){var e=function(t){return s.convert(t.data.start,"Date").valueOf()},c=function(t){var e=void 0!=t.data.end?t.data.end:t.data.start;return s.convert(e,"Date").valueOf()};a=o-i,0>=a&&(a=10),h=a/t.props.center.width,s.forEach(t.itemSet.items,function(t){t.show();var s=e(t),a=c(t),d=new Date(s-(t.getWidthLeft()+10)*h),l=new Date(a+(t.getWidthRight()+10)*h);i>d&&(i=d,n=t),l>o&&(o=l,r=t)}.bind(t)),n&&r&&(d=n.getWidthLeft()+10,l=r.getWidthRight()+10,u=t.props.center.width-d-l,u>0&&(i=e(n)-d*a/u,o=c(r)+l*a/u))}()}return{min:null!=i?new Date(i):null,max:null!=o?new Date(o):null}},o.prototype.getDataRange=function(){var t=null,e=null,i=this.itemsData&&this.itemsData.getDataSet();return i&&i.forEach(function(i){var o=s.convert(i.start,"Date").valueOf(),n=s.convert(void 0!=i.end?i.end:i.start,"Date").valueOf();(null===t||t>o)&&(t=o),(null===e||n>e)&&(e=o)}),{min:null!=t?new Date(t):null,max:null!=e?new Date(e):null}},o.prototype.getEventProperties=function(t){var e=t.center?t.center.x:t.clientX,i=t.center?t.center.y:t.clientY,o=e-s.getAbsoluteLeft(this.dom.centerContainer),n=i-s.getAbsoluteTop(this.dom.centerContainer),r=this.itemSet.itemFromTarget(t),a=this.itemSet.groupFromTarget(t),h=c.customTimeFromTarget(t),d=this.itemSet.options.snap||null,l=this.body.util.getScale(),u=this.body.util.getStep(),p=this._toTime(o),f=d?d(p,l,u):p,m=s.getTarget(t),v=null;return null!=r?v="item":null!=h?v="custom-time":s.hasParent(m,this.timeAxis.dom.foreground)?v="axis":this.timeAxis2&&s.hasParent(m,this.timeAxis2.dom.foreground)?v="axis":s.hasParent(m,this.itemSet.dom.labelSet)?v="group-label":s.hasParent(m,this.currentTime.bar)?v="current-time":s.hasParent(m,this.dom.center)&&(v="background"),{event:t,item:r?r.id:null,group:a?a.groupId:null,what:v,pageX:t.srcEvent?t.srcEvent.pageX:t.pageX,pageY:t.srcEvent?t.srcEvent.pageY:t.pageY,x:o,y:n,time:p,snappedTime:f}},t.exports=o},function(t,e,i){if("undefined"!=typeof window){var o=i(21),n=window.Hammer||i(22);t.exports=o(n,{preventDefault:"mouse"})}else t.exports=function(){throw Error("hammer.js is only available in a browser, not in node.js.")}},function(t,e,i){var o,n,s;!function(i){n=[],o=i,s="function"==typeof o?o.apply(e,n):o,!(void 0!==s&&(t.exports=s))}(function(){var t=null;return function e(i,o){function n(t){return t.match(/[^ ]+/g)}function s(e){if("hammer.input"!==e.type){if(e.srcEvent._handled||(e.srcEvent._handled={}),e.srcEvent._handled[e.type])return;e.srcEvent._handled[e.type]=!0}var i=!1;e.stopPropagation=function(){i=!0},e.firstTarget=t;for(var o=t;o&&!i;){var n=o.hammer&&o.hammer._handlers[e.type];if(n)for(var s=0;s0?d._handlers[t]=o:(i.off(t,s),delete d._handlers[t]))}),d},d.emit=function(e,o){t=o.target,i.emit(e,o)},d.destroy=function(){delete i.element.hammer,d._handlers={},i.destroy()},d}})},function(t,e,i){var o;!function(n,s,r,a){function h(t,e,i){return setTimeout(f(t,i),e)}function d(t,e,i){return Array.isArray(t)?(l(t,i[e],i),!0):!1}function l(t,e,i){var o;if(t)if(t.forEach)t.forEach(e,i);else if(t.length!==a)for(o=0;o-1}function _(t){return t.trim().split(/\s+/g)}function x(t,e,i){if(t.indexOf&&!i)return t.indexOf(e);for(var o=0;oi[e]}):o.sort()),o}function D(t,e){for(var i,o,n=e[0].toUpperCase()+e.slice(1),s=0;s1&&!i.firstMultiple?i.firstMultiple=N(e):1===n&&(i.firstMultiple=!1);var s=i.firstInput,r=i.firstMultiple,a=r?r.center:s.center,h=e.center=L(o);e.timeStamp=gt(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=F(a,h),e.distance=R(a,h),I(i,e),e.offsetDirection=B(e.deltaX,e.deltaY),e.scale=r?H(r.pointers,o):1,e.rotation=r?j(r.pointers,o):0,z(i,e);var d=t.element;b(e.srcEvent.target,d)&&(d=e.srcEvent.target),e.target=d}function I(t,e){var i=e.center,o=t.offsetDelta||{},n=t.prevDelta||{},s=t.prevInput||{};(e.eventType===Tt||s.eventType===St)&&(n=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},o=t.offsetDelta={x:i.x,y:i.y}),e.deltaX=n.x+(i.x-o.x),e.deltaY=n.y+(i.y-o.y)}function z(t,e){var i,o,n,s,r=t.lastInterval||e,h=e.timeStamp-r.timeStamp;if(e.eventType!=Pt&&(h>Ct||r.velocity===a)){var d=r.deltaX-e.deltaX,l=r.deltaY-e.deltaY,u=A(h,d,l);o=u.x,n=u.y,i=vt(u.x)>vt(u.y)?u.x:u.y,s=B(d,l),t.lastInterval=e}else i=r.velocity,o=r.velocityX,n=r.velocityY,s=r.direction;e.velocity=i,e.velocityX=o,e.velocityY=n,e.direction=s}function N(t){for(var e=[],i=0;in;)i+=t[n].clientX,o+=t[n].clientY,n++;return{x:mt(i/e),y:mt(o/e)}}function A(t,e,i){return{x:e/t||0,y:i/t||0}}function B(t,e){return t===e?It:vt(t)>=vt(e)?t>0?zt:Nt:e>0?Lt:At}function R(t,e,i){i||(i=jt);var o=e[i[0]]-t[i[0]],n=e[i[1]]-t[i[1]];return Math.sqrt(o*o+n*n)}function F(t,e,i){i||(i=jt);var o=e[i[0]]-t[i[0]],n=e[i[1]]-t[i[1]];return 180*Math.atan2(n,o)/Math.PI}function j(t,e){return F(e[1],e[0],Ht)-F(t[1],t[0],Ht)}function H(t,e){return R(e[0],e[1],Ht)/R(t[0],t[1],Ht)}function W(){this.evEl=Yt,this.evWin=Gt,this.allow=!0,this.pressed=!1,T.apply(this,arguments)}function Y(){this.evEl=qt,this.evWin=Xt,T.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}function G(){this.evTarget=Kt,this.evWin=Jt,this.started=!1,T.apply(this,arguments)}function U(t,e){var i=k(t.touches),o=k(t.changedTouches);return e&(St|Pt)&&(i=O(i.concat(o),"identifier",!0)),[i,o]}function V(){this.evTarget=$t,this.targetIds={},T.apply(this,arguments)}function q(t,e){var i=k(t.touches),o=this.targetIds;if(e&(Tt|Et)&&1===i.length)return o[i[0].identifier]=!0,[i,i];var n,s,r=k(t.changedTouches),a=[],h=this.target;if(s=i.filter(function(t){return b(t.target,h)}),e===Tt)for(n=0;na&&(e.push(t),a=e.length-1):n&(St|Pt)&&(i=!0),0>a||(e[a]=t,this.callback(this.manager,n,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),i&&e.splice(a,1))}});var Zt={touchstart:Tt,touchmove:Et,touchend:St,touchcancel:Pt},Kt="touchstart",Jt="touchstart touchmove touchend touchcancel";p(G,T,{handler:function(t){var e=Zt[t.type];if(e===Tt&&(this.started=!0),this.started){var i=U.call(this,t,e);e&(St|Pt)&&i[0].length-i[1].length===0&&(this.started=!1),this.callback(this.manager,e,{pointers:i[0],changedPointers:i[1],pointerType:kt,srcEvent:t})}}});var Qt={touchstart:Tt,touchmove:Et,touchend:St,touchcancel:Pt},$t="touchstart touchmove touchend touchcancel"; +p(V,T,{handler:function(t){var e=Qt[t.type],i=q.call(this,t,e);i&&this.callback(this.manager,e,{pointers:i[0],changedPointers:i[1],pointerType:kt,srcEvent:t})}}),p(X,T,{handler:function(t,e,i){var o=i.pointerType==kt,n=i.pointerType==Dt;if(o)this.mouse.allow=!1;else if(n&&!this.mouse.allow)return;e&(St|Pt)&&(this.mouse.allow=!0),this.callback(t,e,i)},destroy:function(){this.touch.destroy(),this.mouse.destroy()}});var te=D(pt.style,"touchAction"),ee=te!==a,ie="compute",oe="auto",ne="manipulation",se="none",re="pan-x",ae="pan-y";Z.prototype={set:function(t){t==ie&&(t=this.compute()),ee&&(this.manager.element.style[te]=t),this.actions=t.toLowerCase().trim()},update:function(){this.set(this.manager.options.touchAction)},compute:function(){var t=[];return l(this.manager.recognizers,function(e){m(e.options.enable,[e])&&(t=t.concat(e.getTouchAction()))}),K(t.join(" "))},preventDefaults:function(t){if(!ee){var e=t.srcEvent,i=t.offsetDirection;if(this.manager.session.prevented)return void e.preventDefault();var o=this.actions,n=w(o,se),s=w(o,ae),r=w(o,re);return n||s&&i&Bt||r&&i&Rt?this.preventSrc(e):void 0}},preventSrc:function(t){this.manager.session.prevented=!0,t.preventDefault()}};var he=1,de=2,le=4,ue=8,ce=ue,pe=16,fe=32;J.prototype={defaults:{},set:function(t){return u(this.options,t),this.manager&&this.manager.touchAction.update(),this},recognizeWith:function(t){if(d(t,"recognizeWith",this))return this;var e=this.simultaneous;return t=tt(t,this),e[t.id]||(e[t.id]=t,t.recognizeWith(this)),this},dropRecognizeWith:function(t){return d(t,"dropRecognizeWith",this)?this:(t=tt(t,this),delete this.simultaneous[t.id],this)},requireFailure:function(t){if(d(t,"requireFailure",this))return this;var e=this.requireFail;return t=tt(t,this),-1===x(e,t)&&(e.push(t),t.requireFailure(this)),this},dropRequireFailure:function(t){if(d(t,"dropRequireFailure",this))return this;t=tt(t,this);var e=x(this.requireFail,t);return e>-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){function e(e){i.manager.emit(i.options.event+(e?Q(o):""),t)}var i=this,o=this.state;ue>o&&e(!0),e(),o>=ue&&e(!0)},tryEmit:function(t){return this.canEmit()?this.emit(t):void(this.state=fe)},canEmit:function(){for(var t=0;ts?zt:Nt,i=s!=this.pX,o=Math.abs(t.deltaX)):(n=0===r?It:0>r?Lt:At,i=r!=this.pY,o=Math.abs(t.deltaY))),t.direction=n,i&&o>e.threshold&&n&e.direction},attrTest:function(t){return et.prototype.attrTest.call(this,t)&&(this.state&de||!(this.state&de)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=$(t.direction);e&&this.manager.emit(this.options.event+e,t),this._super.emit.call(this,t)}}),p(ot,et,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return[se]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||this.state&de)},emit:function(t){if(this._super.emit.call(this,t),1!==t.scale){var e=t.scale<1?"in":"out";this.manager.emit(this.options.event+e,t)}}}),p(nt,J,{defaults:{event:"press",pointers:1,time:500,threshold:5},getTouchAction:function(){return[oe]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,o=t.distancee.time;if(this._input=t,!o||!i||t.eventType&(St|Pt)&&!n)this.reset();else if(t.eventType&Tt)this.reset(),this._timer=h(function(){this.state=ce,this.tryEmit()},e.time,this);else if(t.eventType&St)return ce;return fe},reset:function(){clearTimeout(this._timer)},emit:function(t){this.state===ce&&(t&&t.eventType&St?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=gt(),this.manager.emit(this.options.event,this._input)))}}),p(st,et,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return[se]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||this.state&de)}}),p(rt,et,{defaults:{event:"swipe",threshold:10,velocity:.65,direction:Bt|Rt,pointers:1},getTouchAction:function(){return it.prototype.getTouchAction.call(this)},attrTest:function(t){var e,i=this.options.direction;return i&(Bt|Rt)?e=t.velocity:i&Bt?e=t.velocityX:i&Rt&&(e=t.velocityY),this._super.attrTest.call(this,t)&&i&t.direction&&t.distance>this.options.threshold&&vt(e)>this.options.velocity&&t.eventType&St},emit:function(t){var e=$(t.direction);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),p(at,J,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:2,posThreshold:10},getTouchAction:function(){return[ne]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,o=t.distanceu,c=r||null===n?n:h+(n-h)*i,v=r||null===s?s:l+(s-l)*i;g=a._applyRange(c,v),d.updateHiddenDates(a.options.moment,a.body,a.options.hiddenDates),m=m||g,g&&a.body.emitter.emit("rangechange",{start:new Date(a.start),end:new Date(a.end),byUser:o}),r?m&&a.body.emitter.emit("rangechanged",{start:new Date(a.start),end:new Date(a.end),byUser:o}):a.animationTimer=setTimeout(b,20)}};return v()}var g=this._applyRange(n,s);if(d.updateHiddenDates(this.options.moment,this.body,this.options.hiddenDates),g){var y={start:new Date(this.start),end:new Date(this.end),byUser:o};this.body.emitter.emit("rangechange",y),this.body.emitter.emit("rangechanged",y)}},o.prototype._cancelAnimation=function(){this.animationTimer&&(clearTimeout(this.animationTimer),this.animationTimer=null)},o.prototype._applyRange=function(t,e){var i,o=null!=t?r.convert(t,"Date").valueOf():this.start,n=null!=e?r.convert(e,"Date").valueOf():this.end,s=null!=this.options.max?r.convert(this.options.max,"Date").valueOf():null,a=null!=this.options.min?r.convert(this.options.min,"Date").valueOf():null;if(isNaN(o)||null===o)throw new Error('Invalid start "'+t+'"');if(isNaN(n)||null===n)throw new Error('Invalid end "'+e+'"');if(o>n&&(n=o),null!==a&&a>o&&(i=a-o,o+=i,n+=i,null!=s&&n>s&&(n=s)),null!==s&&n>s&&(i=n-s,o-=i,n-=i,null!=a&&a>o&&(o=a)),null!==this.options.zoomMin){var h=parseFloat(this.options.zoomMin);0>h&&(h=0),h>n-o&&(this.end-this.start===h&&o>this.start&&nd&&(d=0),n-o>d&&(this.end-this.start===d&&othis.end?(o=this.start,n=this.end):(i=n-o-d,o+=i/2,n-=i/2))}var l=this.start!=o||this.end!=n;return o>=this.start&&o<=this.end||n>=this.start&&n<=this.end||this.start>=o&&this.start<=n||this.end>=o&&this.end<=n||this.body.emitter.emit("checkRangedItems"),this.start=o,this.end=n,l},o.prototype.getRange=function(){return{start:this.start,end:this.end}},o.prototype.conversion=function(t,e){return o.conversion(this.start,this.end,t,e)},o.conversion=function(t,e,i,o){return void 0===o&&(o=0),0!=i&&e-t!=0?{offset:t,scale:i/(e-t-o)}:{offset:0,scale:1}},o.prototype._onDragStart=function(t){this.deltaDifference=0,this.previousDelta=0,this.options.moveable&&this._isInsideRange(t)&&this.props.touch.allowDragging&&(this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.dragging=!0,this.body.dom.root&&(this.body.dom.root.style.cursor="move"))},o.prototype._onDrag=function(t){if(this.props.touch.dragging&&this.options.moveable&&this.props.touch.allowDragging){var e=this.options.direction;n(e);var i="horizontal"==e?t.deltaX:t.deltaY;i-=this.deltaDifference;var o=this.props.touch.end-this.props.touch.start,s=d.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end);o-=s;var r="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height,a=-i/r*o,h=this.props.touch.start+a,l=this.props.touch.end+a,u=d.snapAwayFromHidden(this.body.hiddenDates,h,this.previousDelta-i,!0),c=d.snapAwayFromHidden(this.body.hiddenDates,l,this.previousDelta-i,!0);if(u!=h||c!=l)return this.deltaDifference+=i,this.props.touch.start=u,this.props.touch.end=c,void this._onDrag(t);this.previousDelta=i,this._applyRange(h,l),this.body.emitter.emit("rangechange",{start:new Date(this.start),end:new Date(this.end),byUser:!0})}},o.prototype._onDragEnd=function(t){this.props.touch.dragging&&this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.dragging=!1,this.body.dom.root&&(this.body.dom.root.style.cursor="auto"),this.body.emitter.emit("rangechanged",{start:new Date(this.start),end:new Date(this.end),byUser:!0}))},o.prototype._onMouseWheel=function(t){if(this.options.zoomable&&this.options.moveable&&this._isInsideRange(t)&&(!this.options.zoomKey||t[this.options.zoomKey])){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),e){var i;i=0>e?1-e/5:1/(1+e/5);var o=s({x:t.clientX,y:t.clientY},this.body.dom.center),n=this._pointerToDate(o);this.zoom(i,n,e)}t.preventDefault()}},o.prototype._onTouch=function(t){this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.allowDragging=!0,this.props.touch.center=null,this.scaleOffset=0,this.deltaDifference=0},o.prototype._onPinch=function(t){if(this.options.zoomable&&this.options.moveable){this.props.touch.allowDragging=!1,this.props.touch.center||(this.props.touch.center=s(t.center,this.body.dom.center));var e=1/(t.scale+this.scaleOffset),i=this._pointerToDate(this.props.touch.center),o=d.getHiddenDurationBetween(this.options.moment,this.body.hiddenDates,this.start,this.end),n=d.getHiddenDurationBefore(this.options.moment,this.body.hiddenDates,this,i),r=o-n,a=i-n+(this.props.touch.start-(i-n))*e,h=i+r+(this.props.touch.end-(i+r))*e;this.startToFront=0>=1-e,this.endToFront=0>=e-1;var l=d.snapAwayFromHidden(this.body.hiddenDates,a,1-e,!0),u=d.snapAwayFromHidden(this.body.hiddenDates,h,e-1,!0);(l!=a||u!=h)&&(this.props.touch.start=l,this.props.touch.end=u,this.scaleOffset=1-t.scale,a=l,h=u),this.setRange(a,h,!1,!0),this.startToFront=!1,this.endToFront=!0}},o.prototype._isInsideRange=function(t){var e=t.center?t.center.x:t.clientX,i=e-r.getAbsoluteLeft(this.body.dom.centerContainer),o=this.body.util.toTime(i);return o>=this.start&&o<=this.end},o.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(n(i),"horizontal"==i)return this.body.util.toTime(t.x).valueOf();var o=this.body.domProps.center.height;return e=this.conversion(o),t.y/e.scale+e.offset},o.prototype.zoom=function(t,e,i){null==e&&(e=(this.start+this.end)/2);var o=d.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end),n=d.getHiddenDurationBefore(this.options.moment,this.body.hiddenDates,this,e),s=o-n,r=e-n+(this.start-(e-n))*t,a=e+s+(this.end-(e+s))*t;this.startToFront=i>0?!1:!0,this.endToFront=-i>0?!1:!0;var h=d.snapAwayFromHidden(this.body.hiddenDates,r,i,!0),l=d.snapAwayFromHidden(this.body.hiddenDates,a,-i,!0);(h!=r||l!=a)&&(r=h,a=l),this.setRange(r,a,!1,!0),this.startToFront=!1,this.endToFront=!0},o.prototype.move=function(t){var e=this.end-this.start,i=this.start+e*t,o=this.end+e*t;this.start=i,this.end=o},o.prototype.moveTo=function(t){var e=(this.start+this.end)/2,i=e-t,o=this.start-i,n=this.end-i;this.setRange(o,n)},t.exports=o},function(t,e,i){i(20);e.onTouch=function(t,e){e.inputHandler=function(t){t.isFirst&&!o&&(e(t),o=!0,setTimeout(function(){o=!1},0))},t.on("hammer.input",e.inputHandler)};var o=!1;e.onRelease=function(t,e){return e.inputHandler=function(t){t.isFinal&&!n&&(e(t),n=!0,setTimeout(function(){n=!1},0))},t.on("hammer.input",e.inputHandler)};var n=!1;e.offTouch=function(t,e){t.off("hammer.input",e.inputHandler)},e.offRelease=e.offTouch},function(t,e){function i(t,e){this.options=null,this.props=null}i.prototype.setOptions=function(t){t&&util.extend(this.options,t)},i.prototype.redraw=function(){return!1},i.prototype.destroy=function(){},i.prototype._isResized=function(){var t=this.props._previousWidth!==this.props.width||this.props._previousHeight!==this.props.height;return this.props._previousWidth=this.props.width,this.props._previousHeight=this.props.height,t},t.exports=i},function(t,e){e.convertHiddenOptions=function(t,e,i){if(e.hiddenDates=[],i&&1==Array.isArray(i)){for(var o=0;o=4*a){var c=0,p=s.clone();switch(o[h].repeat){case"daily":d.day()!=l.day()&&(c=1),d.dayOfYear(n.dayOfYear()),d.year(n.year()),d.subtract(7,"days"),l.dayOfYear(n.dayOfYear()),l.year(n.year()),l.subtract(7-c,"days"),p.add(1,"weeks");break;case"weekly":var f=l.diff(d,"days"),m=d.day();d.date(n.date()),d.month(n.month()),d.year(n.year()),l=d.clone(),d.day(m),l.day(m),l.add(f,"days"),d.subtract(1,"weeks"),l.subtract(1,"weeks"),p.add(1,"weeks");break;case"monthly":d.month()!=l.month()&&(c=1),d.month(n.month()),d.year(n.year()),d.subtract(1,"months"),l.month(n.month()),l.year(n.year()),l.subtract(1,"months"),l.add(c,"months"),p.add(1,"months");break;case"yearly":d.year()!=l.year()&&(c=1),d.year(n.year()),d.subtract(1,"years"),l.year(n.year()),l.subtract(1,"years"),l.add(c,"years"),p.add(1,"years");break;default:return void console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:",o[h].repeat)}for(;p>d;)switch(i.hiddenDates.push({start:d.valueOf(),end:l.valueOf()}),o[h].repeat){case"daily":d.add(1,"days"),l.add(1,"days");break;case"weekly":d.add(1,"weeks"),l.add(1,"weeks");break;case"monthly":d.add(1,"months"),l.add(1,"months");break;case"yearly":d.add(1,"y"),l.add(1,"y");break;default:return void console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:",o[h].repeat)}i.hiddenDates.push({start:d.valueOf(),end:l.valueOf()})}}e.removeDuplicates(i);var v=e.isHidden(i.range.start,i.hiddenDates),g=e.isHidden(i.range.end,i.hiddenDates),y=i.range.start,b=i.range.end;1==v.hidden&&(y=1==i.range.startToFront?v.startDate-1:v.endDate+1),1==g.hidden&&(b=1==i.range.endToFront?g.startDate-1:g.endDate+1),(1==v.hidden||1==g.hidden)&&i.range._applyRange(y,b)}},e.removeDuplicates=function(t){for(var e=t.hiddenDates,i=[],o=0;o=e[o].start&&e[n].end<=e[o].end?e[n].remove=!0:e[n].start>=e[o].start&&e[n].start<=e[o].end?(e[o].end=e[n].end,e[n].remove=!0):e[n].end>=e[o].start&&e[n].end<=e[o].end&&(e[o].start=e[n].start,e[n].remove=!0));for(var o=0;o=r&&a>n){o=!0;break}}if(1==o&&n=e&&i>r&&(o+=r-s)}return o},e.correctTimeForHidden=function(t,i,o,n){return n=t(n).toDate().valueOf(),n-=e.getHiddenDurationBefore(t,i,o,n)},e.getHiddenDurationBefore=function(t,e,i,o){var n=0;o=t(o).toDate().valueOf();for(var s=0;s=i.start&&a=a&&(n+=a-r)}return n},e.getAccumulatedHiddenDuration=function(t,e,i){for(var o=0,n=0,s=e.start,r=0;r=e.start&&h=i)break;o+=h-a}}return o},e.snapAwayFromHidden=function(t,i,o,n){var s=e.isHidden(i,t);return 1==s.hidden?0>o?1==n?s.startDate-(s.endDate-i)-1:s.startDate-1:1==n?s.endDate+(i-s.startDate)+1:s.endDate+1:i},e.isHidden=function(t,e){for(var i=0;i=o&&n>t)return{hidden:!0,startDate:o,endDate:n}}return{hidden:!1,startDate:o,endDate:n}}},function(t,e,i){function o(){}var n=i(12),s=i(20),r=i(25),a=i(1),h=(i(8),i(10),i(24),i(29),i(39)),d=i(40),l=i(27),u=i(42);n(o.prototype),o.prototype._create=function(t){function e(t){i.isActive()&&i.emit("mousewheel",t)}this.dom={},this.dom.container=t,this.dom.root=document.createElement("div"),this.dom.background=document.createElement("div"),this.dom.backgroundVertical=document.createElement("div"),this.dom.backgroundHorizontal=document.createElement("div"),this.dom.centerContainer=document.createElement("div"),this.dom.leftContainer=document.createElement("div"),this.dom.rightContainer=document.createElement("div"),this.dom.center=document.createElement("div"),this.dom.left=document.createElement("div"),this.dom.right=document.createElement("div"),this.dom.top=document.createElement("div"),this.dom.bottom=document.createElement("div"),this.dom.shadowTop=document.createElement("div"),this.dom.shadowBottom=document.createElement("div"),this.dom.shadowTopLeft=document.createElement("div"),this.dom.shadowBottomLeft=document.createElement("div"),this.dom.shadowTopRight=document.createElement("div"),this.dom.shadowBottomRight=document.createElement("div"),this.dom.root.className="vis-timeline",this.dom.background.className="vis-panel vis-background",this.dom.backgroundVertical.className="vis-panel vis-background vis-vertical",this.dom.backgroundHorizontal.className="vis-panel vis-background vis-horizontal",this.dom.centerContainer.className="vis-panel vis-center",this.dom.leftContainer.className="vis-panel vis-left",this.dom.rightContainer.className="vis-panel vis-right",this.dom.top.className="vis-panel vis-top",this.dom.bottom.className="vis-panel vis-bottom",this.dom.left.className="vis-content",this.dom.center.className="vis-content",this.dom.right.className="vis-content",this.dom.shadowTop.className="vis-shadow vis-top",this.dom.shadowBottom.className="vis-shadow vis-bottom",this.dom.shadowTopLeft.className="vis-shadow vis-top",this.dom.shadowBottomLeft.className="vis-shadow vis-bottom",this.dom.shadowTopRight.className="vis-shadow vis-top",this.dom.shadowBottomRight.className="vis-shadow vis-bottom",this.dom.root.appendChild(this.dom.background),this.dom.root.appendChild(this.dom.backgroundVertical),this.dom.root.appendChild(this.dom.backgroundHorizontal),this.dom.root.appendChild(this.dom.centerContainer),this.dom.root.appendChild(this.dom.leftContainer),this.dom.root.appendChild(this.dom.rightContainer),this.dom.root.appendChild(this.dom.top),this.dom.root.appendChild(this.dom.bottom),this.dom.centerContainer.appendChild(this.dom.center),this.dom.leftContainer.appendChild(this.dom.left),this.dom.rightContainer.appendChild(this.dom.right),this.dom.centerContainer.appendChild(this.dom.shadowTop),this.dom.centerContainer.appendChild(this.dom.shadowBottom),this.dom.leftContainer.appendChild(this.dom.shadowTopLeft),this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft),this.dom.rightContainer.appendChild(this.dom.shadowTopRight),this.dom.rightContainer.appendChild(this.dom.shadowBottomRight),this.on("rangechange",function(){this._redraw()}.bind(this)),this.on("touch",this._onTouch.bind(this)),this.on("pan",this._onDrag.bind(this));var i=this;this.on("change",function(t){t&&1==t.queue?i._redrawTimer||(i._redrawTimer=setTimeout(function(){i._redrawTimer=null,i._redraw()},0)):i._redraw()}),this.hammer=new s(this.dom.root),this.hammer.get("pinch").set({enable:!0}),this.hammer.get("pan").set({threshold:5,direction:30}),this.listeners={};var o=["tap","doubletap","press","pinch","pan","panstart","panmove","panend"];if(o.forEach(function(t){var e=function(e){i.isActive()&&i.emit(t,e)};i.hammer.on(t,e),i.listeners[t]=e}),r.onTouch(this.hammer,function(t){i.emit("touch",t)}.bind(this)),r.onRelease(this.hammer,function(t){i.emit("release",t)}.bind(this)),this.dom.root.addEventListener("mousewheel",e),this.dom.root.addEventListener("DOMMouseScroll",e),this.props={root:{},background:{},centerContainer:{},leftContainer:{},rightContainer:{},center:{},left:{},right:{},top:{},bottom:{},border:{},scrollTop:0,scrollTopMin:0},this.customTimes=[],this.touch={},this.redrawCount=0,!t)throw new Error("No container provided");t.appendChild(this.dom.root)},o.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","clickToUse","dataAttributes","hiddenDates","locale","locales","moment","throttleRedraw"];if(a.selectiveExtend(e,this.options,t),"orientation"in t&&("string"==typeof t.orientation?this.options.orientation={item:t.orientation,axis:t.orientation}:"object"==typeof t.orientation&&("item"in t.orientation&&(this.options.orientation.item=t.orientation.item),"axis"in t.orientation&&(this.options.orientation.axis=t.orientation.axis))),"both"===this.options.orientation.axis){if(!this.timeAxis2){var i=this.timeAxis2=new h(this.body);i.setOptions=function(t){var e=t?a.extend({},t):{};e.orientation="top",h.prototype.setOptions.call(i,e)},this.components.push(i)}}else if(this.timeAxis2){var o=this.components.indexOf(this.timeAxis2);-1!==o&&this.components.splice(o,1),this.timeAxis2.destroy(),this.timeAxis2=null}if("function"==typeof t.drawPoints&&(t.drawPoints={onRender:t.drawPoints}),"hiddenDates"in this.options&&l.convertHiddenOptions(this.options.moment,this.body,this.options.hiddenDates),"clickToUse"in t&&(t.clickToUse?this.activator||(this.activator=new d(this.dom.root)):this.activator&&(this.activator.destroy(),delete this.activator)),"showCustomTime"in t)throw new Error("Option `showCustomTime` is deprecated. Create a custom time bar via timeline.addCustomTime(time [, id])");this._initAutoResize()}if(this.components.forEach(function(e){return e.setOptions(t)}),"configure"in t){this.configurator||(this.configurator=this._createConfigurator()),this.configurator.setOptions(t.configure);var n=a.deepExtend({},this.options);this.components.forEach(function(t){a.deepExtend(n,t.options)}),this.configurator.setModuleOptions({global:n})}this._origRedraw||(this._origRedraw=this._redraw.bind(this)),this._redraw=a.throttle(this._origRedraw,this.options.throttleRedraw),this._redraw()},o.prototype.isActive=function(){return!this.activator||this.activator.active},o.prototype.destroy=function(){this.setItems(null),this.setGroups(null),this.off(),this._stopAutoResize(),this.dom.root.parentNode&&this.dom.root.parentNode.removeChild(this.dom.root),this.dom=null,this.activator&&(this.activator.destroy(),delete this.activator);for(var t in this.listeners)this.listeners.hasOwnProperty(t)&&delete this.listeners[t];this.listeners=null,this.hammer=null,this.components.forEach(function(t){return t.destroy()}),this.body=null},o.prototype.setCustomTime=function(t,e){var i=this.customTimes.filter(function(t){return e===t.options.id});if(0===i.length)throw new Error("No custom time bar found with id "+JSON.stringify(e));i.length>0&&i[0].setCustomTime(t)},o.prototype.getCustomTime=function(t){var e=this.customTimes.filter(function(e){return e.options.id===t});if(0===e.length)throw new Error("No custom time bar found with id "+JSON.stringify(t));return e[0].getCustomTime()},o.prototype.getEventProperties=function(t){return{event:t}},o.prototype.addCustomTime=function(t,e){var i=void 0!==t?a.convert(t,"Date").valueOf():new Date,o=this.customTimes.some(function(t){return t.options.id===e});if(o)throw new Error("A custom time with id "+JSON.stringify(e)+" already exists");var n=new u(this.body,a.extend({},this.options,{time:i,id:e}));return this.customTimes.push(n),this.components.push(n),this._redraw(),e},o.prototype.removeCustomTime=function(t){var e=this.customTimes.filter(function(e){return e.options.id===t});if(0===e.length)throw new Error("No custom time bar found with id "+JSON.stringify(t));e.forEach(function(t){this.customTimes.splice(this.customTimes.indexOf(t),1),this.components.splice(this.components.indexOf(t),1),t.destroy()}.bind(this))},o.prototype.getVisibleItems=function(){return this.itemSet&&this.itemSet.getVisibleItems()||[]},o.prototype.fit=function(t){var e=this.getDataRange();if(null!==e.min||null!==e.max){var i=e.max-e.min,o=new Date(e.min.valueOf()-.01*i),n=new Date(e.max.valueOf()+.01*i),s=t&&void 0!==t.animation?t.animation:!0; +this.range.setRange(o,n,s)}},o.prototype.getDataRange=function(){throw new Error("Cannot invoke abstract method getDataRange")},o.prototype.setWindow=function(t,e,i){var o;if(1==arguments.length){var n=arguments[0];o=void 0!==n.animation?n.animation:!0,this.range.setRange(n.start,n.end,o)}else o=i&&void 0!==i.animation?i.animation:!0,this.range.setRange(t,e,o)},o.prototype.moveTo=function(t,e){var i=this.range.end-this.range.start,o=a.convert(t,"Date").valueOf(),n=o-i/2,s=o+i/2,r=e&&void 0!==e.animation?e.animation:!0;this.range.setRange(n,s,r)},o.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},o.prototype.redraw=function(){this._redraw()},o.prototype._redraw=function(){var t=!1,e=this.options,i=this.props,o=this.dom;if(o){l.updateHiddenDates(this.options.moment,this.body,this.options.hiddenDates),"top"==e.orientation?(a.addClassName(o.root,"vis-top"),a.removeClassName(o.root,"vis-bottom")):(a.removeClassName(o.root,"vis-top"),a.addClassName(o.root,"vis-bottom")),o.root.style.maxHeight=a.option.asSize(e.maxHeight,""),o.root.style.minHeight=a.option.asSize(e.minHeight,""),o.root.style.width=a.option.asSize(e.width,""),i.border.left=(o.centerContainer.offsetWidth-o.centerContainer.clientWidth)/2,i.border.right=i.border.left,i.border.top=(o.centerContainer.offsetHeight-o.centerContainer.clientHeight)/2,i.border.bottom=i.border.top;var n=o.root.offsetHeight-o.root.clientHeight,s=o.root.offsetWidth-o.root.clientWidth;0===o.centerContainer.clientHeight&&(i.border.left=i.border.top,i.border.right=i.border.left),0===o.root.clientHeight&&(s=n),i.center.height=o.center.offsetHeight,i.left.height=o.left.offsetHeight,i.right.height=o.right.offsetHeight,i.top.height=o.top.clientHeight||-i.border.top,i.bottom.height=o.bottom.clientHeight||-i.border.bottom;var r=Math.max(i.left.height,i.center.height,i.right.height),h=i.top.height+r+i.bottom.height+n+i.border.top+i.border.bottom;o.root.style.height=a.option.asSize(e.height,h+"px"),i.root.height=o.root.offsetHeight,i.background.height=i.root.height-n;var d=i.root.height-i.top.height-i.bottom.height-n;i.centerContainer.height=d,i.leftContainer.height=d,i.rightContainer.height=i.leftContainer.height,i.root.width=o.root.offsetWidth,i.background.width=i.root.width-s,i.left.width=o.leftContainer.clientWidth||-i.border.left,i.leftContainer.width=i.left.width,i.right.width=o.rightContainer.clientWidth||-i.border.right,i.rightContainer.width=i.right.width;var u=i.root.width-i.left.width-i.right.width-s;i.center.width=u,i.centerContainer.width=u,i.top.width=u,i.bottom.width=u,o.background.style.height=i.background.height+"px",o.backgroundVertical.style.height=i.background.height+"px",o.backgroundHorizontal.style.height=i.centerContainer.height+"px",o.centerContainer.style.height=i.centerContainer.height+"px",o.leftContainer.style.height=i.leftContainer.height+"px",o.rightContainer.style.height=i.rightContainer.height+"px",o.background.style.width=i.background.width+"px",o.backgroundVertical.style.width=i.centerContainer.width+"px",o.backgroundHorizontal.style.width=i.background.width+"px",o.centerContainer.style.width=i.center.width+"px",o.top.style.width=i.top.width+"px",o.bottom.style.width=i.bottom.width+"px",o.background.style.left="0",o.background.style.top="0",o.backgroundVertical.style.left=i.left.width+i.border.left+"px",o.backgroundVertical.style.top="0",o.backgroundHorizontal.style.left="0",o.backgroundHorizontal.style.top=i.top.height+"px",o.centerContainer.style.left=i.left.width+"px",o.centerContainer.style.top=i.top.height+"px",o.leftContainer.style.left="0",o.leftContainer.style.top=i.top.height+"px",o.rightContainer.style.left=i.left.width+i.center.width+"px",o.rightContainer.style.top=i.top.height+"px",o.top.style.left=i.left.width+"px",o.top.style.top="0",o.bottom.style.left=i.left.width+"px",o.bottom.style.top=i.top.height+i.centerContainer.height+"px",this._updateScrollTop();var c=this.props.scrollTop;"top"!=e.orientation.item&&(c+=Math.max(this.props.centerContainer.height-this.props.center.height-this.props.border.top-this.props.border.bottom,0)),o.center.style.left="0",o.center.style.top=c+"px",o.left.style.left="0",o.left.style.top=c+"px",o.right.style.left="0",o.right.style.top=c+"px";var p=0==this.props.scrollTop?"hidden":"",f=this.props.scrollTop==this.props.scrollTopMin?"hidden":"";if(o.shadowTop.style.visibility=p,o.shadowBottom.style.visibility=f,o.shadowTopLeft.style.visibility=p,o.shadowBottomLeft.style.visibility=f,o.shadowTopRight.style.visibility=p,o.shadowBottomRight.style.visibility=f,this.components.forEach(function(e){t=e.redraw()||t}),t){var m=3;this.redrawCount0&&(this.props.scrollTop=0),this.props.scrollTope;e++)o=this.selection[e],n=this.items[o],n&&n.unselect();for(this.selection=[],e=0,i=t.length;i>e;e++)o=t[e],n=this.items[o],n&&(this.selection.push(o),n.select())},o.prototype.getSelection=function(){return this.selection.concat([])},o.prototype.getVisibleItems=function(){var t=this.body.range.getRange(),e=this.body.util.toScreen(t.start),i=this.body.util.toScreen(t.end),o=[];for(var n in this.groups)if(this.groups.hasOwnProperty(n))for(var s=this.groups[n],r=s.visibleItems,a=0;ae&&o.push(h.id)}return o},o.prototype._deselect=function(t){for(var e=this.selection,i=0,o=e.length;o>i;i++)if(e[i]==t){e.splice(i,1);break}},o.prototype.redraw=function(){var t=this.options.margin,e=this.body.range,i=s.option.asSize,o=this.options,n=o.orientation.item,r=!1,a=this.dom.frame;this.props.top=this.body.domProps.top.height+this.body.domProps.border.top,this.props.left=this.body.domProps.left.width+this.body.domProps.border.left,a.className="vis-itemset",r=this._orderGroups()||r;var h=e.end-e.start,d=h!=this.lastVisibleInterval||this.props.width!=this.props.lastWidth;d&&(this.stackDirty=!0),this.lastVisibleInterval=h,this.props.lastWidth=this.props.width;var l=this.stackDirty,u=this._firstGroup(),c={item:t.item,axis:t.axis},p={item:t.item,axis:t.item.vertical/2},f=0,m=t.axis+t.item.vertical;return this.groups[g].redraw(e,p,l),s.forEach(this.groups,function(t){var i=t==u?c:p,o=t.redraw(e,i,l);r=o||r,f+=t.height}),f=Math.max(f,m),this.stackDirty=!1,a.style.height=i(f),this.props.width=a.offsetWidth,this.props.height=f,this.dom.axis.style.top=i("top"==n?this.body.domProps.top.height+this.body.domProps.border.top:this.body.domProps.top.height+this.body.domProps.centerContainer.height),this.dom.axis.style.left="0",r=this._isResized()||r},o.prototype._firstGroup=function(){var t="top"==this.options.orientation.item?0:this.groupIds.length-1,e=this.groupIds[t],i=this.groups[e]||this.groups[v];return i||null},o.prototype._updateUngrouped=function(){var t,e,i=this.groups[v];this.groups[g];if(this.groupsData){if(i){i.hide(),delete this.groups[v];for(e in this.items)if(this.items.hasOwnProperty(e)){t=this.items[e],t.parent&&t.parent.remove(t);var o=this._getGroupId(t.data),n=this.groups[o];n&&n.add(t)||t.hide()}}}else if(!i){var s=null,r=null;i=new l(s,r,this),this.groups[v]=i;for(e in this.items)this.items.hasOwnProperty(e)&&(t=this.items[e],i.add(t));i.show()}},o.prototype.getLabelSet=function(){return this.dom.labelSet},o.prototype.setItems=function(t){var e,i=this,o=this.itemsData;if(t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.itemsData=t}else this.itemsData=null;if(o&&(s.forEach(this.itemListeners,function(t,e){o.off(e,t)}),e=o.getIds(),this._onRemove(e)),this.itemsData){var n=this.id;s.forEach(this.itemListeners,function(t,e){i.itemsData.on(e,t,n)}),e=this.itemsData.getIds(),this._onAdd(e),this._updateUngrouped()}},o.prototype.getItems=function(){return this.itemsData},o.prototype.setGroups=function(t){var e,i=this;if(this.groupsData&&(s.forEach(this.groupListeners,function(t,e){i.groupsData.off(e,t)}),e=this.groupsData.getIds(),this.groupsData=null,this._onRemoveGroups(e)),t){if(!(t instanceof r||t instanceof a))throw new TypeError("Data must be an instance of DataSet or DataView");this.groupsData=t}else this.groupsData=null;if(this.groupsData){var o=this.id;s.forEach(this.groupListeners,function(t,e){i.groupsData.on(e,t,o)}),e=this.groupsData.getIds(),this._onAddGroups(e)}this._updateUngrouped(),this._order(),this.body.emitter.emit("change",{queue:!0})},o.prototype.getGroups=function(){return this.groupsData},o.prototype.removeItem=function(t){var e=this.itemsData.get(t),i=this.itemsData.getDataSet();e&&this.options.onRemove(e,function(e){e&&i.remove(t)})},o.prototype._getType=function(t){return t.type||this.options.type||(t.end?"range":"box")},o.prototype._getGroupId=function(t){var e=this._getType(t);return"background"==e&&void 0==t.group?g:this.groupsData?t.group:v},o.prototype._onUpdate=function(t){var e=this;t.forEach(function(t){var i,n=e.itemsData.get(t,e.itemOptions),s=e.items[t],r=e._getType(n),a=o.types[r];if(s&&(a&&s instanceof a?e._updateItem(s,n):(i=s.selected,e._removeItem(s),s=null)),!s){if(!a)throw"rangeoverflow"==r?new TypeError('Item type "rangeoverflow" is deprecated. Use css styling instead: .vis-item.vis-range .vis-item-content {overflow: visible;}'):new TypeError('Unknown item type "'+r+'"');s=new a(n,e.conversion,e.options),s.id=t,e._addItem(s),i&&(this.selection.push(t),s.select())}}.bind(this)),this._order(),this.stackDirty=!0,this.body.emitter.emit("change",{queue:!0})},o.prototype._onAdd=o.prototype._onUpdate,o.prototype._onRemove=function(t){var e=0,i=this;t.forEach(function(t){var o=i.items[t];o&&(e++,i._removeItem(o))}),e&&(this._order(),this.stackDirty=!0,this.body.emitter.emit("change",{queue:!0}))},o.prototype._order=function(){s.forEach(this.groups,function(t){t.order()})},o.prototype._onUpdateGroups=function(t){this._onAddGroups(t)},o.prototype._onAddGroups=function(t){var e=this;t.forEach(function(t){var i=e.groupsData.get(t),o=e.groups[t];if(o)o.setData(i);else{if(t==v||t==g)throw new Error("Illegal group id. "+t+" is a reserved id.");var n=Object.create(e.options);s.extend(n,{height:null}),o=new l(t,i,e),e.groups[t]=o;for(var r in e.items)if(e.items.hasOwnProperty(r)){var a=e.items[r];a.data.group==t&&o.add(a)}o.order(),o.show()}}),this.body.emitter.emit("change",{queue:!0})},o.prototype._onRemoveGroups=function(t){var e=this.groups;t.forEach(function(t){var i=e[t];i&&(i.hide(),delete e[t])}),this.markDirty(),this.body.emitter.emit("change",{queue:!0})},o.prototype._orderGroups=function(){if(this.groupsData){var t=this.groupsData.getIds({order:this.options.groupOrder}),e=!s.equalArray(t,this.groupIds);if(e){var i=this.groups;t.forEach(function(t){i[t].hide()}),t.forEach(function(t){i[t].show()}),this.groupIds=t}return e}return!1},o.prototype._addItem=function(t){this.items[t.id]=t;var e=this._getGroupId(t.data),i=this.groups[e];i&&i.add(t)},o.prototype._updateItem=function(t,e){var i=t.data.group,o=t.data.subgroup;if(t.setData(e),i!=t.data.group||o!=t.data.subgroup){var n=this.groups[i];n&&n.remove(t);var s=this._getGroupId(t.data),r=this.groups[s];r&&r.add(t)}},o.prototype._removeItem=function(t){t.hide(),delete this.items[t.id];var e=this.selection.indexOf(t.id);-1!=e&&this.selection.splice(e,1),t.parent&&t.parent.remove(t)},o.prototype._constructByEndArray=function(t){for(var e=[],i=0;in+r)return}else{var a=e.height;if(n+a-r>o)return}}if(e&&e!=this.groupTouchParams.group){var h=this.groupsData,d=h.get(e.groupId),l=h.get(this.groupTouchParams.group.groupId);l&&d&&(this.options.groupOrderSwap(l,d,this.groupsData),this.groupsData.update(l),this.groupsData.update(d));var u=this.groupsData.getIds({order:this.options.groupOrder});if(!s.equalArray(u,this.groupTouchParams.originalOrder))for(var h=this.groupsData,c=this.groupTouchParams.originalOrder,p=this.groupTouchParams.group.groupId,f=Math.min(c.length,u.length),m=0,v=0,g=0;f>m;){for(;f>m+v&&f>m+g&&u[m+v]==c[m+g];)m++;if(m+v>=f)break;if(u[m+v]!=p)if(c[m+g]!=p){var y=u.indexOf(c[m+g]),b=h.get(u[m+v]),w=h.get(c[m+g]);this.options.groupOrderSwap(b,w,h),h.update(b),h.update(w);var _=u[m+v];u[m+v]=c[m+g],u[y]=_,m++}else g=1;else v=1}}}},o.prototype._onGroupDragEnd=function(t){if(this.options.groupEditable.order&&this.groupTouchParams.group){t.stopPropagation();var e=this,i=e.groupTouchParams.group.groupId,o=e.groupsData.getDataSet(),n=s.extend({},o.get(i));e.options.onMoveGroup(n,function(t){if(t)t[o._fieldId]=i,o.update(t);else{var n=o.getIds({order:e.options.groupOrder});if(!s.equalArray(n,e.groupTouchParams.originalOrder))for(var r=e.groupTouchParams.originalOrder,a=Math.min(r.length,n.length),h=0;a>h;){for(;a>h&&n[h]==r[h];)h++;if(h>=a)break;var d=n.indexOf(r[h]),l=o.get(n[h]),u=o.get(r[h]);e.options.groupOrderSwap(l,u,o),groupsData.update(l),groupsData.update(u);var c=n[h];n[h]=r[h],n[d]=c,h++}}}),e.body.emitter.emit("groupDragged",{groupId:i})}},o.prototype._onSelectItem=function(t){if(this.options.selectable){var e=t.srcEvent&&(t.srcEvent.ctrlKey||t.srcEvent.metaKey),i=t.srcEvent&&t.srcEvent.shiftKey;if(e||i)return void this._onMultiSelectItem(t);var o=this.getSelection(),n=this.itemFromTarget(t),s=n?[n.id]:[];this.setSelection(s);var r=this.getSelection();(r.length>0||o.length>0)&&this.body.emitter.emit("select",{items:r,event:t})}},o.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.options.snap||null,o=this.itemFromTarget(t);if(t.stopPropagation(),o){var n=e.itemsData.get(o.id);this.options.onUpdate(n,function(t){t&&e.itemsData.getDataSet().update(t)})}else{var r=s.getAbsoluteLeft(this.dom.frame),a=t.center.x-r,h=this.body.util.toTime(a),d=this.body.util.getScale(),l=this.body.util.getStep(),u={start:i?i(h,d,l):h,content:"new item"};if("range"===this.options.type){var c=this.body.util.toTime(a+this.props.width/5);u.end=i?i(c,d,l):c}u[this.itemsData._fieldId]=s.randomUUID();var p=this.groupFromTarget(t);p&&(u.group=p.groupId),u=this._cloneItemData(u),this.options.onAdd(u,function(t){t&&e.itemsData.getDataSet().add(t)})}}},o.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e=this.itemFromTarget(t);if(e){var i=this.options.multiselect?this.getSelection():[],n=t.srcEvent&&t.srcEvent.shiftKey||!1;if(n&&this.options.multiselect){i.push(e.id);var s=o._getItemRange(this.itemsData.get(i,this.itemOptions));i=[];for(var r in this.items)if(this.items.hasOwnProperty(r)){var a=this.items[r],h=a.data.start,d=void 0!==a.data.end?a.data.end:h;h>=s.min&&d<=s.max&&!(a instanceof m)&&i.push(a.id)}}else{var l=i.indexOf(e.id);-1==l?i.push(e.id):i.splice(l,1)}this.setSelection(i),this.body.emitter.emit("select",{items:this.getSelection(),event:t})}}},o._getItemRange=function(t){var e=null,i=null;return t.forEach(function(t){(null==i||t.starte)&&(e=t.end):(null==e||t.start>e)&&(e=t.start)}),{min:i,max:e}},o.prototype.itemFromTarget=function(t){for(var e=t.target;e;){if(e.hasOwnProperty("timeline-item"))return e["timeline-item"];e=e.parentNode}return null},o.prototype.groupFromTarget=function(t){for(var e=t.center?t.center.y:t.clientY,i=0;ia&&ea)return n}else if(0===i&&e0?t.step:1,this.autoScale=!1)},o.prototype.setAutoScale=function(t){this.autoScale=t},o.prototype.setMinimumStep=function(t){if(void 0!=t){var e=31104e6,i=2592e6,o=864e5,n=36e5,s=6e4,r=1e3,a=1;1e3*e>t&&(this.scale="year",this.step=1e3),500*e>t&&(this.scale="year",this.step=500),100*e>t&&(this.scale="year",this.step=100),50*e>t&&(this.scale="year",this.step=50),10*e>t&&(this.scale="year",this.step=10),5*e>t&&(this.scale="year",this.step=5),e>t&&(this.scale="year",this.step=1),3*i>t&&(this.scale="month",this.step=3),i>t&&(this.scale="month",this.step=1),5*o>t&&(this.scale="day",this.step=5),2*o>t&&(this.scale="day",this.step=2),o>t&&(this.scale="day",this.step=1),o/2>t&&(this.scale="weekday",this.step=1),4*n>t&&(this.scale="hour",this.step=4),n>t&&(this.scale="hour",this.step=1),15*s>t&&(this.scale="minute",this.step=15),10*s>t&&(this.scale="minute",this.step=10),5*s>t&&(this.scale="minute",this.step=5),s>t&&(this.scale="minute",this.step=1),15*r>t&&(this.scale="second",this.step=15),10*r>t&&(this.scale="second",this.step=10),5*r>t&&(this.scale="second",this.step=5),r>t&&(this.scale="second",this.step=1),200*a>t&&(this.scale="millisecond",this.step=200),100*a>t&&(this.scale="millisecond",this.step=100),50*a>t&&(this.scale="millisecond",this.step=50),10*a>t&&(this.scale="millisecond",this.step=10),5*a>t&&(this.scale="millisecond",this.step=5),a>t&&(this.scale="millisecond",this.step=1)}},o.snap=function(t,e,i){var o=n(t);if("year"==e){var s=o.year()+Math.round(o.month()/12);o.year(Math.round(s/i)*i),o.month(0),o.date(0),o.hours(0),o.minutes(0),o.seconds(0),o.milliseconds(0)}else if("month"==e)o.date()>15?(o.date(1),o.add(1,"month")):o.date(1),o.hours(0),o.minutes(0),o.seconds(0),o.milliseconds(0);else if("day"==e){switch(i){case 5:case 2:o.hours(24*Math.round(o.hours()/24));break;default:o.hours(12*Math.round(o.hours()/12))}o.minutes(0),o.seconds(0),o.milliseconds(0)}else if("weekday"==e){switch(i){case 5:case 2:o.hours(12*Math.round(o.hours()/12));break;default:o.hours(6*Math.round(o.hours()/6))}o.minutes(0),o.seconds(0),o.milliseconds(0)}else if("hour"==e){switch(i){case 4:o.minutes(60*Math.round(o.minutes()/60));break;default:o.minutes(30*Math.round(o.minutes()/30))}o.seconds(0),o.milliseconds(0)}else if("minute"==e){switch(i){case 15:case 10:o.minutes(5*Math.round(o.minutes()/5)),o.seconds(0);break;case 5:o.seconds(60*Math.round(o.seconds()/60));break;default:o.seconds(30*Math.round(o.seconds()/30))}o.milliseconds(0)}else if("second"==e)switch(i){case 15:case 10:o.seconds(5*Math.round(o.seconds()/5)),o.milliseconds(0);break;case 5:o.milliseconds(1e3*Math.round(o.milliseconds()/1e3));break;default:o.milliseconds(500*Math.round(o.milliseconds()/500))}else if("millisecond"==e){var r=i>5?i/2:1;o.milliseconds(Math.round(o.milliseconds()/r)*r)}return o},o.prototype.isMajor=function(){if(1==this.switchedYear)switch(this.switchedYear=!1,this.scale){case"year":case"month":case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedMonth)switch(this.switchedMonth=!1,this.scale){case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedDay)switch(this.switchedDay=!1,this.scale){case"millisecond":case"second":case"minute":case"hour":return!0;default:return!1}var t=this.moment(this.current);switch(this.scale){case"millisecond":return 0==t.milliseconds();case"second":return 0==t.seconds();case"minute":return 0==t.hours()&&0==t.minutes();case"hour":return 0==t.hours();case"weekday":case"day":return 1==t.date();case"month":return 0==t.month();case"year":return!1;default:return!1}},o.prototype.getLabelMinor=function(t){void 0==t&&(t=this.current);var e=this.format.minorLabels[this.scale];return e&&e.length>0?this.moment(t).format(e):""},o.prototype.getLabelMajor=function(t){void 0==t&&(t=this.current);var e=this.format.majorLabels[this.scale];return e&&e.length>0?this.moment(t).format(e):""},o.prototype.getClassName=function(){function t(t){return t/h%2==0?" vis-even":" vis-odd"}function e(t){return t.isSame(new Date,"day")?" vis-today":t.isSame(s().add(1,"day"),"day")?" vis-tomorrow":t.isSame(s().add(-1,"day"),"day")?" vis-yesterday":""}function i(t){return t.isSame(new Date,"week")?" vis-current-week":""}function o(t){return t.isSame(new Date,"month")?" vis-current-month":""}function n(t){return t.isSame(new Date,"year")?" vis-current-year":""}var s=this.moment,r=this.moment(this.current),a=r.locale?r.locale("en"):r.lang("en"),h=this.step;switch(this.scale){case"millisecond":return t(a.milliseconds()).trim();case"second":return t(a.seconds()).trim();case"minute":return t(a.minutes()).trim();case"hour":var d=a.hours();return 4==this.step&&(d=d+"-h"+(d+4)),"vis-h"+d+e(a)+t(a.hours());case"weekday":return"vis-"+a.format("dddd").toLowerCase()+e(a)+i(a)+t(a.date());case"day":var l=a.date(),u=a.format("MMMM").toLowerCase();return"vis-day"+l+" vis-"+u+o(a)+t(l-1);case"month":return"vis-"+a.format("MMMM").toLowerCase()+o(a)+t(a.month());case"year":var c=a.year();return"vis-year"+c+n(a)+t(c);default:return""}},t.exports=o},function(t,e,i){function o(t,e,i){this.groupId=t,this.subgroups={},this.subgroupIndex=0,this.subgroupOrderer=e&&e.subgroupOrder,this.itemSet=i,this.dom={},this.props={label:{width:0,height:0}},this.className=null,this.items={},this.visibleItems=[],this.orderedItems={byStart:[],byEnd:[]},this.checkRangedItems=!1;var o=this;this.itemSet.body.emitter.on("checkRangedItems",function(){o.checkRangedItems=!0}),this._create(),this.setData(e)}var n=i(1),s=i(32);i(33);o.prototype._create=function(){var t=document.createElement("div");this.itemSet.options.groupEditable.order?t.className="vis-label draggable":t.className="vis-label",this.dom.label=t;var e=document.createElement("div");e.className="vis-inner",t.appendChild(e),this.dom.inner=e;var i=document.createElement("div");i.className="vis-group",i["timeline-group"]=this,this.dom.foreground=i,this.dom.background=document.createElement("div"),this.dom.background.className="vis-group",this.dom.axis=document.createElement("div"),this.dom.axis.className="vis-group",this.dom.marker=document.createElement("div"),this.dom.marker.style.visibility="hidden",this.dom.marker.innerHTML="?",this.dom.background.appendChild(this.dom.marker)},o.prototype.setData=function(t){var e;if(e=this.itemSet.options&&this.itemSet.options.groupTemplate?this.itemSet.options.groupTemplate(t):t&&t.content,e instanceof Element){for(this.dom.inner.appendChild(e);this.dom.inner.firstChild;)this.dom.inner.removeChild(this.dom.inner.firstChild);this.dom.inner.appendChild(e)}else void 0!==e&&null!==e?this.dom.inner.innerHTML=e:this.dom.inner.innerHTML=this.groupId||"";this.dom.label.title=t&&t.title||"",this.dom.inner.firstChild?n.removeClassName(this.dom.inner,"vis-hidden"):n.addClassName(this.dom.inner,"vis-hidden");var i=t&&t.className||null;i!=this.className&&(this.className&&(n.removeClassName(this.dom.label,this.className),n.removeClassName(this.dom.foreground,this.className),n.removeClassName(this.dom.background,this.className),n.removeClassName(this.dom.axis,this.className)),n.addClassName(this.dom.label,i),n.addClassName(this.dom.foreground,i),n.addClassName(this.dom.background,i),n.addClassName(this.dom.axis,i),this.className=i),this.style&&(n.removeCssText(this.dom.label,this.style),this.style=null),t&&t.style&&(n.addCssText(this.dom.label,t.style),this.style=t.style)},o.prototype.getLabelWidth=function(){return this.props.label.width},o.prototype.redraw=function(t,e,i){var o=!1,r=this.dom.marker.clientHeight;if(r!=this.lastMarkerHeight&&(this.lastMarkerHeight=r,n.forEach(this.items,function(t){t.dirty=!0,t.displayed&&t.redraw()}),i=!0),"function"==typeof this.itemSet.options.order){if(i){var a=this,h=!1;n.forEach(this.items,function(t){t.displayed||(t.redraw(),a.visibleItems.push(t)),t.repositionX(h)});var d=this.orderedItems.byStart.slice().sort(function(t,e){return a.itemSet.options.order(t.data,e.data)});s.stack(d,e,!0)}this.visibleItems=this._updateVisibleItems(this.orderedItems,this.visibleItems,t)}else this.visibleItems=this._updateVisibleItems(this.orderedItems,this.visibleItems,t),this.itemSet.options.stack?s.stack(this.visibleItems,e,i):s.nostack(this.visibleItems,e,this.subgroups);var l=this._calculateHeight(e),u=this.dom.foreground;this.top=u.offsetTop,this.left=u.offsetLeft,this.width=u.offsetWidth,o=n.updateProperty(this,"height",l)||o,o=n.updateProperty(this.props.label,"width",this.dom.inner.clientWidth)||o,o=n.updateProperty(this.props.label,"height",this.dom.inner.clientHeight)||o,this.dom.background.style.height=l+"px",this.dom.foreground.style.height=l+"px",this.dom.label.style.height=l+"px";for(var c=0,p=this.visibleItems.length;p>c;c++){var f=this.visibleItems[c];f.repositionY(e)}return o},o.prototype._calculateHeight=function(t){var e,i=this.visibleItems;this.resetSubgroups();var o=this;if(i.length>0){var s=i[0].top,r=i[0].top+i[0].height;if(n.forEach(i,function(t){s=Math.min(s,t.top),r=Math.max(r,t.top+t.height),void 0!==t.data.subgroup&&(o.subgroups[t.data.subgroup].height=Math.max(o.subgroups[t.data.subgroup].height,t.height),o.subgroups[t.data.subgroup].visible=!0)}),s>t.axis){var a=s-t.axis;r-=a,n.forEach(i,function(t){t.top-=a})}e=r+t.item.vertical/2}else e=0;return e=Math.max(e,this.props.label.height)},o.prototype.show=function(){this.dom.label.parentNode||this.itemSet.dom.labelSet.appendChild(this.dom.label),this.dom.foreground.parentNode||this.itemSet.dom.foreground.appendChild(this.dom.foreground),this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background),this.dom.axis.parentNode||this.itemSet.dom.axis.appendChild(this.dom.axis)},o.prototype.hide=function(){var t=this.dom.label;t.parentNode&&t.parentNode.removeChild(t);var e=this.dom.foreground;e.parentNode&&e.parentNode.removeChild(e);var i=this.dom.background;i.parentNode&&i.parentNode.removeChild(i);var o=this.dom.axis;o.parentNode&&o.parentNode.removeChild(o)},o.prototype.add=function(t){if(this.items[t.id]=t,t.setParent(this),void 0!==t.data.subgroup&&(void 0===this.subgroups[t.data.subgroup]&&(this.subgroups[t.data.subgroup]={height:0,visible:!1,index:this.subgroupIndex,items:[]},this.subgroupIndex++),this.subgroups[t.data.subgroup].items.push(t)),this.orderSubgroups(),-1==this.visibleItems.indexOf(t)){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},o.prototype.orderSubgroups=function(){if(void 0!==this.subgroupOrderer){var t=[];if("string"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push({subgroup:e,sortField:this.subgroups[e].items[0].data[this.subgroupOrderer]});t.sort(function(t,e){return t.sortField-e.sortField})}else if("function"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push(this.subgroups[e].items[0].data);t.sort(this.subgroupOrderer)}if(t.length>0)for(var i=0;it?-1:l>=t?0:1};if(e.length>0)for(s=0;sl}),1==this.checkRangedItems)for(this.checkRangedItems=!1,s=0;sl})}for(s=0;s=0&&(s=e[r],!n(s));r--)void 0===o[s.id]&&(o[s.id]=!0,i.push(s));for(r=t+1;rn;n++)t[n].top=null;for(n=0,s=t.length;s>n;n++){var r=t[n];if(r.stack&&null===r.top){r.top=i.axis;do{for(var a=null,h=0,d=t.length;d>h;h++){var l=t[h];if(null!==l.top&&l!==r&&l.stack&&e.collision(r,l,i.item)){a=l;break}}null!=a&&(r.top=a.top+a.height+i.item.vertical)}while(a)}}},e.nostack=function(t,e,i){var o,n,s;for(o=0,n=t.length;n>o;o++)if(void 0!==t[o].data.subgroup){s=e.axis;for(var r in i)i.hasOwnProperty(r)&&1==i[r].visible&&i[r].indexe.left&&t.top-o.vertical+ie.top}},function(t,e,i){function o(t,e,i){if(this.props={content:{width:0}},this.overflow=!1,t){if(void 0==t.start)throw new Error('Property "start" missing in item '+t.id);if(void 0==t.end)throw new Error('Property "end" missing in item '+t.id)}n.call(this,t,e,i)}var n=(i(20),i(34));o.prototype=new n(null,null,null),o.prototype.baseClassName="vis-item vis-range",o.prototype.isVisible=function(t){return this.data.startt.start},o.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.frame=document.createElement("div"),t.frame.className="vis-item-overflow",t.box.appendChild(t.frame),t.content=document.createElement("div"),t.content.className="vis-item-content",t.frame.appendChild(t.content),t.box["timeline-item"]=this,this.dirty=!0),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.foreground;if(!e)throw new Error("Cannot redraw item: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateTitle(this.dom.box),this._updateDataAttributes(this.dom.box),this._updateStyle(this.dom.box);var i=(this.options.editable.updateTime||this.options.editable.updateGroup||this.editable===!0)&&this.editable!==!1,o=(this.data.className?" "+this.data.className:"")+(this.selected?" vis-selected":"")+(i?" vis-editable":" vis-readonly");t.box.className=this.baseClassName+o,this.overflow="hidden"!==window.getComputedStyle(t.frame).overflow,this.dom.content.style.maxWidth="none",this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dom.content.style.maxWidth="",this.dirty=!1}this._repaintDeleteButton(t.box),this._repaintDragLeft(),this._repaintDragRight()},o.prototype.show=function(){this.displayed||this.redraw()},o.prototype.hide=function(){if(this.displayed){var t=this.dom.box;t.parentNode&&t.parentNode.removeChild(t),this.displayed=!1}},o.prototype.repositionX=function(t){var e,i,o=this.parent.width,n=this.conversion.toScreen(this.data.start),s=this.conversion.toScreen(this.data.end);(void 0===t||t===!0)&&(-o>n&&(n=-o),s>2*o&&(s=2*o));var r=Math.max(s-n,1);switch(this.overflow?(this.left=n,this.width=r+this.props.content.width,i=this.props.content.width):(this.left=n,this.width=r,i=Math.min(s-n,this.props.content.width)),this.dom.box.style.left=this.left+"px",this.dom.box.style.width=r+"px",this.options.align){case"left":this.dom.content.style.left="0";break;case"right":this.dom.content.style.left=Math.max(r-i,0)+"px";break;case"center":this.dom.content.style.left=Math.max((r-i)/2,0)+"px";break;default:e=this.overflow?s>0?Math.max(-n,0):-i:0>n?-n:0,this.dom.content.style.left=e+"px"}},o.prototype.repositionY=function(){var t=this.options.orientation.item,e=this.dom.box;"top"==t?e.style.top=this.top+"px":e.style.top=this.parent.height-this.top-this.height+"px"},o.prototype._repaintDragLeft=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragLeft){var t=document.createElement("div");t.className="vis-drag-left",t.dragLeftItem=this,this.dom.box.appendChild(t),this.dom.dragLeft=t}else!this.selected&&this.dom.dragLeft&&(this.dom.dragLeft.parentNode&&this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft),this.dom.dragLeft=null)},o.prototype._repaintDragRight=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragRight){var t=document.createElement("div");t.className="vis-drag-right",t.dragRightItem=this,this.dom.box.appendChild(t),this.dom.dragRight=t}else!this.selected&&this.dom.dragRight&&(this.dom.dragRight.parentNode&&this.dom.dragRight.parentNode.removeChild(this.dom.dragRight),this.dom.dragRight=null)},t.exports=o},function(t,e,i){function o(t,e,i){this.id=null,this.parent=null,this.data=t,this.dom=null,this.conversion=e||{},this.options=i||{},this.selected=!1,this.displayed=!1,this.dirty=!0,this.top=null,this.left=null,this.width=null,this.height=null,this.editable=null,this.data&&this.data.hasOwnProperty("editable")&&"boolean"==typeof this.data.editable&&(this.editable=t.editable)}var n=i(20),s=i(1);o.prototype.stack=!0,o.prototype.select=function(){this.selected=!0,this.dirty=!0,this.displayed&&this.redraw()},o.prototype.unselect=function(){this.selected=!1,this.dirty=!0,this.displayed&&this.redraw()},o.prototype.setData=function(t){var e=void 0!=t.group&&this.data.group!=t.group;e&&this.parent.itemSet._moveToGroup(this,t.group),t.hasOwnProperty("editable")&&"boolean"==typeof t.editable&&(this.editable=t.editable),this.data=t,this.dirty=!0,this.displayed&&this.redraw()},o.prototype.setParent=function(t){this.displayed?(this.hide(),this.parent=t,this.parent&&this.show()):this.parent=t},o.prototype.isVisible=function(t){return!1},o.prototype.show=function(){return!1},o.prototype.hide=function(){return!1},o.prototype.redraw=function(){},o.prototype.repositionX=function(){},o.prototype.repositionY=function(){},o.prototype._repaintDeleteButton=function(t){var e=(this.options.editable.remove||this.data.editable===!0)&&this.data.editable!==!1;if(this.selected&&e&&!this.dom.deleteButton){var i=this,o=document.createElement("div");o.className="vis-delete",o.title="Delete this item",new n(o).on("tap",function(t){t.stopPropagation(),i.parent.removeFromDataSet(i)}),t.appendChild(o),this.dom.deleteButton=o}else!this.selected&&this.dom.deleteButton&&(this.dom.deleteButton.parentNode&&this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton),this.dom.deleteButton=null)},o.prototype._updateContents=function(t){var e;if(this.options.template){var i=this.parent.itemSet.itemsData.get(this.id);e=this.options.template(i)}else e=this.data.content;var o=this._contentToString(this.content)!==this._contentToString(e);if(o){if(e instanceof Element)t.innerHTML="",t.appendChild(e);else if(void 0!=e)t.innerHTML=e;else if("background"!=this.data.type||void 0!==this.data.content)throw new Error('Property "content" missing in item '+this.id);this.content=e}},o.prototype._updateTitle=function(t){null!=this.data.title?t.title=this.data.title||"":t.removeAttribute("vis-title")},o.prototype._updateDataAttributes=function(t){if(this.options.dataAttributes&&this.options.dataAttributes.length>0){var e=[];if(Array.isArray(this.options.dataAttributes))e=this.options.dataAttributes;else{if("all"!=this.options.dataAttributes)return;e=Object.keys(this.data)}for(var i=0;in;n++){var r=this.visibleItems[n];r.repositionY(e)}return o},o.prototype.show=function(){this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background)},t.exports=o},function(t,e,i){function o(t,e,i){if(this.props={dot:{width:0,height:0},line:{width:0,height:0}},t&&void 0==t.start)throw new Error('Property "start" missing in item '+t);n.call(this,t,e,i)}var n=i(34);i(1);o.prototype=new n(null,null,null),o.prototype.isVisible=function(t){var e=(t.end-t.start)/4;return this.data.start>t.start-e&&this.data.startt.start-e&&this.data.startt.start},o.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.frame=document.createElement("div"),t.frame.className="vis-item-overflow",t.box.appendChild(t.frame),t.content=document.createElement("div"),t.content.className="vis-item-content",t.frame.appendChild(t.content),this.dirty=!0),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.background;if(!e)throw new Error("Cannot redraw item: parent has no background container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateTitle(this.dom.content),this._updateDataAttributes(this.dom.content),this._updateStyle(this.dom.box);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" vis-selected":"");t.box.className=this.baseClassName+i,this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=0,this.dirty=!1}},o.prototype.show=r.prototype.show,o.prototype.hide=r.prototype.hide,o.prototype.repositionX=r.prototype.repositionX,o.prototype.repositionY=function(t){var e="top"===this.options.orientation.item;this.dom.content.style.top=e?"":"0",this.dom.content.style.bottom=e?"0":"";var i;if(void 0!==this.data.subgroup){var o=this.data.subgroup,n=this.parent.subgroups,r=n[o].index;if(1==e){i=this.parent.subgroups[o].height+t.item.vertical,i+=0==r?t.axis-.5*t.item.vertical:0;var a=this.parent.top;for(var h in n)n.hasOwnProperty(h)&&1==n[h].visible&&n[h].indexr&&(a+=l)}i=this.parent.subgroups[o].height+t.item.vertical,this.dom.box.style.top=this.parent.height-d+a+"px",this.dom.box.style.bottom=""}}else this.parent instanceof s?(i=Math.max(this.parent.height,this.parent.itemSet.body.domProps.center.height,this.parent.itemSet.body.domProps.centerContainer.height),this.dom.box.style.top=e?"0":"",this.dom.box.style.bottom=e?"":"0"):(i=this.parent.height,this.dom.box.style.top=this.parent.top+"px",this.dom.box.style.bottom="");this.dom.box.style.height=i+"px"},t.exports=o},function(t,e,i){function o(t,e){this.dom={foreground:null,lines:[],majorTexts:[],minorTexts:[],redundant:{lines:[],majorTexts:[],minorTexts:[]}},this.props={range:{start:0,end:0,minimumStep:0},lineTop:0},this.defaultOptions={orientation:{axis:"bottom"},showMinorLabels:!0,showMajorLabels:!0,format:r.FORMAT,moment:h,timeAxis:null},this.options=n.extend({},this.defaultOptions),this.body=t,this._create(),this.setOptions(e)}var n=i(1),s=i(26),r=i(30),a=i(27),h=i(2); +o.prototype=new s,o.prototype.setOptions=function(t){t&&(n.selectiveExtend(["showMinorLabels","showMajorLabels","hiddenDates","timeAxis","moment"],this.options,t),n.selectiveDeepExtend(["format"],this.options,t),"orientation"in t&&("string"==typeof t.orientation?this.options.orientation.axis=t.orientation:"object"==typeof t.orientation&&"axis"in t.orientation&&(this.options.orientation.axis=t.orientation.axis)),"locale"in t&&("function"==typeof h.locale?h.locale(t.locale):h.lang(t.locale)))},o.prototype._create=function(){this.dom.foreground=document.createElement("div"),this.dom.background=document.createElement("div"),this.dom.foreground.className="vis-time-axis vis-foreground",this.dom.background.className="vis-time-axis vis-background"},o.prototype.destroy=function(){this.dom.foreground.parentNode&&this.dom.foreground.parentNode.removeChild(this.dom.foreground),this.dom.background.parentNode&&this.dom.background.parentNode.removeChild(this.dom.background),this.body=null},o.prototype.redraw=function(){var t=this.props,e=this.dom.foreground,i=this.dom.background,o="top"==this.options.orientation.axis?this.body.dom.top:this.body.dom.bottom,n=e.parentNode!==o;this._calculateCharSize();var s=this.options.showMinorLabels&&"none"!==this.options.orientation.axis,r=this.options.showMajorLabels&&"none"!==this.options.orientation.axis;t.minorLabelHeight=s?t.minorCharHeight:0,t.majorLabelHeight=r?t.majorCharHeight:0,t.height=t.minorLabelHeight+t.majorLabelHeight,t.width=e.offsetWidth,t.minorLineHeight=this.body.domProps.root.height-t.majorLabelHeight-("top"==this.options.orientation.axis?this.body.domProps.bottom.height:this.body.domProps.top.height),t.minorLineWidth=1,t.majorLineHeight=t.minorLineHeight+t.majorLabelHeight,t.majorLineWidth=1;var a=e.nextSibling,h=i.nextSibling;return e.parentNode&&e.parentNode.removeChild(e),i.parentNode&&i.parentNode.removeChild(i),e.style.height=this.props.height+"px",this._repaintLabels(),a?o.insertBefore(e,a):o.appendChild(e),h?this.body.dom.backgroundVertical.insertBefore(i,h):this.body.dom.backgroundVertical.appendChild(i),this._isResized()||n},o.prototype._repaintLabels=function(){var t=this.options.orientation.axis,e=n.convert(this.body.range.start,"Number"),i=n.convert(this.body.range.end,"Number"),o=this.body.util.toTime(7*(this.props.minorCharWidth||10)).valueOf(),s=o-a.getHiddenDurationBefore(this.options.moment,this.body.hiddenDates,this.body.range,o);s-=this.body.util.toTime(0).valueOf();var h=new r(new Date(e),new Date(i),s,this.body.hiddenDates);h.setMoment(this.options.moment),this.options.format&&h.setFormat(this.options.format),this.options.timeAxis&&h.setScale(this.options.timeAxis),this.step=h;var d=this.dom;d.redundant.lines=d.lines,d.redundant.majorTexts=d.majorTexts,d.redundant.minorTexts=d.minorTexts,d.lines=[],d.majorTexts=[],d.minorTexts=[];var l,u,c,p,f,m,v,g,y,b=void 0,w=0;for(h.start(),u=h.getCurrent(),p=this.body.util.toScreen(u);h.hasNext()&&1e3>w;){w++,f=h.isMajor(),y=h.getClassName(),g=h.getLabelMinor(),l=u,c=p,h.next(),u=h.getCurrent(),p=this.body.util.toScreen(u),m=p-c;var _=(g.length+1)*this.props.minorCharWidth0&&(void 0==b&&(b=c),this._repaintMajorText(c,h.getLabelMajor(),t,y)),v=this._repaintMajorLine(c,m,t,y)):_?v=this._repaintMinorLine(c,m,t,y):v&&(v.style.width=parseInt(v.style.width)+m+"px")}if(this.options.showMajorLabels){var x=this.body.util.toTime(0),k=h.getLabelMajor(x),O=k.length*(this.props.majorCharWidth||10)+10;(void 0==b||b>O)&&this._repaintMajorText(0,k,t,y)}n.forEach(this.dom.redundant,function(t){for(;t.length;){var e=t.pop();e&&e.parentNode&&e.parentNode.removeChild(e)}})},o.prototype._repaintMinorText=function(t,e,i,o){var n=this.dom.redundant.minorTexts.shift();if(!n){var s=document.createTextNode("");n=document.createElement("div"),n.appendChild(s),this.dom.foreground.appendChild(n)}return this.dom.minorTexts.push(n),n.childNodes[0].nodeValue=e,n.style.top="top"==i?this.props.majorLabelHeight+"px":"0",n.style.left=t+"px",n.className="vis-text vis-minor "+o,n},o.prototype._repaintMajorText=function(t,e,i,o){var n=this.dom.redundant.majorTexts.shift();if(!n){var s=document.createTextNode(e);n=document.createElement("div"),n.appendChild(s),this.dom.foreground.appendChild(n)}return this.dom.majorTexts.push(n),n.childNodes[0].nodeValue=e,n.className="vis-text vis-major "+o,n.style.top="top"==i?"0":this.props.minorLabelHeight+"px",n.style.left=t+"px",n},o.prototype._repaintMinorLine=function(t,e,i,o){var n=this.dom.redundant.lines.shift();n||(n=document.createElement("div"),this.dom.background.appendChild(n)),this.dom.lines.push(n);var s=this.props;return"top"==i?n.style.top=s.majorLabelHeight+"px":n.style.top=this.body.domProps.top.height+"px",n.style.height=s.minorLineHeight+"px",n.style.left=t-s.minorLineWidth/2+"px",n.style.width=e+"px",n.className="vis-grid vis-vertical vis-minor "+o,n},o.prototype._repaintMajorLine=function(t,e,i,o){var n=this.dom.redundant.lines.shift();n||(n=document.createElement("div"),this.dom.background.appendChild(n)),this.dom.lines.push(n);var s=this.props;return"top"==i?n.style.top="0":n.style.top=this.body.domProps.top.height+"px",n.style.left=t-s.majorLineWidth/2+"px",n.style.height=s.majorLineHeight+"px",n.style.width=e+"px",n.className="vis-grid vis-vertical vis-major "+o,n},o.prototype._calculateCharSize=function(){this.dom.measureCharMinor||(this.dom.measureCharMinor=document.createElement("DIV"),this.dom.measureCharMinor.className="vis-text vis-minor vis-measure",this.dom.measureCharMinor.style.position="absolute",this.dom.measureCharMinor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMinor)),this.props.minorCharHeight=this.dom.measureCharMinor.clientHeight,this.props.minorCharWidth=this.dom.measureCharMinor.clientWidth,this.dom.measureCharMajor||(this.dom.measureCharMajor=document.createElement("DIV"),this.dom.measureCharMajor.className="vis-text vis-major vis-measure",this.dom.measureCharMajor.style.position="absolute",this.dom.measureCharMajor.appendChild(document.createTextNode("0")),this.dom.foreground.appendChild(this.dom.measureCharMajor)),this.props.majorCharHeight=this.dom.measureCharMajor.clientHeight,this.props.majorCharWidth=this.dom.measureCharMajor.clientWidth},t.exports=o},function(t,e,i){function o(t){this.active=!1,this.dom={container:t},this.dom.overlay=document.createElement("div"),this.dom.overlay.className="vis-overlay",this.dom.container.appendChild(this.dom.overlay),this.hammer=a(this.dom.overlay),this.hammer.on("tap",this._onTapOverlay.bind(this));var e=this,i=["tap","doubletap","press","pinch","pan","panstart","panmove","panend"];i.forEach(function(t){e.hammer.on(t,function(t){t.stopPropagation()})}),document&&document.body&&(this.onClick=function(i){n(i.target,t)||e.deactivate()},document.body.addEventListener("click",this.onClick)),void 0!==this.keycharm&&this.keycharm.destroy(),this.keycharm=s(),this.escListener=this.deactivate.bind(this)}function n(t,e){for(;t;){if(t===e)return!0;t=t.parentNode}return!1}var s=i(41),r=i(12),a=i(20),h=i(1);r(o.prototype),o.current=null,o.prototype.destroy=function(){this.deactivate(),this.dom.overlay.parentNode.removeChild(this.dom.overlay),this.onClick&&document.body.removeEventListener("click",this.onClick),this.hammer.destroy(),this.hammer=null},o.prototype.activate=function(){o.current&&o.current.deactivate(),o.current=this,this.active=!0,this.dom.overlay.style.display="none",h.addClassName(this.dom.container,"vis-active"),this.emit("change"),this.emit("activate"),this.keycharm.bind("esc",this.escListener)},o.prototype.deactivate=function(){this.active=!1,this.dom.overlay.style.display="",h.removeClassName(this.dom.container,"vis-active"),this.keycharm.unbind("esc",this.escListener),this.emit("change"),this.emit("deactivate")},o.prototype._onTapOverlay=function(t){this.activate(),t.stopPropagation()},t.exports=o},function(t,e,i){var o,n,s;!function(i,r){n=[],o=r,s="function"==typeof o?o.apply(e,n):o,!(void 0!==s&&(t.exports=s))}(this,function(){function t(t){var e,i=t&&t.preventDefault||!1,o=t&&t.container||window,n={},s={keydown:{},keyup:{}},r={};for(e=97;122>=e;e++)r[String.fromCharCode(e)]={code:65+(e-97),shift:!1};for(e=65;90>=e;e++)r[String.fromCharCode(e)]={code:e,shift:!0};for(e=0;9>=e;e++)r[""+e]={code:48+e,shift:!1};for(e=1;12>=e;e++)r["F"+e]={code:111+e,shift:!1};for(e=0;9>=e;e++)r["num"+e]={code:96+e,shift:!1};r["num*"]={code:106,shift:!1},r["num+"]={code:107,shift:!1},r["num-"]={code:109,shift:!1},r["num/"]={code:111,shift:!1},r["num."]={code:110,shift:!1},r.left={code:37,shift:!1},r.up={code:38,shift:!1},r.right={code:39,shift:!1},r.down={code:40,shift:!1},r.space={code:32,shift:!1},r.enter={code:13,shift:!1},r.shift={code:16,shift:void 0},r.esc={code:27,shift:!1},r.backspace={code:8,shift:!1},r.tab={code:9,shift:!1},r.ctrl={code:17,shift:!1},r.alt={code:18,shift:!1},r["delete"]={code:46,shift:!1},r.pageup={code:33,shift:!1},r.pagedown={code:34,shift:!1},r["="]={code:187,shift:!1},r["-"]={code:189,shift:!1},r["]"]={code:221,shift:!1},r["["]={code:219,shift:!1};var a=function(t){d(t,"keydown")},h=function(t){d(t,"keyup")},d=function(t,e){if(void 0!==s[e][t.keyCode]){for(var o=s[e][t.keyCode],n=0;no&&(o=30),o>1e3&&(o=1e3),e.redraw(),e.currentTimeTimer=setTimeout(t,o)}var e=this;t()},o.prototype.stop=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer)},o.prototype.setCurrentTime=function(t){var e=n.convert(t,"Date").valueOf(),i=(new Date).valueOf();this.offset=e-i,this.redraw()},o.prototype.getCurrentTime=function(){return new Date((new Date).valueOf()+this.offset)},t.exports=o},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){for(var i=0;i0&&this._makeItem([]),this._makeHeader(n),this._handleObject(this.configureOptions[n],[n])),i++);this.options.showButton===!0&&!function(){var e=document.createElement("div");e.className="vis-configuration vis-config-button",e.innerHTML="generate options",e.onclick=function(){t._printOptions()},e.onmouseover=function(){e.className="vis-configuration vis-config-button hover"},e.onmouseout=function(){e.className="vis-configuration vis-config-button"},t.optionsContainer=document.createElement("div"),t.optionsContainer.className="vis-configuration vis-config-option-container",t.domElements.push(t.optionsContainer),t.domElements.push(e)}(),this._push(),this.colorPicker.insertTo(this.container)}},{key:"_push",value:function(){this.wrapper=document.createElement("div"),this.wrapper.className="vis-configuration-wrapper",this.container.appendChild(this.wrapper);for(var t=0;t1?o-1:0),s=1;o>s;s++)n[s-1]=e[s];return n.forEach(function(t){r.appendChild(t)}),i.domElements.push(r),{v:i.domElements.length}}();if("object"==typeof r)return r.v}return 0}},{key:"_makeHeader",value:function(t){var e=document.createElement("div");e.className="vis-configuration vis-config-header",e.innerHTML=t,this._makeItem([],e)}},{key:"_makeLabel",value:function(t,e){var i=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],o=document.createElement("div");return o.className="vis-configuration vis-config-label vis-config-s"+e.length,i===!0?o.innerHTML=""+t+":":o.innerHTML=t+":",o}},{key:"_makeDropdown",value:function(t,e,i){var o=document.createElement("select");o.className="vis-configuration vis-config-select";var n=0;void 0!==e&&-1!==t.indexOf(e)&&(n=t.indexOf(e));for(var s=0;se&&n>e*u?(a.min=Math.ceil(e*u),l=a.min,d="range increased"):n>e/u&&(a.min=Math.ceil(e/u),l=a.min,d="range increased"),e*u>s&&1!==s&&(a.max=Math.ceil(e*u),l=a.max,d="range increased"),a.value=e}else a.value=o;var c=document.createElement("input");c.className="vis-configuration vis-config-rangeinput",c.value=a.value;var p=this;a.onchange=function(){c.value=this.value,p._update(Number(this.value),i)},a.oninput=function(){c.value=this.value};var f=this._makeLabel(i[i.length-1],i),m=this._makeItem(i,f,a,c);""!==d&&this.popupHistory[m]!==l&&(this.popupHistory[m]=l,this._setupPopup(d,m))}},{key:"_setupPopup",value:function(t,e){var i=this;if(this.initialized===!0&&this.allowCreation===!0&&this.popupCountervar options = "+JSON.stringify(t,null,2)+""}},{key:"getOptions",value:function(){for(var t={},e=0;es;s++)for(r=0;rp?p+1:p;var f=l/this.r,m=a.RGBToHSV(this.color.r,this.color.g,this.color.b);m.h=p,m.s=f;var v=a.HSVToRGB(m.h,m.s,m.v);v.a=this.color.a,this.color=v,this.initialColorDiv.style.backgroundColor="rgba("+this.initialColor.r+","+this.initialColor.g+","+this.initialColor.b+","+this.initialColor.a+")",this.newColorDiv.style.backgroundColor="rgba("+this.color.r+","+this.color.g+","+this.color.b+","+this.color.a+")"}}]),t}();e["default"]=h,t.exports=e["default"]},function(t,e,i){function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){for(var i=0;is.distance?console.log('%cUnknown option detected: "'+e+'" in '+t.printLocation(n.path,e,"")+"Perhaps it was misplaced? Matching option found at: "+t.printLocation(s.path,s.closestMatch,""),h):n.distance<=d?console.log('%cUnknown option detected: "'+e+'". Did you mean "'+n.closestMatch+'"?'+t.printLocation(n.path,e),h):console.log('%cUnknown option detected: "'+e+'". Did you mean one of these: '+t.print(Object.keys(i))+t.printLocation(o,e),h),r=!0}},{key:"findInOptions",value:function(e,i,o){var n=arguments.length<=3||void 0===arguments[3]?!1:arguments[3],r=1e9,a="",h=[],d=e.toLowerCase(),l=void 0;for(var u in i){var c=void 0;if(void 0!==i[u].__type__&&n===!0){var p=t.findInOptions(e,i[u],s.copyAndExtendArray(o,u));r>p.distance&&(a=p.closestMatch,h=p.path,r=p.distance,l=p.indexMatch)}else-1!==u.toLowerCase().indexOf(d)&&(l=u),c=t.levenshteinDistance(e,u),r>c&&(a=u,h=s.copyArray(o),r=c)}return{closestMatch:a,path:h,distance:r,indexMatch:l}}},{key:"printLocation",value:function(t,e){for(var i=arguments.length<=2||void 0===arguments[2]?"Problem value found at: \n":arguments[2],o="\n\n"+i+"options = {\n",n=0;ns;s++)o+=" ";o+=t[n]+": {\n"}for(var s=0;sr?r:t,e=null==e?r:r>e?r:e}return{min:null!=t?new Date(t):null,max:null!=e?new Date(e):null}},o.prototype.getEventProperties=function(t){var e=t.center?t.center.x:t.clientX,i=t.center?t.center.y:t.clientY,o=e-s.getAbsoluteLeft(this.dom.centerContainer),n=i-s.getAbsoluteTop(this.dom.centerContainer),r=this._toTime(o),a=c.customTimeFromTarget(t),h=s.getTarget(t),d=null;s.hasParent(h,this.timeAxis.dom.foreground)?d="axis":this.timeAxis2&&s.hasParent(h,this.timeAxis2.dom.foreground)?d="axis":s.hasParent(h,this.linegraph.yAxisLeft.dom.frame)?d="data-axis":s.hasParent(h,this.linegraph.yAxisRight.dom.frame)?d="data-axis":s.hasParent(h,this.linegraph.legendLeft.dom.frame)?d="legend":s.hasParent(h,this.linegraph.legendRight.dom.frame)?d="legend":null!=a?d="custom-time":s.hasParent(h,this.currentTime.bar)?d="current-time":s.hasParent(h,this.dom.center)&&(d="background");var l=[],u=this.linegraph.yAxisLeft,p=this.linegraph.yAxisRight;return u.hidden||l.push(u.screenToValue(n)),p.hidden||l.push(p.screenToValue(n)),{event:t,what:d,pageX:t.srcEvent?t.srcEvent.pageX:t.pageX,pageY:t.srcEvent?t.srcEvent.pageY:t.pageY,x:o,y:n,time:r,value:l}},o.prototype._createConfigurator=function(){return new f(this,this.dom.container,y)},t.exports=o},function(t,e,i){function o(t,e){this.id=n.randomUUID(),this.body=t,this.defaultOptions={yAxisOrientation:"left",defaultGroup:"default",sort:!0,sampling:!0,stack:!1,graphHeight:"400px",shaded:{enabled:!1,orientation:"bottom"},style:"line",barChart:{width:50,sideBySide:!1,align:"center"},interpolation:{enabled:!0,parametrization:"centripetal",alpha:.5},drawPoints:{enabled:!0,size:6,style:"square"},dataAxis:{showMinorLabels:!0,showMajorLabels:!0,icons:!1,width:"40px",visible:!0,alignZeros:!0,left:{range:{min:void 0,max:void 0},format:function(t){return t},title:{text:void 0,style:void 0}},right:{range:{min:void 0,max:void 0},format:function(t){return t},title:{text:void 0,style:void 0}}},legend:{enabled:!1,icons:!0,left:{visible:!0,position:"top-left"},right:{visible:!0,position:"top-right"}},groups:{visibility:{}}},this.options=n.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={},this.abortedGraphUpdate=!1,this.updateSVGheight=!1,this.updateSVGheightOnResize=!1;var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e,o){i._onAdd(e.items)},update:function(t,e,o){i._onUpdate(e.items)},remove:function(t,e,o){i._onRemove(e.items)}},this.groupListeners={add:function(t,e,o){i._onAddGroups(e.items)},update:function(t,e,o){i._onUpdateGroups(e.items)},remove:function(t,e,o){i._onRemoveGroups(e.items)}},this.items={},this.selection=[],this.lastStart=this.body.range.start,this.touchParams={},this.svgElements={},this.setOptions(e),this.groupsUsingDefaultStyles=[0],this.COUNTER=0,this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=n.option.asSize(-i.props.width),i.redraw.call(i,!0)}),this._create(),this.framework={svg:this.svg,svgElements:this.svgElements,options:this.options,groups:this.groups},this.body.emitter.emit("change")}var n=i(1),s=i(7),r=i(8),a=i(10),h=i(26),d=i(51),l=i(53),u=i(57),c=i(56),p=(i(54),"__ungrouped__");o.prototype=new h,o.prototype._create=function(){var t=document.createElement("div");t.className="vis-line-graph",this.dom.frame=t,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="relative",this.svg.style.height=(""+this.options.graphHeight).replace("px","")+"px",this.svg.style.display="block",t.appendChild(this.svg),this.options.dataAxis.orientation="left",this.yAxisLeft=new d(this.body,this.options.dataAxis,this.svg,this.options.groups),this.options.dataAxis.orientation="right",this.yAxisRight=new d(this.body,this.options.dataAxis,this.svg,this.options.groups),delete this.options.dataAxis.orientation,this.legendLeft=new u(this.body,this.options.legend,"left",this.options.groups),this.legendRight=new u(this.body,this.options.legend,"right",this.options.groups),this.show()},o.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","stack","height","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort","groups"];void 0===t.graphHeight&&void 0!==t.height&&void 0!==this.body.domProps.centerContainer.height?(this.updateSVGheight=!0,this.updateSVGheightOnResize=!0):void 0!==this.body.domProps.centerContainer.height&&void 0!==t.graphHeight&&parseInt((t.graphHeight+"").replace("px",""))0){var d=this.body.util.toGlobalTime(-this.body.domProps.root.width),l=this.body.util.toGlobalTime(2*this.body.domProps.root.width),u={};for(this._getRelevantData(a,u,d,l),this._applySampling(a,u),e=0;ep&&console.log("WARNING: there may be an infinite loop in the _updateGraph emitter cycle."),this.COUNTER=0,this.abortedGraphUpdate=!1,e=0;e0)for(r=0;ro){d.push(h);break}d.push(h)}}else for(a=0;ai&&h.x0)for(var o=0;o0){var s=1,r=n.length,a=this.body.util.toGlobalScreen(n[n.length-1].x)-this.body.util.toGlobalScreen(n[0].x),h=r/a;s=Math.min(Math.ceil(.2*r),Math.max(1,Math.round(h)));for(var d=[],l=0;r>l;l+=s)d.push(n[l]);e[t[o]]=d}}},o.prototype._getYRanges=function(t,e,i){var o,n,s,r,a=[],h=[];if(t.length>0){for(s=0;s0&&(n=this.groups[t[s]],r.stack===!0&&"bar"===r.style?"left"===r.yAxisOrientation?a=a.concat(n.getData(o)):h=h.concat(n.getData(o)):i[t[s]]=n.getYRange(o,t[s]));c.getStackedYRange(a,i,t,"__barStackLeft","left"),c.getStackedYRange(h,i,t,"__barStackRight","right")}},o.prototype._updateYAxis=function(t,e){var i,o,n=!1,s=!1,r=!1,a=1e9,h=1e9,d=-1e9,l=-1e9;if(t.length>0){for(var u=0;ui?i:a,d=o>d?o:d):(r=!0,h=h>i?i:h,l=o>l?o:l));1==s&&this.yAxisLeft.setRange(a,d),1==r&&this.yAxisRight.setRange(h,l)}n=this._toggleAxisVisiblity(s,this.yAxisLeft)||n,n=this._toggleAxisVisiblity(r,this.yAxisRight)||n,1==r&&1==s?(this.yAxisLeft.drawIcons=!0,this.yAxisRight.drawIcons=!0):(this.yAxisLeft.drawIcons=!1,this.yAxisRight.drawIcons=!1),this.yAxisRight.master=!s,0==this.yAxisRight.master?(1==r?this.yAxisLeft.lineOffset=this.yAxisRight.width:this.yAxisLeft.lineOffset=0,n=this.yAxisLeft.redraw()||n,this.yAxisRight.stepPixels=this.yAxisLeft.stepPixels,this.yAxisRight.zeroCrossing=this.yAxisLeft.zeroCrossing,this.yAxisRight.amountOfSteps=this.yAxisLeft.amountOfSteps,n=this.yAxisRight.redraw()||n):n=this.yAxisRight.redraw()||n;for(var p=["__barStackLeft","__barStackRight","__lineStackLeft","__lineStackRight"],u=0;ut?-1:1});for(var a=0;a0&&(t=0),this.range.start=t,this.range.end=e},o.prototype.redraw=function(){var t=!1,e=0;this.dom.lineContainer.style.top=this.body.domProps.scrollTop+"px";for(var i in this.groups)this.groups.hasOwnProperty(i)&&(this.groups[i].visible!==!0||void 0!==this.linegraphOptions.visibility[i]&&this.linegraphOptions.visibility[i]!==!0||e++);if(0===this.amountOfGroups||0===e)this.hide();else{this.show(),this.height=Number(this.linegraphSVG.style.height.replace("px","")),this.dom.lineContainer.style.height=this.height+"px",this.width=this.options.visible===!0?Number((""+this.options.width).replace("px","")):0;var o=this.props,n=this.dom.frame;n.className="vis-data-axis",this._calculateCharSize();var s=this.options.orientation,r=this.options.showMinorLabels,a=this.options.showMajorLabels;o.minorLabelHeight=r?o.minorCharHeight:0,o.majorLabelHeight=a?o.majorCharHeight:0,o.minorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.minorLinesOffset,o.minorLineHeight=1,o.majorLineWidth=this.body.dom.backgroundHorizontal.offsetWidth-this.lineOffset-this.width+2*this.options.majorLinesOffset,o.majorLineHeight=1,"left"===s?(n.style.top="0",n.style.left="0",n.style.bottom="",n.style.width=this.width+"px",n.style.height=this.height+"px",this.props.width=this.body.domProps.left.width,this.props.height=this.body.domProps.left.height):(n.style.top="",n.style.bottom="0",n.style.left="0",n.style.width=this.width+"px",n.style.height=this.height+"px",this.props.width=this.body.domProps.right.width,this.props.height=this.body.domProps.right.height),t=this._redrawLabels(),t=this._isResized()||t,this.options.icons===!0?this._redrawGroupIcons():this._cleanupIcons(),this._redrawTitle(s)}return t},o.prototype._redrawLabels=function(){var t=!1;s.prepareElements(this.DOMelements.lines),s.prepareElements(this.DOMelements.labels);var e,i=this.options.orientation;if(this.master===!1){var o,n,r,h;-1!==this.zeroCrossing&&this.options.alignZeros===!0?this.range.end>0?(o=this.range.end/this.zeroCrossing,n=this.range.end-this.amountOfSteps*o,r=this.range.end):(o=-1*this.range.start/(this.amountOfSteps-this.zeroCrossing),n=this.range.start,r=this.range.start+o*this.amountOfSteps):(n=this.range.start,r=this.range.end),h=this.stepPixels}else h=this.props.majorCharHeight,n=this.range.start,r=this.range.end;if(this.step=e=new a(n,r,h,this.dom.frame.offsetHeight,this.options[this.options.orientation].range,this.options[this.options.orientation].format,this.master===!1&&this.options.alignZeros),this.master===!0)this.stepPixels=this.dom.frame.offsetHeight/e.marginRange*e.step,this.amountOfSteps=Math.ceil(this.dom.frame.offsetHeight/this.stepPixels);else if(this.options.alignZeros===!0&&-1!==this.zeroCrossing){var d=(e.current-this.zeroCrossing*e.step)/e.step;this.step.shift(d)}this.valueAtBottom=e.marginEnd,this.maxLabelSize=0;for(var l=0,u=0,c=!1;u0&&u!==this.amountOfSteps&&((this.options.showMinorLabels&&c===!1||this.master===!1&&this.options.showMinorLabels===!0)&&this._redrawLabel(l-2,e.getCurrent(),i,"vis-y-axis vis-minor",this.props.minorCharHeight),c&&this.options.showMajorLabels&&this.master===!0||this.options.showMinorLabels===!1&&this.master===!1&&c===!0?(l>=0&&this._redrawLabel(l-2,e.getCurrent(),i,"vis-y-axis vis-major",this.props.majorCharHeight),this._redrawLine(l,i,"vis-grid vis-horizontal vis-major",this.options.majorLinesOffset,this.props.majorLineWidth)):this._redrawLine(l,i,"vis-grid vis-horizontal vis-minor",this.options.minorLinesOffset,this.props.minorLineWidth)),this.master===!0&&0===e.current&&(this.zeroCrossing=u),e.next(),u+=1;this.master===!0&&0===e.current&&(this.zeroCrossing=u),this.conversionFactor=this.stepPixels/e.step;var p=0;void 0!==this.options[i].title&&void 0!==this.options[i].title.text&&(p=this.props.titleCharHeight);var f=this.options.icons===!0?Math.max(this.options.iconWidth,p)+this.options.labelOffsetX+15:p+this.options.labelOffsetX+15;return this.maxLabelSize>this.width-f&&this.options.visible===!0?(this.width=this.maxLabelSize+f,this.options.width=this.width+"px",s.cleanupElements(this.DOMelements.lines),s.cleanupElements(this.DOMelements.labels),this.redraw(),t=!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+f),this.options.width=this.width+"px",s.cleanupElements(this.DOMelements.lines),s.cleanupElements(this.DOMelements.labels),this.redraw(),t=!0):(s.cleanupElements(this.DOMelements.lines),s.cleanupElements(this.DOMelements.labels),t=!1),t},o.prototype.convertValue=function(t){var e=this.valueAtBottom-t,i=e*this.conversionFactor;return i},o.prototype.screenToValue=function(t){return this.valueAtBottom-t/this.conversionFactor},o.prototype._redrawLabel=function(t,e,i,o,n){var r=s.getDOMElement("div",this.DOMelements.labels,this.dom.frame);r.className=o,r.innerHTML=e,"left"===i?(r.style.left="-"+this.options.labelOffsetX+"px",r.style.textAlign="right"):(r.style.right="-"+this.options.labelOffsetX+"px",r.style.textAlign="left"),r.style.top=t-.5*n+this.options.labelOffsetY+"px",e+="";var a=Math.max(this.props.majorCharWidth,this.props.minorCharWidth);this.maxLabelSizes&&(h=s);for(var d=!1,l=h;Math.abs(l)<=Math.abs(s);l++){a=Math.pow(10,l);for(var u=0;u=n){d=!0,r=u;break}}if(d===!0)break}this.stepIndex=r,this.scale=a,this.step=a*this.minorSteps[r]},i.prototype.setFirst=function(t){void 0===t&&(t={});var e=void 0===t.min?this._start-2*this.scale*this.minorSteps[this.stepIndex]:t.min,i=void 0===t.max?this._end+this.scale*this.minorSteps[this.stepIndex]:t.max;this.marginEnd=void 0===t.max?this.roundToMinor(i):t.max,this.marginStart=void 0===t.min?this.roundToMinor(e):t.min,this.alignZeros===!0&&(this.marginEnd-this.marginStart)%this.step!=0&&(this.marginEnd+=this.marginEnd%this.step),this.deadSpace=this.roundToMinor(i)-i+this.roundToMinor(e)-e,this.marginRange=this.marginEnd-this.marginStart,this.current=this.marginEnd},i.prototype.roundToMinor=function(t){var e=t-t%(this.scale*this.minorSteps[this.stepIndex]);return t%(this.scale*this.minorSteps[this.stepIndex])>.5*(this.scale*this.minorSteps[this.stepIndex])?e+this.scale*this.minorSteps[this.stepIndex]:e},i.prototype.hasNext=function(){return this.current>=this.marginStart},i.prototype.next=function(){var t=this.current;this.current-=this.step,this.current===t&&(this.current=this._end)},i.prototype.previous=function(){this.current+=this.step,this.marginEnd+=this.step,this.marginRange=this.marginEnd-this.marginStart},i.prototype.getCurrent=function(){var t=Math.abs(this.current)t)for(var e=0;-t>e;e++)this.previous();else if(t>0)for(var e=0;t>e;e++)this.next()},t.exports=i},function(t,e,i){function o(t,e,i,o){this.id=e;var s=["sampling","style","sort","yAxisOrientation","barChart","drawPoints","shaded","interpolation"];this.options=n.selectiveBridgeObject(s,i),this.usingDefaultStyle=void 0===t.className,this.groupsUsingDefaultStyles=o,this.zeroPosition=0,this.update(t),1==this.usingDefaultStyle&&(this.groupsUsingDefaultStyles[0]+=1),this.itemsData=[],this.visible=void 0===t.visible?!0:t.visible}var n=i(1),s=i(7),r=i(54),a=i(56),h=i(55);o.prototype.setItems=function(t){if(null!=t){this.itemsData=t,1==this.options.sort&&this.itemsData.sort(function(t,e){return t.x-e.x});for(var e=0;et[o].y?t[o].y:e,i=i0){t.sort(function(t,e){return t.x===e.x?t.groupIde[s].y?e[s].y:o,n=nt[r].accumulatedNegative?t[r].accumulatedNegative:o,o=o>t[r].accumulatedPositive?t[r].accumulatedPositive:o,n=n0&&(i=Math.min(i,Math.abs(e[o-1].x-e[o].x))),0===i&&(void 0===t[e[o].x]&&(t[e[o].x]={amount:0,resolved:0,accumulatedPositive:0,accumulatedNegative:0}),t[e[o].x].amount+=1)},o.prototype.draw=function(t,e,i){if(null!=t&&t.length>0){var r,a,h=Number(i.svg.style.height.replace("px",""));if(r=n.getSVGElement("path",i.svgElements,i.svg),r.setAttributeNS(null,"class",e.className),void 0!==e.style&&r.setAttributeNS(null,"style",e.style),a=1==e.options.interpolation.enabled?o._catmullRom(t,e):o._linear(t),1==e.options.shaded.enabled){var d,l=n.getSVGElement("path",i.svgElements,i.svg);d="top"==e.options.shaded.orientation?"M"+t[0].x+",0 "+a+"L"+t[t.length-1].x+",0":"M"+t[0].x+","+h+" "+a+"L"+t[t.length-1].x+","+h,l.setAttributeNS(null,"class",e.className+" vis-fill"),void 0!==e.options.shaded.style&&l.setAttributeNS(null,"style",e.options.shaded.style),l.setAttributeNS(null,"d",d)}r.setAttributeNS(null,"d","M"+a),1==e.options.drawPoints.enabled&&s.draw(t,e,i)}},o._catmullRomUniform=function(t){for(var e,i,o,n,s,r,a=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",h=1/6,d=t.length,l=0;d-1>l;l++)e=0==l?t[0]:t[l-1],i=t[l],o=t[l+1],n=d>l+2?t[l+2]:o,s={x:(-e.x+6*i.x+o.x)*h,y:(-e.y+6*i.y+o.y)*h},r={x:(i.x+6*o.x-n.x)*h,y:(i.y+6*o.y-n.y)*h},a+="C"+s.x+","+s.y+" "+r.x+","+r.y+" "+o.x+","+o.y+" ";return a},o._catmullRom=function(t,e){var i=e.options.interpolation.alpha;if(0==i||void 0===i)return this._catmullRomUniform(t);for(var o,n,s,r,a,h,d,l,u,c,p,f,m,v,g,y,b,w,_,x=Math.round(t[0].x)+","+Math.round(t[0].y)+" ",k=t.length,O=0;k-1>O;O++)o=0==O?t[0]:t[O-1],n=t[O],s=t[O+1],r=k>O+2?t[O+2]:s,d=Math.sqrt(Math.pow(o.x-n.x,2)+Math.pow(o.y-n.y,2)),l=Math.sqrt(Math.pow(n.x-s.x,2)+Math.pow(n.y-s.y,2)),u=Math.sqrt(Math.pow(s.x-r.x,2)+Math.pow(s.y-r.y,2)),v=Math.pow(u,i),y=Math.pow(u,2*i),g=Math.pow(l,i),b=Math.pow(l,2*i),_=Math.pow(d,i),w=Math.pow(d,2*i),c=2*w+3*_*g+b,p=2*y+3*v*g+b,f=3*_*(_+g),f>0&&(f=1/f),m=3*v*(v+g),m>0&&(m=1/m),a={x:(-b*o.x+c*n.x+w*s.x)*f,y:(-b*o.y+c*n.y+w*s.y)*f},h={x:(y*n.x+p*s.x-b*r.x)*m,y:(y*n.y+p*s.y-b*r.y)*m},0==a.x&&0==a.y&&(a=n),0==h.x&&0==h.y&&(h=s),x+="C"+a.x+","+a.y+" "+h.x+","+h.y+" "+s.x+","+s.y+" ";return x},o._linear=function(t){for(var e="",i=0;it[o].y?t[o].y:e,i=it[o].y?t[o].y:e,i=i0&&(r=Math.min(r,Math.abs(c[l-1].x-a))),h=o._getSafeDrawData(r,d,m);else{var g=l+(p[a].amount-p[a].resolved),y=l-(p[a].resolved+1);g0&&(r=Math.min(r,Math.abs(c[y].x-a))),h=o._getSafeDrawData(r,d,m),p[a].resolved+=1,d.options.stack===!0?c[l].y0&&(i=Math.min(i,Math.abs(e[o-1].x-e[o].x))),0===i&&(void 0===t[e[o].x]&&(t[e[o].x]={amount:0,resolved:0,accumulatedPositive:0,accumulatedNegative:0}),t[e[o].x].amount+=1)},o._getSafeDrawData=function(t,e,i){var o,n;return t0?(o=i>t?i:t,n=0,"left"===e.options.barChart.align?n-=.5*t:"right"===e.options.barChart.align&&(n+=.5*t)):(o=e.options.barChart.width,n=0,"left"===e.options.barChart.align?n-=.5*e.options.barChart.width:"right"===e.options.barChart.align&&(n+=.5*e.options.barChart.width)),{width:o,offset:n}},o.getStackedYRange=function(t,e,i,n,s){if(t.length>0){t.sort(function(t,e){return t.x===e.x?t.groupIde[s].y?e[s].y:o,n=nt[r].accumulatedNegative?t[r].accumulatedNegative:o,o=o>t[r].accumulatedPositive?t[r].accumulatedPositive:o,n=nt?-1:1});for(var i=0;i")}this.dom.textArea.innerHTML=s,this.dom.textArea.style.lineHeight=.75*this.options.iconSize+this.options.iconSpacing+"px"}},o.prototype.drawLegendIcons=function(){if(this.dom.frame.parentNode){var t=Object.keys(this.groups); +t.sort(function(t,e){return e>t?-1:1}),s.prepareElements(this.svgElements);var e=window.getComputedStyle(this.dom.frame).paddingTop,i=Number(e.replace("px","")),o=i,n=this.options.iconSize,r=.75*this.options.iconSize,a=i+.5*r+3;this.svg.style.width=n+5+i+"px";for(var h=0;h0){var i=this.groupIndex%this.groupsArray.length;this.groupIndex++,e={},e.color=this.groups[this.groupsArray[i]],this.groups[t]=e}else{var i=this.defaultIndex%this.defaultGroups.length;this.defaultIndex++,e={},e.color=this.defaultGroups[i],this.groups[t]=e}return e}},{key:"add",value:function(t,e){return this.groups[t]=e,this.groupsArray.push(t),e}}]),t}();e["default"]=r,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){for(var i=0;it.left&&this.shape.topt.top}},{key:"isBoundingBoxOverlappingWith",value:function(t){return this.shape.boundingBox.leftt.left&&this.shape.boundingBox.topt.top}}],[{key:"parseOptions",value:function(t,e){var i=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],o=arguments.length<=3||void 0===arguments[3]?{}:arguments[3],n=["color","font","fixed","shadow"];if(B.selectiveNotDeepExtend(n,t,e,i),B.mergeOptions(t,e,"shadow",i,o),void 0!==e.color&&null!==e.color){var s=B.parseColor(e.color);B.fillIfDefined(t.color,s)}else i===!0&&null===e.color&&(t.color=Object.create(o.color));void 0!==e.fixed&&null!==e.fixed&&("boolean"==typeof e.fixed?(t.fixed.x=e.fixed,t.fixed.y=e.fixed):(void 0!==e.fixed.x&&"boolean"==typeof e.fixed.x&&(t.fixed.x=e.fixed.x),void 0!==e.fixed.y&&"boolean"==typeof e.fixed.y&&(t.fixed.y=e.fixed.y))),void 0!==e.font&&null!==e.font?a["default"].parseOptions(t.font,e):i===!0&&null===e.font&&(t.font=Object.create(o.font)),void 0!==e.scaling&&B.mergeOptions(t.scaling,e.scaling,"label",i,o.scaling)}}]),t}();e["default"]=R,t.exports=e["default"]},function(t,e,i){function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){var i=[],o=!0,n=!1,s=void 0;try{for(var r,a=t[Symbol.iterator]();!(o=(r=a.next()).done)&&(i.push(r.value),!e||i.length!==e);o=!0);}catch(h){n=!0,s=h}finally{try{!o&&a["return"]&&a["return"]()}finally{if(n)throw s}}return i}return function(e,i){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,i);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function t(t,e){for(var i=0;i=this.nodeOptions.scaling.label.maxVisible&&(r=Number(this.nodeOptions.scaling.label.maxVisible)/this.body.view.scale);var h=this.size.yLine,d=this._getColor(a),l=n(d,2),u=l[0],c=l[1],p=this._setAlignment(t,i,h,s),f=n(p,2);i=f[0],h=f[1],t.font=(e&&this.nodeOptions.labelHighlightBold?"bold ":"")+r+"px "+this.fontOptions.face,t.fillStyle=u,t.textAlign="center",this.fontOptions.strokeWidth>0&&(t.lineWidth=this.fontOptions.strokeWidth,t.strokeStyle=c,t.lineJoin="round");for(var m=0;m0&&t.strokeText(this.lines[m],i,h),t.fillText(this.lines[m],i,h),h+=r}},{key:"_setAlignment",value:function(t,e,i,o){if("horizontal"!==this.fontOptions.align&&this.pointToSelf===!1){e=0,i=0;var n=2;"top"===this.fontOptions.align?(t.textBaseline="alphabetic",i-=2*n):"bottom"===this.fontOptions.align?(t.textBaseline="hanging",i+=2*n):t.textBaseline="middle"}else t.textBaseline=o;return[e,i]}},{key:"_getColor",value:function(t){var e=this.fontOptions.color||"#000000",i=this.fontOptions.strokeColor||"#ffffff";if(t<=this.nodeOptions.scaling.label.drawThreshold){var o=Math.max(0,Math.min(1,1-(this.nodeOptions.scaling.label.drawThreshold-t)));e=r.overrideOpacity(e,o),i=r.overrideOpacity(i,o)}return[e,i]}},{key:"getTextSize",value:function(t){var e=arguments.length<=1||void 0===arguments[1]?!1:arguments[1],i={width:this._processLabel(t,e),height:this.fontOptions.size*this.lineCount,lineCount:this.lineCount};return i}},{key:"calculateLabelSize",value:function(t,e){var i=arguments.length<=2||void 0===arguments[2]?0:arguments[2],o=arguments.length<=3||void 0===arguments[3]?0:arguments[3],n=arguments.length<=4||void 0===arguments[4]?"middle":arguments[4];this.labelDirty===!0&&(this.size.width=this._processLabel(t,e)),this.size.height=this.fontOptions.size*this.lineCount,this.size.left=i-.5*this.size.width,this.size.top=o-.5*this.size.height,this.size.yLine=o+.5*(1-this.lineCount)*this.fontOptions.size,"hanging"===n&&(this.size.top+=.5*this.fontOptions.size,this.size.top+=4,this.size.yLine+=4),this.labelDirty=!1}},{key:"_processLabel",value:function(t,e){var i=0,o=[""],n=0;if(void 0!==this.nodeOptions.label){o=String(this.nodeOptions.label).split("\n"),n=o.length,t.font=(e&&this.nodeOptions.labelHighlightBold?"bold ":"")+this.fontOptions.size+"px "+this.fontOptions.face,i=t.measureText(o[0]).width;for(var s=1;n>s;s++){var r=t.measureText(o[s]).width;i=r>i?r:i}}return this.lines=o,this.lineCount=n,i}}],[{key:"parseOptions",value:function(t,e){var i=arguments.length<=2||void 0===arguments[2]?!1:arguments[2];if("string"==typeof e.font){var o=e.font.split(" ");t.size=o[0].replace("px",""),t.face=o[1],t.color=o[2]}else"object"==typeof e.font&&r.fillIfDefined(t,e.font,i);t.size=Number(t.size)}}]),t}();e["default"]=a,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;ithis.imageObj.height?(o=this.imageObj.width/this.imageObj.height,e=2*this.options.size*o||this.imageObj.width,i=2*this.options.size||this.imageObj.height):(o=this.imageObj.width&&this.imageObj.height?this.imageObj.height/this.imageObj.width:1,e=2*this.options.size,i=2*this.options.size*o):(e=this.imageObj.width,i=this.imageObj.height),this.width=e,this.height=i,this.radius=.5*this.width}}},{key:"_drawRawCircle",value:function(t,e,i,o,n,s){var r=this.options.borderWidth,a=this.options.borderWidthSelected||2*this.options.borderWidth;t.strokeStyle=o?this.options.color.highlight.border:n?this.options.color.hover.border:this.options.color.border,t.lineWidth=o?a:r,t.lineWidth*=this.networkScaleInv,t.lineWidth=Math.min(this.width,t.lineWidth),t.fillStyle=o?this.options.color.highlight.background:n?this.options.color.hover.background:this.options.color.background,t.circle(e,i,s),this.enableShadow(t),t.fill(),this.disableShadow(t),t.save(),this.enableBorderDashes(t),t.stroke(),this.disableBorderDashes(t),t.restore()}},{key:"_drawImageAtPosition",value:function(t){0!=this.imageObj.width&&(t.globalAlpha=1,this.enableShadow(t),t.drawImage(this.imageObj,this.left,this.top,this.width,this.height),this.disableShadow(t))}},{key:"_drawImageLabel",value:function(t,e,i,o){var n,s=0;if(void 0!==this.height){s=.5*this.height;var r=this.labelModule.getTextSize(t);r.lineCount>=1&&(s+=r.height/2)}n=i+s,this.options.label&&(this.labelOffset=s),this.labelModule.draw(t,e,n,o,"hanging")}}]),e}(d["default"]);e["default"]=l,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;i0&&(this.boundingBox.left=Math.min(this.boundingBox.left,this.labelModule.size.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelModule.size.left+this.labelModule.size.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelModule.size.height+3))}}]),e}(d["default"]);e["default"]=l,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;i0){var i=5;this.boundingBox.left=Math.min(this.boundingBox.left,this.labelModule.size.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelModule.size.left+this.labelModule.size.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelModule.size.height+i)}}},{key:"_icon",value:function(t,e,i,o){var n=Number(this.options.icon.size);void 0!==this.options.icon.code?(t.font=(o?"bold ":"")+n+"px "+this.options.icon.face,t.fillStyle=this.options.icon.color||"black",t.textAlign="center",t.textBaseline="middle",this.enableShadow(t),t.fillText(this.options.icon.code,e,i),this.disableShadow(t)):console.error("When using the icon shape, you need to define the code in the icon options object. This can be done per node or globally.")}},{key:"distanceToBorder",value:function(t,e){return this._distanceToBorder(t,e)}}]),e}(d["default"]);e["default"]=l,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;i0&&(this.boundingBox.left=Math.min(this.boundingBox.left,this.labelModule.size.left),this.boundingBox.right=Math.max(this.boundingBox.right,this.labelModule.size.left+this.labelModule.size.width),this.boundingBox.bottom=Math.max(this.boundingBox.bottom,this.boundingBox.bottom+this.labelOffset))}},{key:"distanceToBorder",value:function(t,e){this.resize(t);var i=this.width/2,o=this.height/2,n=Math.sin(e)*i,s=Math.cos(e)*o;return i*o/Math.sqrt(n*n+s*s)}}]),e}(d["default"]);e["default"]=l,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;ii.shape.height?(r=i.x+.5*i.shape.width,a=i.y-h):(r=i.x+h,a=i.y-.5*i.shape.height),s=this._pointOnCircle(r,a,h,.125),this.labelModule.draw(t,s.x,s.y,n)}}}},{key:"isOverlappingWith",value:function(t){if(this.connected){var e=10,i=this.from.x,o=this.from.y,n=this.to.x,s=this.to.y,r=t.left,a=t.top,h=this.edgeType.getDistanceToEdge(i,o,n,s,r,a);return e>h}return!1}},{key:"_rotateForLabelAlignment",value:function(t){var e=this.from.y-this.to.y,i=this.from.x-this.to.x,o=Math.atan2(e,i);(-1>o&&0>i||o>0&&0>i)&&(o+=Math.PI),t.rotate(o)}},{key:"_pointOnCircle",value:function(t,e,i,o){var n=2*o*Math.PI;return{x:t+i*Math.cos(n),y:e-i*Math.sin(n)}}},{key:"select",value:function(){this.selected=!0}},{key:"unselect",value:function(){this.selected=!1}},{key:"cleanup",value:function(){return this.edgeType.cleanup()}}],[{key:"parseOptions",value:function(t,e){var i=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],o=arguments.length<=3||void 0===arguments[3]?{}:arguments[3],n=["id","from","hidden","hoverWidth","label","labelHighlightBold","length","line","opacity","physics","scaling","selectionWidth","selfReferenceSize","to","title","value","width"];if(v.selectiveDeepExtend(n,t,e,i),v.mergeOptions(t,e,"smooth",i,o),v.mergeOptions(t,e,"shadow",i,o),void 0!==e.dashes&&null!==e.dashes?t.dashes=e.dashes:i===!0&&null===e.dashes&&(t.dashes=Object.create(o.dashes)),void 0!==e.scaling&&null!==e.scaling?(void 0!==e.scaling.min&&(t.scaling.min=e.scaling.min),void 0!==e.scaling.max&&(t.scaling.max=e.scaling.max),v.mergeOptions(t.scaling,e.scaling,"label",i,o.scaling)):i===!0&&null===e.scaling&&(t.scaling=Object.create(o.scaling)),void 0!==e.arrows&&null!==e.arrows)if("string"==typeof e.arrows){var s=e.arrows.toLowerCase();-1!=s.indexOf("to")&&(t.arrows.to.enabled=!0),-1!=s.indexOf("middle")&&(t.arrows.middle.enabled=!0),-1!=s.indexOf("from")&&(t.arrows.from.enabled=!0)}else{if("object"!=typeof e.arrows)throw new Error("The arrow newOptions can only be an object or a string. Refer to the documentation. You used:"+JSON.stringify(e.arrows));v.mergeOptions(t.arrows,e.arrows,"to",i,o.arrows),v.mergeOptions(t.arrows,e.arrows,"middle",i,o.arrows),v.mergeOptions(t.arrows,e.arrows,"from",i,o.arrows)}else i===!0&&null===e.arrows&&(t.arrows=Object.create(o.arrows));if(void 0!==e.color&&null!==e.color)if(v.isString(e.color))t.color.color=e.color,t.color.highlight=e.color,t.color.hover=e.color,t.color.inherit=!1;else{var r=!1;void 0!==e.color.color&&(t.color.color=e.color.color,r=!0),void 0!==e.color.highlight&&(t.color.highlight=e.color.highlight,r=!0),void 0!==e.color.hover&&(t.color.hover=e.color.hover,r=!0),void 0!==e.color.inherit&&(t.color.inherit=e.color.inherit),void 0!==e.color.opacity&&(t.color.opacity=Math.min(1,Math.max(0,e.color.opacity))),void 0===e.color.inherit&&r===!0&&(t.color.inherit=!1)}else i===!0&&null===e.color&&(t.color=Object.create(o.color));void 0!==e.font&&null!==e.font?a["default"].parseOptions(t.font,e):i===!0&&null===e.font&&(t.font=Object.create(o.font))}}]),t}();e["default"]=g,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){var i=[],o=!0,n=!1,s=void 0;try{for(var r,a=t[Symbol.iterator]();!(o=(r=a.next()).done)&&(i.push(r.value),!e||i.length!==e);o=!0);}catch(h){n=!0,s=h}finally{try{!o&&a["return"]&&a["return"]()}finally{if(n)throw s}}return i}return function(e,i){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,i);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),a=function(){function t(t,e){for(var i=0;iMath.abs(e)||this.options.smooth.forceDirection===!0||"horizontal"===this.options.smooth.forceDirection)&&"vertical"!==this.options.smooth.forceDirection?(o=this.from.y,s=this.to.y,i=this.from.x-r*t,n=this.to.x+r*t):(o=this.from.y-r*e,s=this.to.y+r*e,i=this.from.x,n=this.to.x),[{x:i,y:o},{x:n,y:s}]}},{key:"_findBorderPosition",value:function(t,e){return this._findBorderPositionBezier(t,e)}},{key:"_getDistanceToEdge",value:function(t,e,i,o,n,s){var a=arguments.length<=6||void 0===arguments[6]?this._getViaCoordinates():arguments[6],h=r(a,2),d=h[0],l=h[1];return this._getDistanceToBezierEdge(t,e,i,o,n,s,d,l)}},{key:"getPoint",value:function(t){var e=arguments.length<=1||void 0===arguments[1]?this._getViaCoordinates():arguments[1],i=r(e,2),o=i[0],n=i[1],s=t,a=[];a[0]=Math.pow(1-s,3),a[1]=3*s*Math.pow(1-s,2),a[2]=3*Math.pow(s,2)*(1-s),a[3]=Math.pow(s,3);var h=a[0]*this.from.x+a[1]*o.x+a[2]*n.x+a[3]*this.to.x,d=a[0]*this.from.y+a[1]*o.y+a[2]*n.y+a[3]*this.to.y;return{x:h,y:d}}}]),e}(l["default"]);e["default"]=u,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;il;l++)u=.1*l,v[0]=Math.pow(1-u,3),v[1]=3*u*Math.pow(1-u,2),v[2]=3*Math.pow(u,2)*(1-u),v[3]=Math.pow(u,3),c=v[0]*t+v[1]*r.x+v[2]*a.x+v[3]*i,p=v[0]*e+v[1]*r.y+v[2]*a.y+v[3]*o,l>0&&(d=this._getDistanceToLine(f,m,c,p,n,s),h=h>d?d:h),f=c,m=p;return h}}]),e}(d["default"]);e["default"]=l,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;i=l&&h>d;){var m=.5*(l+u);if(i=this.getPoint(m,a),o=Math.atan2(p.y-i.y,p.x-i.x),n=p.distanceToBorder(e,o),s=Math.sqrt(Math.pow(i.x-p.x,2)+Math.pow(i.y-p.y,2)),r=n-s,Math.abs(r)r?f===!1?l=m:u=m:f===!1?u=m:l=m,d++}return i.t=m,i}},{key:"_getDistanceToBezierEdge",value:function(t,e,i,o,n,s,r){var a=1e9,h=void 0,d=void 0,l=void 0,u=void 0,c=void 0,p=t,f=e;for(d=1;10>d;d++)l=.1*d,u=Math.pow(1-l,2)*t+2*l*(1-l)*r.x+Math.pow(l,2)*i,c=Math.pow(1-l,2)*e+2*l*(1-l)*r.y+Math.pow(l,2)*o,d>0&&(h=this._getDistanceToLine(p,f,u,c,n,s),a=a>h?h:a),p=u,f=c;return a}}]),e}(d["default"]);e["default"]=l,t.exports=e["default"]},function(t,e,i){function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){var i=[],o=!0,n=!1,s=void 0;try{for(var r,a=t[Symbol.iterator]();!(o=(r=a.next()).done)&&(i.push(r.value),!e||i.length!==e);o=!0);}catch(h){n=!0,s=h}finally{try{!o&&a["return"]&&a["return"]()}finally{if(n)throw s}}return i}return function(e,i){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,i);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function t(t,e){for(var i=0;io.shape.height?(e=o.x+.5*o.shape.width,i=o.y-n):(e=o.x+n,i=o.y-.5*o.shape.height),[e,i,n]}},{key:"_pointOnCircle",value:function(t,e,i,o){var n=2*o*Math.PI;return{x:t+i*Math.cos(n),y:e-i*Math.sin(n)}}},{key:"_findBorderPositionCircle",value:function(t,e,i){for(var o=i.x,n=i.y,s=i.low,r=i.high,a=i.direction,h=10,d=0,l=this.options.selfReferenceSize,u=void 0,c=void 0,p=void 0,f=void 0,m=void 0,v=.05,g=.5*(s+r);r>=s&&h>d&&(g=.5*(s+r),u=this._pointOnCircle(o,n,l,g),c=Math.atan2(t.y-u.y,t.x-u.x),p=t.distanceToBorder(e,c),f=Math.sqrt(Math.pow(u.x-t.x,2)+Math.pow(u.y-t.y,2)),m=p-f,!(Math.abs(m)0?a>0?s=g:r=g:a>0?r=g:s=g,d++;return u.t=g,u}},{key:"getLineWidth",value:function(t,e){return t===!0?Math.max(this.selectionWidth,.3/this.body.view.scale):e===!0?Math.max(this.hoverWidth,.3/this.body.view.scale):Math.max(this.options.width,.3/this.body.view.scale)}},{key:"getColor",value:function(t,e,i){var o=this.options.color;if(o.inherit!==!1){if("both"===o.inherit&&this.from.id!==this.to.id){var n=t.createLinearGradient(this.from.x,this.from.y,this.to.x,this.to.y),s=void 0,a=void 0;return s=this.from.options.color.highlight.border,a=this.to.options.color.highlight.border,this.from.selected===!1&&this.to.selected===!1?(s=r.overrideOpacity(this.from.options.color.border,this.options.color.opacity),a=r.overrideOpacity(this.to.options.color.border,this.options.color.opacity)):this.from.selected===!0&&this.to.selected===!1?a=this.to.options.color.border:this.from.selected===!1&&this.to.selected===!0&&(s=this.from.options.color.border),n.addColorStop(0,s),n.addColorStop(1,a),n}this.colorDirty===!0&&("to"===o.inherit?(this.color.highlight=this.to.options.color.highlight.border,this.color.hover=this.to.options.color.hover.border,this.color.color=r.overrideOpacity(this.to.options.color.border,o.opacity)):(this.color.highlight=this.from.options.color.highlight.border,this.color.hover=this.from.options.color.hover.border,this.color.color=r.overrideOpacity(this.from.options.color.border,o.opacity)))}else this.colorDirty===!0&&(this.color.highlight=o.highlight,this.color.hover=o.hover,this.color.color=r.overrideOpacity(o.color,o.opacity));return this.colorDirty=!1,e===!0?this.color.highlight:i===!0?this.color.hover:this.color.color}},{key:"_circle",value:function(t,e,i,o){this.enableShadow(t),t.beginPath(),t.arc(e,i,o,0,2*Math.PI,!1),t.stroke(),this.disableShadow(t)}},{key:"getDistanceToEdge",value:function(t,e,i,o,s,r,a){var h=0;if(this.from!=this.to)h=this._getDistanceToEdge(t,e,i,o,s,r,a);else{var d=this._getCircleData(),l=n(d,3),u=l[0],c=l[1],p=l[2],f=u-s,m=c-r;h=Math.abs(Math.sqrt(f*f+m*m)-p)}return this.labelModule.size.lefts&&this.labelModule.size.topr?0:h}},{key:"_getDistanceToLine",value:function(t,e,i,o,n,s){var r=i-t,a=o-e,h=r*r+a*a,d=((n-t)*r+(s-e)*a)/h;d>1?d=1:0>d&&(d=0);var l=t+d*r,u=e+d*a,c=l-n,p=u-s;return Math.sqrt(c*c+p*p)}},{key:"drawArrowHead",value:function(t,e,i,o,s){t.strokeStyle=this.getColor(t,o,s),t.fillStyle=t.strokeStyle,t.lineWidth=this.getLineWidth(o,s);var r=void 0,a=void 0,h=void 0,d=void 0,l=void 0,u=void 0,c=void 0;if("from"===e?(d=this.from,l=this.to,u=.1,c=this.options.arrows.from.scaleFactor):"to"===e?(d=this.to,l=this.from,u=-.1,c=this.options.arrows.to.scaleFactor):(d=this.to,l=this.from,c=this.options.arrows.middle.scaleFactor),d!=l){if("middle"!==e)if(this.options.smooth.enabled===!0){h=this.findBorderPosition(d,t,{via:i});var p=this.getPoint(Math.max(0,Math.min(1,h.t+u)),i);r=Math.atan2(h.y-p.y,h.x-p.x)}else r=Math.atan2(d.y-l.y,d.x-l.x),h=this.findBorderPosition(d,t);else r=Math.atan2(d.y-l.y,d.x-l.x),h=this.getPoint(.6,i);a=(10+5*this.options.width)*c,t.arrow(h.x,h.y,r,a),this.enableShadow(t),t.fill(),this.disableShadow(t),t.stroke()}else{var f=void 0,m=void 0,v=this._getCircleData(t),g=n(v,3),y=g[0],b=g[1],w=g[2];"from"===e?(m=this.findBorderPosition(this.from,t,{x:y,y:b,low:.25,high:.6,direction:-1}),f=-2*m.t*Math.PI+1.5*Math.PI+.1*Math.PI):"to"===e?(m=this.findBorderPosition(this.from,t,{x:y,y:b,low:.6,high:1,direction:1}),f=-2*m.t*Math.PI+1.5*Math.PI-1.1*Math.PI):(m=this._pointOnCircle(y,b,w,.175),f=3.9269908169872414);var _=(10+5*this.options.width)*c;t.arrow(m.x,m.y,f,_),this.enableShadow(t),t.fill(),this.disableShadow(t),t.stroke()}}},{key:"enableShadow",value:function(t){this.options.shadow.enabled===!0&&(t.shadowColor="rgba(0,0,0,0.5)",t.shadowBlur=this.options.shadow.size,t.shadowOffsetX=this.options.shadow.x,t.shadowOffsetY=this.options.shadow.y)}},{key:"disableShadow",value:function(t){this.options.shadow.enabled===!0&&(t.shadowColor="rgba(0,0,0,0)",t.shadowBlur=0,t.shadowOffsetX=0,t.shadowOffsetY=0)}}]),t}();e["default"]=a,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;i=this.to.y?this.from.x<=this.to.x?(t=this.from.x+i*s,e=this.from.y-i*s):this.from.x>this.to.x&&(t=this.from.x-i*s,e=this.from.y-i*s):this.from.ythis.to.x&&(t=this.from.x-i*s,e=this.from.y+i*s)),"discrete"===o&&(t=i*s>n?this.from.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>=this.to.y?this.from.x<=this.to.x?(t=this.from.x+i*n,e=this.from.y-i*n):this.from.x>this.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n)),"discrete"===o&&(e=i*n>s?this.from.y:e));else if("straightCross"===o)Math.abs(this.from.x-this.to.x)<=Math.abs(this.from.y-this.to.y)?(t=this.from.x,e=this.from.yMath.abs(this.from.y-this.to.y)&&(t=this.from.x=this.to.y?this.from.x<=this.to.x?(t=this.from.x+i*s,e=this.from.y-i*s,t=this.to.xthis.to.x&&(t=this.from.x-i*s,e=this.from.y-i*s,t=this.to.x>t?this.to.x:t):this.from.ythis.to.x&&(t=this.from.x-i*s,e=this.from.y+i*s,t=this.to.x>t?this.to.x:t)):Math.abs(this.from.x-this.to.x)>Math.abs(this.from.y-this.to.y)&&(this.from.y>=this.to.y?this.from.x<=this.to.x?(t=this.from.x+i*n,e=this.from.y-i*n,e=this.to.y>e?this.to.y:e):this.from.x>this.to.x&&(t=this.from.x-i*n,e=this.from.y-i*n,e=this.to.y>e?this.to.y:e):this.from.ythis.to.x&&(t=this.from.x-i*n,e=this.from.y+i*n,e=this.to.y1||this.startedStabilization===!0)&&setTimeout(function(){t.body.emitter.emit("stabilized",{iterations:e}),t.startedStabilization=!1,t.stabilizationIterations=0},0)}},{key:"physicsTick",value:function(){if(this.startedStabilization===!1&&(this.body.emitter.emit("startStabilizing"),this.startedStabilization=!0),this.stabilized===!1){if(this.adaptiveTimestep===!0&&this.adaptiveTimestepEnabled===!0){var t=1.2;this.adaptiveCounter%this.adaptiveInterval===0?(this.timestep=2*this.timestep,this.calculateForces(),this.moveNodes(),this.revert(),this.timestep=.5*this.timestep,this.calculateForces(),this.moveNodes(),this.calculateForces(),this.moveNodes(),this._evaluateStepQuality()===!0?this.timestep=t*this.timestep:this.timestep/ts))return!1;return!0}},{key:"moveNodes",value:function(){for(var t=this.physicsBody.physicsNodeIndices,e=this.options.maxVelocity?this.options.maxVelocity:1e9,i=0,o=0,n=5,s=0;se?s[t].x>0?e:-e:s[t].x,i.x+=s[t].x*o}else n[t].x=0,s[t].x=0;if(i.options.fixed.y===!1){var h=this.modelOptions.damping*s[t].y,d=(n[t].y-h)/i.options.mass;s[t].y+=d*o,s[t].y=Math.abs(s[t].y)>e?s[t].y>0?e:-e:s[t].y,i.y+=s[t].y*o}else n[t].y=0,s[t].y=0;var l=Math.sqrt(Math.pow(s[t].x,2)+Math.pow(s[t].y,2));return l}},{key:"calculateForces",value:function(){this.gravitySolver.solve(),this.nodesSolver.solve(),this.edgesSolver.solve()}},{key:"_freezeNodes",value:function(){var t=this.body.nodes;for(var e in t)t.hasOwnProperty(e)&&t[e].x&&t[e].y&&(this.freezeCache[e]={x:t[e].options.fixed.x,y:t[e].options.fixed.y},t[e].options.fixed.x=!0,t[e].options.fixed.y=!0)}},{key:"_restoreFrozenNodes",value:function(){var t=this.body.nodes;for(var e in t)t.hasOwnProperty(e)&&void 0!==this.freezeCache[e]&&(t[e].options.fixed.x=this.freezeCache[e].x,t[e].options.fixed.y=this.freezeCache[e].y);this.freezeCache={}}},{key:"stabilize",value:function(){var t=this,e=arguments.length<=0||void 0===arguments[0]?this.options.stabilization.iterations:arguments[0];return"number"!=typeof e&&(console.log("The stabilize method needs a numeric amount of iterations. Switching to default: ",this.options.stabilization.iterations),e=this.options.stabilization.iterations),0===this.physicsBody.physicsNodeIndices.length?void(this.ready=!0):(this.adaptiveTimestep=this.options.adaptiveTimestep,this.body.emitter.emit("_resizeNodes"),this.stopSimulation(),this.stabilized=!1,this.body.emitter.emit("_blockRedraw"),this.targetIterations=e,this.options.stabilization.onlyDynamicEdges===!0&&this._freezeNodes(),this.stabilizationIterations=0,void setTimeout(function(){return t._stabilizationBatch()},0))}},{key:"_stabilizationBatch",value:function(){this.startedStabilization===!1&&(this.body.emitter.emit("startStabilizing"),this.startedStabilization=!0);for(var t=0;this.stabilized===!1&&t0){var t=void 0,e=this.body.nodes,i=this.physicsBody.physicsNodeIndices,o=i.length,n=this._formBarnesHutTree(e,i);this.barnesHutTree=n;for(var s=0;o>s;s++)t=e[i[s]],t.options.mass>0&&(this._getForceContribution(n.root.children.NW,t),this._getForceContribution(n.root.children.NE,t),this._getForceContribution(n.root.children.SW,t),this._getForceContribution(n.root.children.SE,t))}}},{key:"_getForceContribution",value:function(t,e){if(t.childrenCount>0){var i=void 0,o=void 0,n=void 0;i=t.centerOfMass.x-e.x,o=t.centerOfMass.y-e.y,n=Math.sqrt(i*i+o*o),n*t.calcSize>this.thetaInversed?this._calculateForces(n,i,o,e,t):4===t.childrenCount?(this._getForceContribution(t.children.NW,e),this._getForceContribution(t.children.NE,e),this._getForceContribution(t.children.SW,e),this._getForceContribution(t.children.SE,e)):t.children.data.id!=e.id&&this._calculateForces(n,i,o,e,t)}}},{key:"_calculateForces",value:function(t,e,i,o,n){0===t&&(t=.1,e=t),this.overlapAvoidanceFactor<1&&(t=Math.max(.1+this.overlapAvoidanceFactor*o.shape.radius,t-o.shape.radius));var s=this.options.gravitationalConstant*n.mass*o.options.mass/Math.pow(t,3),r=e*s,a=i*s;this.physicsBody.forces[o.id].x+=r,this.physicsBody.forces[o.id].y+=a}},{key:"_formBarnesHutTree",value:function(t,e){for(var i=void 0,o=e.length,n=t[e[0]].x,s=t[e[0]].y,r=t[e[0]].x,a=t[e[0]].y,h=1;o>h;h++){var d=t[e[h]].x,l=t[e[h]].y;t[e[h]].options.mass>0&&(n>d&&(n=d),d>r&&(r=d),s>l&&(s=l),l>a&&(a=l))}var u=Math.abs(r-n)-Math.abs(a-s);u>0?(s-=.5*u,a+=.5*u):(n+=.5*u,r-=.5*u);var c=1e-5,p=Math.max(c,Math.abs(r-n)),f=.5*p,m=.5*(n+r),v=.5*(s+a),g={root:{centerOfMass:{x:0,y:0},mass:0,range:{minX:m-f,maxX:m+f,minY:v-f,maxY:v+f},size:p,calcSize:1/p,children:{data:null},maxWidth:0,level:0,childrenCount:4}};this._splitBranch(g.root);for(var h=0;o>h;h++)i=t[e[h]],i.options.mass>0&&this._placeInTree(g.root,i);return g}},{key:"_updateBranchMass",value:function(t,e){var i=t.mass+e.options.mass,o=1/i;t.centerOfMass.x=t.centerOfMass.x*t.mass+e.x*e.options.mass,t.centerOfMass.x*=o,t.centerOfMass.y=t.centerOfMass.y*t.mass+e.y*e.options.mass,t.centerOfMass.y*=o,t.mass=i;var n=Math.max(Math.max(e.height,e.radius),e.width);t.maxWidth=t.maxWidthe.x?t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NW"):this._placeInRegion(t,e,"SW"):t.children.NW.range.maxY>e.y?this._placeInRegion(t,e,"NE"):this._placeInRegion(t,e,"SE")}},{key:"_placeInRegion",value:function(t,e,i){switch(t.children[i].childrenCount){case 0:t.children[i].children.data=e,t.children[i].childrenCount=1,this._updateBranchMass(t.children[i],e);break;case 1:t.children[i].children.data.x===e.x&&t.children[i].children.data.y===e.y?(e.x+=this.seededRandom(),e.y+=this.seededRandom()):(this._splitBranch(t.children[i]),this._placeInTree(t.children[i],e));break;case 4:this._placeInTree(t.children[i],e)}}},{key:"_splitBranch",value:function(t){var e=null;1===t.childrenCount&&(e=t.children.data,t.mass=0,t.centerOfMass.x=0,t.centerOfMass.y=0),t.childrenCount=4,t.children.data=null,this._insertRegion(t,"NW"),this._insertRegion(t,"NE"),this._insertRegion(t,"SW"),this._insertRegion(t,"SE"),null!=e&&this._placeInTree(t,e)}},{key:"_insertRegion",value:function(t,e){var i=void 0,o=void 0,n=void 0,s=void 0,r=.5*t.size;switch(e){case"NW":i=t.range.minX,o=t.range.minX+r,n=t.range.minY,s=t.range.minY+r;break;case"NE":i=t.range.minX+r,o=t.range.maxX,n=t.range.minY,s=t.range.minY+r;break;case"SW":i=t.range.minX,o=t.range.minX+r,n=t.range.minY+r,s=t.range.maxY;break;case"SE":i=t.range.minX+r,o=t.range.maxX,n=t.range.minY+r,s=t.range.maxY}t.children[e]={centerOfMass:{x:0,y:0},mass:0,range:{minX:i,maxX:o,minY:n,maxY:s},size:.5*t.size,calcSize:2*t.calcSize,children:{data:null},maxWidth:0,level:t.level+1,childrenCount:0}}},{key:"_debug",value:function(t,e){void 0!==this.barnesHutTree&&(t.lineWidth=1,this._drawBranch(this.barnesHutTree.root,t,e))}},{key:"_drawBranch",value:function(t,e,i){void 0===i&&(i="#FF0000"),4===t.childrenCount&&(this._drawBranch(t.children.NW,e),this._drawBranch(t.children.NE,e),this._drawBranch(t.children.SE,e),this._drawBranch(t.children.SW,e)),e.strokeStyle=i,e.beginPath(),e.moveTo(t.range.minX,t.range.minY),e.lineTo(t.range.maxX,t.range.minY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.minY),e.lineTo(t.range.maxX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.maxX,t.range.maxY),e.lineTo(t.range.minX,t.range.maxY),e.stroke(),e.beginPath(),e.moveTo(t.range.minX,t.range.maxY),e.lineTo(t.range.minX,t.range.minY),e.stroke()}}]),t}();e["default"]=n,t.exports=e["default"]},function(t,e){function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;ii&&(s=.5*u>i?1:c*i+p,s/=i,o=t*s,n=e*s,l[r.id].x-=o,l[r.id].y-=n,l[a.id].x+=o,l[a.id].y+=n)}}}]),t}();e["default"]=n,t.exports=e["default"]},function(t,e){function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;ii?-Math.pow(f*i,2)+Math.pow(f*p,2):0,0===i?i=.01:s/=i,o=t*s,n=e*s,c[r.id].x-=o,c[r.id].y-=n,c[a.id].x+=o,c[a.id].y+=n}}}]),t}();e["default"]=n,t.exports=e["default"]},function(t,e){function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;i0){var s=n.edges.length+1,r=this.options.centralGravity*s*n.options.mass;o[n.id].x=e*r,o[n.id].y=i*r}}}]),e}(d["default"]);e["default"]=l,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){for(var i=0;i=t&&i.push(n.id)}for(var o=0;o0&&Object.keys(c).length>0&&f===!0&&o.push({nodes:u,edges:c})}}}for(var l=0;lo?r.x:o,n=r.ys?r.y:s;return{x:.5*(i+o),y:.5*(n+s)}}},{key:"openCluster",value:function(t,e){var i=arguments.length<=2||void 0===arguments[2]?!0:arguments[2];if(void 0===t)throw new Error("No clusterNodeId supplied to openCluster.");if(void 0===this.body.nodes[t])throw new Error("The clusterNodeId supplied to openCluster does not exist.");if(void 0===this.body.nodes[t].containedNodes)return void console.log("The node:"+t+" is not a cluster.");var o=this.body.nodes[t],n=o.containedNodes,s=o.containedEdges;if(void 0!==e&&void 0!==e.releaseFunction&&"function"==typeof e.releaseFunction){var r={},a={x:o.x,y:o.y};for(var d in n)if(n.hasOwnProperty(d)){var l=this.body.nodes[d];r[d]={x:l.x,y:l.y}}var u=e.releaseFunction(a,r);for(var d in n)if(n.hasOwnProperty(d)){var l=this.body.nodes[d];void 0!==u[d]&&(l.x=void 0===u[d].x?o.x:u[d].x,l.y=void 0===u[d].y?o.y:u[d].y)}}else for(var d in n)if(n.hasOwnProperty(d)){var l=this.body.nodes[d];l=n[d],l.x=o.x,l.y=o.y}for(var d in n)if(n.hasOwnProperty(d)){var l=this.body.nodes[d];l.vx=o.vx,l.vy=o.vy,l.setOptions({hidden:!1,physics:!0}),delete this.clusteredNodes[d]}for(var c=[],p=0;po;)e.push(this.clusteredNodes[t].node),t=this.clusteredNodes[t].clusterId,o++;return e.push(this.body.nodes[t]),e}},{key:"_getConnectedId",value:function(t,e){return t.toId!=e?t.toId:t.fromId!=e?t.fromId:t.fromId}},{key:"_getHubSize",value:function(){for(var t=0,e=0,i=0,o=0,n=0;no&&(o=s.edges.length),t+=s.edges.length,e+=Math.pow(s.edges.length,2),i+=1}t/=i,e/=i;var r=e-Math.pow(t,2),a=Math.sqrt(r),h=Math.floor(t+2*a);return h>o&&(h=o),h}}]),t}();e["default"]=d,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var r=function(t,e,i){for(var o=!0;o;){var n=t,s=e,r=i;a=d=h=void 0,o=!1,null===n&&(n=Function.prototype);var a=Object.getOwnPropertyDescriptor(n,s);if(void 0!==a){if("value"in a)return a.value;var h=a.get;return void 0===h?void 0:h.call(r)}var d=Object.getPrototypeOf(n);if(null===d)return void 0;t=d,e=s,i=r,o=!0}},a=i(62),h=o(a),d=function(t){function e(t,i,o,s,a){n(this,e),r(Object.getPrototypeOf(e.prototype),"constructor",this).call(this,t,i,o,s,a),this.isCluster=!0,this.containedNodes={},this.containedEdges={}}return s(e,t),e}(h["default"]);e["default"]=d,t.exports=e["default"]},function(t,e,i){function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){for(var i=0;i0,t.renderTimer=void 0}),this.body.emitter.on("destroy",function(){t.renderRequests=0,t.allowRedraw=!1,t.renderingActive=!1,t.requiresTimeout===!0?clearTimeout(t.renderTimer):cancelAnimationFrame(t.renderTimer),t.body.emitter.off()})}},{key:"setOptions",value:function(t){if(void 0!==t){var e=["hideEdgesOnDrag","hideNodesOnDrag"];s.selectiveDeepExtend(e,this.options,t)}}},{key:"_startRendering",value:function(){this.renderingActive===!0&&void 0===this.renderTimer&&(this.requiresTimeout===!0?this.renderTimer=window.setTimeout(this._renderStep.bind(this),this.simulationInterval):this.renderTimer=window.requestAnimationFrame(this._renderStep.bind(this)))}},{key:"_renderStep",value:function(){this.renderingActive===!0&&(this.renderTimer=void 0,this.requiresTimeout===!0&&this._startRendering(),this._redraw(),this.requiresTimeout===!1&&this._startRendering())}},{key:"redraw",value:function(){this.body.emitter.emit("setSize"),this._redraw()}},{key:"_requestRedraw",value:function(){var t=this;this.redrawRequested!==!0&&this.renderingActive===!1&&this.allowRedraw===!0&&(this.redrawRequested=!0,this.requiresTimeout===!0?window.setTimeout(function(){t._redraw(!1)},0):window.requestAnimationFrame(function(){t._redraw(!1)}))}},{key:"_redraw",value:function(){var t=arguments.length<=0||void 0===arguments[0]?!1:arguments[0];if(this.allowRedraw===!0){this.body.emitter.emit("initRedraw"),this.redrawRequested=!1;var e=this.canvas.frame.canvas.getContext("2d");(0===this.canvas.frame.canvas.width||0===this.canvas.frame.canvas.height)&&this.canvas.setSize(),this.pixelRatio=(window.devicePixelRatio||1)/(e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1),e.setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0);var i=this.canvas.frame.canvas.clientWidth,o=this.canvas.frame.canvas.clientHeight;if(e.clearRect(0,0,i,o),0===this.canvas.frame.clientWidth)return;e.save(),e.translate(this.body.view.translation.x,this.body.view.translation.y),e.scale(this.body.view.scale,this.body.view.scale),e.beginPath(),this.body.emitter.emit("beforeDrawing",e),e.closePath(),t===!1&&(this.dragging===!1||this.dragging===!0&&this.options.hideEdgesOnDrag===!1)&&this._drawEdges(e),(this.dragging===!1||this.dragging===!0&&this.options.hideNodesOnDrag===!1)&&this._drawNodes(e,t),this.controlNodesActive===!0&&this._drawControlNodes(e),e.beginPath(),this.body.emitter.emit("afterDrawing",e),e.closePath(),e.restore(),t===!0&&e.clearRect(0,0,i,o)}}},{key:"_resizeNodes",value:function(){var t=this.canvas.frame.canvas.getContext("2d");void 0===this.pixelRatio&&(this.pixelRatio=(window.devicePixelRatio||1)/(t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1)),t.setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0),t.save(),t.translate(this.body.view.translation.x,this.body.view.translation.y),t.scale(this.body.view.scale,this.body.view.scale);var e=this.body.nodes,i=void 0;for(var o in e)e.hasOwnProperty(o)&&(i=e[o],i.resize(t),i.updateBoundingBox(t,i.selected));t.restore()}},{key:"_drawNodes",value:function(t){for(var e=arguments.length<=1||void 0===arguments[1]?!1:arguments[1],i=this.body.nodes,o=this.body.nodeIndices,n=void 0,s=[],r=20,a=this.canvas.DOMtoCanvas({x:-r,y:-r}),h=this.canvas.DOMtoCanvas({x:this.canvas.frame.canvas.clientWidth+r,y:this.canvas.frame.canvas.clientHeight+r}),d={top:a.y,left:a.x,bottom:h.y,right:h.x},l=0;l0){this.body.view.scale=this.cameraState.scale*(this.frame.canvas.width/this.pixelRatio/this.cameraState.previousWidth);var t=this.DOMtoCanvas({x:.5*this.frame.canvas.clientWidth,y:.5*this.frame.canvas.clientHeight}),e={x:t.x-this.cameraState.position.x,y:t.y-this.cameraState.position.y};this.body.view.translation.x+=e.x*this.body.view.scale,this.body.view.translation.y+=e.y*this.body.view.scale}}},{key:"_prepareValue",value:function(t){if("number"==typeof t)return t+"px";if("string"==typeof t){if(-1!==t.indexOf("%")||-1!==t.indexOf("px"))return t;if(-1===t.indexOf("%"))return t+"px"}throw new Error("Could not use the value supplied for width or height:"+t)}},{key:"_create",value:function(){for(;this.body.container.hasChildNodes();)this.body.container.removeChild(this.body.container.firstChild);if(this.frame=document.createElement("div"),this.frame.className="vis-network",this.frame.style.position="relative",this.frame.style.overflow="hidden",this.frame.tabIndex=900,this.frame.canvas=document.createElement("canvas"),this.frame.canvas.style.position="relative",this.frame.appendChild(this.frame.canvas),this.frame.canvas.getContext){var t=this.frame.canvas.getContext("2d");this.pixelRatio=(window.devicePixelRatio||1)/(t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1),this.frame.canvas.getContext("2d").setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0)}else{var e=document.createElement("DIV");e.style.color="red",e.style.fontWeight="bold",e.style.padding="10px",e.innerHTML="Error: your browser does not support HTML canvas",this.frame.canvas.appendChild(e)}this.body.container.appendChild(this.frame),this.body.view.scale=1,this.body.view.translation={x:.5*this.frame.canvas.clientWidth,y:.5*this.frame.canvas.clientHeight},this._bindHammer()}},{key:"_bindHammer",value:function(){var t=this;void 0!==this.hammer&&this.hammer.destroy(),this.drag={},this.pinch={},this.hammer=new s(this.frame.canvas),this.hammer.get("pinch").set({enable:!0}),this.hammer.get("pan").set({threshold:5,direction:30}),r.onTouch(this.hammer,function(e){t.body.eventListeners.onTouch(e)}),this.hammer.on("tap",function(e){t.body.eventListeners.onTap(e)}),this.hammer.on("doubletap",function(e){t.body.eventListeners.onDoubleTap(e)}),this.hammer.on("press",function(e){t.body.eventListeners.onHold(e)}),this.hammer.on("panstart",function(e){t.body.eventListeners.onDragStart(e)}),this.hammer.on("panmove",function(e){t.body.eventListeners.onDrag(e)}),this.hammer.on("panend",function(e){t.body.eventListeners.onDragEnd(e)}),this.hammer.on("pinch",function(e){t.body.eventListeners.onPinch(e)}),this.frame.canvas.addEventListener("mousewheel",function(e){t.body.eventListeners.onMouseWheel(e)}),this.frame.canvas.addEventListener("DOMMouseScroll",function(e){t.body.eventListeners.onMouseWheel(e)}),this.frame.canvas.addEventListener("mousemove",function(e){t.body.eventListeners.onMouseMove(e)}),this.frame.canvas.addEventListener("contextmenu",function(e){t.body.eventListeners.onContext(e)}),this.hammerFrame=new s(this.frame),r.onRelease(this.hammerFrame,function(e){t.body.eventListeners.onRelease(e)})}},{key:"setSize",value:function(){var t=arguments.length<=0||void 0===arguments[0]?this.options.width:arguments[0],e=arguments.length<=1||void 0===arguments[1]?this.options.height:arguments[1];t=this._prepareValue(t),e=this._prepareValue(e);var i=!1,o=this.frame.canvas.width,n=this.frame.canvas.height,s=this.frame.canvas.getContext("2d"),r=this.pixelRatio;return this.pixelRatio=(window.devicePixelRatio||1)/(s.webkitBackingStorePixelRatio||s.mozBackingStorePixelRatio||s.msBackingStorePixelRatio||s.oBackingStorePixelRatio||s.backingStorePixelRatio||1),t!=this.options.width||e!=this.options.height||this.frame.style.width!=t||this.frame.style.height!=e?(this._getCameraState(r),this.frame.style.width=t,this.frame.style.height=e,this.frame.canvas.style.width="100%",this.frame.canvas.style.height="100%",this.frame.canvas.width=Math.round(this.frame.canvas.clientWidth*this.pixelRatio),this.frame.canvas.height=Math.round(this.frame.canvas.clientHeight*this.pixelRatio),this.options.width=t,this.options.height=e,i=!0):((this.frame.canvas.width!=Math.round(this.frame.canvas.clientWidth*this.pixelRatio)||this.frame.canvas.height!=Math.round(this.frame.canvas.clientHeight*this.pixelRatio))&&this._getCameraState(r),this.frame.canvas.width!=Math.round(this.frame.canvas.clientWidth*this.pixelRatio)&&(this.frame.canvas.width=Math.round(this.frame.canvas.clientWidth*this.pixelRatio),i=!0),this.frame.canvas.height!=Math.round(this.frame.canvas.clientHeight*this.pixelRatio)&&(this.frame.canvas.height=Math.round(this.frame.canvas.clientHeight*this.pixelRatio),i=!0)),i===!0&&(this.body.emitter.emit("resize",{width:Math.round(this.frame.canvas.width/this.pixelRatio),height:Math.round(this.frame.canvas.height/this.pixelRatio),oldWidth:Math.round(o/this.pixelRatio),oldHeight:Math.round(n/this.pixelRatio)}),this._setCameraState()),i}},{key:"_XconvertDOMtoCanvas",value:function(t){return(t-this.body.view.translation.x)/this.body.view.scale}},{key:"_XconvertCanvasToDOM",value:function(t){return t*this.body.view.scale+this.body.view.translation.x}},{key:"_YconvertDOMtoCanvas",value:function(t){return(t-this.body.view.translation.y)/this.body.view.scale}},{key:"_YconvertCanvasToDOM",value:function(t){return t*this.body.view.scale+this.body.view.translation.y}},{key:"canvasToDOM",value:function(t){return{x:this._XconvertCanvasToDOM(t.x),y:this._YconvertCanvasToDOM(t.y)}}},{key:"DOMtoCanvas",value:function(t){return{x:this._XconvertDOMtoCanvas(t.x),y:this._YconvertDOMtoCanvas(t.y)}}}]),t}();e["default"]=h,t.exports=e["default"]},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){for(var i=0;i.5*this.body.nodeIndices.length)return void this.fit(t,!1);i=a["default"]._getRange(this.body.nodes,t.nodes);var h=this.body.nodeIndices.length;o=12.662/(h+7.4147)+.0964822;var d=Math.min(this.canvas.frame.canvas.clientWidth/600,this.canvas.frame.canvas.clientHeight/600);o*=d}else{this.body.emitter.emit("_resizeNodes"),i=a["default"]._getRange(this.body.nodes,t.nodes);var l=1.1*Math.abs(i.maxX-i.minX),u=1.1*Math.abs(i.maxY-i.minY),c=this.canvas.frame.canvas.clientWidth/l,p=this.canvas.frame.canvas.clientHeight/u;o=p>=c?c:p}o>1?o=1:0===o&&(o=1);var f=a["default"]._findCenter(i),m={position:f,scale:o,animation:t.animation};this.moveTo(m)}},{key:"focus",value:function(t){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1];if(void 0!==this.body.nodes[t]){var i={x:this.body.nodes[t].x,y:this.body.nodes[t].y};e.position=i,e.lockedOnNode=t,this.moveTo(e)}else console.log("Node: "+t+" cannot be found.")}},{key:"moveTo",value:function(t){return void 0===t?void(t={}):(void 0===t.offset&&(t.offset={x:0,y:0}),void 0===t.offset.x&&(t.offset.x=0),void 0===t.offset.y&&(t.offset.y=0),void 0===t.scale&&(t.scale=this.body.view.scale),void 0===t.position&&(t.position=this.getViewPosition()),void 0===t.animation&&(t.animation={duration:0}),t.animation===!1&&(t.animation={duration:0}),t.animation===!0&&(t.animation={}),void 0===t.animation.duration&&(t.animation.duration=1e3),void 0===t.animation.easingFunction&&(t.animation.easingFunction="easeInOutQuad"),void this.animateView(t))}},{key:"animateView",value:function(t){if(void 0!==t){this.animationEasingFunction=t.animation.easingFunction,this.releaseNode(),t.locked===!0&&(this.lockedOnNodeId=t.lockedOnNode,this.lockedOnNodeOffset=t.offset),0!=this.easingTime&&this._transitionRedraw(!0),this.sourceScale=this.body.view.scale,this.sourceTranslation=this.body.view.translation,this.targetScale=t.scale,this.body.view.scale=this.targetScale;var e=this.canvas.DOMtoCanvas({x:.5*this.canvas.frame.canvas.clientWidth,y:.5*this.canvas.frame.canvas.clientHeight}),i={x:e.x-t.position.x,y:e.y-t.position.y};this.targetTranslation={x:this.sourceTranslation.x+i.x*this.targetScale+t.offset.x,y:this.sourceTranslation.y+i.y*this.targetScale+t.offset.y},0===t.animation.duration?void 0!=this.lockedOnNodeId?(this.viewFunction=this._lockedRedraw.bind(this),this.body.emitter.on("initRedraw",this.viewFunction)):(this.body.view.scale=this.targetScale,this.body.view.translation=this.targetTranslation,this.body.emitter.emit("_requestRedraw")):(this.animationSpeed=1/(60*t.animation.duration*.001)||1/60,this.animationEasingFunction=t.animation.easingFunction,this.viewFunction=this._transitionRedraw.bind(this),this.body.emitter.on("initRedraw",this.viewFunction),this.body.emitter.emit("_startRendering"))}}},{key:"_lockedRedraw",value:function(){var t={x:this.body.nodes[this.lockedOnNodeId].x,y:this.body.nodes[this.lockedOnNodeId].y},e=this.canvas.DOMtoCanvas({x:.5*this.canvas.frame.canvas.clientWidth,y:.5*this.canvas.frame.canvas.clientHeight}),i={x:e.x-t.x,y:e.y-t.y},o=this.body.view.translation,n={x:o.x+i.x*this.body.view.scale+this.lockedOnNodeOffset.x,y:o.y+i.y*this.body.view.scale+this.lockedOnNodeOffset.y};this.body.view.translation=n}},{key:"releaseNode",value:function(){void 0!==this.lockedOnNodeId&&void 0!==this.viewFunction&&(this.body.emitter.off("initRedraw",this.viewFunction),this.lockedOnNodeId=void 0,this.lockedOnNodeOffset=void 0)}},{key:"_transitionRedraw",value:function(){var t=arguments.length<=0||void 0===arguments[0]?!1:arguments[0];this.easingTime+=this.animationSpeed,this.easingTime=t===!0?1:this.easingTime;var e=h.easingFunctions[this.animationEasingFunction](this.easingTime);this.body.view.scale=this.sourceScale+(this.targetScale-this.sourceScale)*e,this.body.view.translation={x:this.sourceTranslation.x+(this.targetTranslation.x-this.sourceTranslation.x)*e,y:this.sourceTranslation.y+(this.targetTranslation.y-this.sourceTranslation.y)*e},this.easingTime>=1&&(this.body.emitter.off("initRedraw",this.viewFunction),this.easingTime=0,void 0!=this.lockedOnNodeId&&(this.viewFunction=this._lockedRedraw.bind(this),this.body.emitter.on("initRedraw",this.viewFunction)),this.body.emitter.emit("animationFinished"))}},{key:"getScale",value:function(){return this.body.view.scale}},{key:"getViewPosition",value:function(){return this.canvas.DOMtoCanvas({x:.5*this.canvas.frame.canvas.clientWidth,y:.5*this.canvas.frame.canvas.clientHeight})}}]),t}();e["default"]=d,t.exports=e["default"]},function(t,e){function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;i0)for(var a=0;ae.shape.boundingBox.left&&(s=e.shape.boundingBox.left),re.shape.boundingBox.top&&(o=e.shape.boundingBox.top),n0)for(var a=0;ae.x&&(s=e.x),re.y&&(o=e.y),n50&&(this.drag.pointer=this.getPointer(t.center),this.drag.pinched=!1,this.pinch.scale=this.body.view.scale,this.touchTime=(new Date).valueOf())}},{key:"onTap",value:function(t){var e=this.getPointer(t.center),i=this.selectionHandler.options.multiselect&&(t.changedPointers[0].ctrlKey||t.changedPointers[0].metaKey);this.checkSelectionChanges(e,t,i),this.selectionHandler._generateClickEvent("click",t,e)}},{key:"onDoubleTap",value:function(t){var e=this.getPointer(t.center);this.selectionHandler._generateClickEvent("doubleClick",t,e)}},{key:"onHold",value:function(t){var e=this.getPointer(t.center),i=this.selectionHandler.options.multiselect;this.checkSelectionChanges(e,t,i),this.selectionHandler._generateClickEvent("click",t,e),this.selectionHandler._generateClickEvent("hold",t,e)}},{key:"onRelease",value:function(t){if((new Date).valueOf()-this.touchTime>10){var e=this.getPointer(t.center);this.selectionHandler._generateClickEvent("release",t,e),this.touchTime=(new Date).valueOf()}}},{key:"onContext",value:function(t){var e=this.getPointer({x:t.clientX,y:t.clientY});this.selectionHandler._generateClickEvent("oncontext",t,e)}},{key:"checkSelectionChanges",value:function(t,e){var i=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],o=this.selectionHandler._getSelectedEdgeCount(),n=this.selectionHandler._getSelectedNodeCount(),s=this.selectionHandler.getSelection(),r=void 0;r=i===!0?this.selectionHandler.selectAdditionalOnPoint(t):this.selectionHandler.selectOnPoint(t);var a=this.selectionHandler._getSelectedEdgeCount(),h=this.selectionHandler._getSelectedNodeCount(),d=this.selectionHandler.getSelection(),l=this._determineIfDifferent(s,d),u=l.nodesChanges,c=l.edgesChanges,p=!1;h-n>0?(this.selectionHandler._generateClickEvent("selectNode",e,t),r=!0,p=!0):0>h-n?(this.selectionHandler._generateClickEvent("deselectNode",e,t,s),r=!0):h===n&&u===!0&&(this.selectionHandler._generateClickEvent("deselectNode",e,t,s),this.selectionHandler._generateClickEvent("selectNode",e,t),p=!0,r=!0),a-o>0&&p===!1?(this.selectionHandler._generateClickEvent("selectEdge",e,t),r=!0):0>a-o?(this.selectionHandler._generateClickEvent("deselectEdge",e,t,s),r=!0):a===o&&c===!0&&(this.selectionHandler._generateClickEvent("deselectEdge",e,t,s),this.selectionHandler._generateClickEvent("selectEdge",e,t),r=!0),r===!0&&this.selectionHandler._generateClickEvent("select",e,t)}},{key:"_determineIfDifferent",value:function(t,e){for(var i=!1,o=!1,n=0;nt&&(t=1e-5),t>10&&(t=10);var o=void 0;void 0!==this.drag&&this.drag.dragging===!0&&(o=this.canvas.DOMtoCanvas(this.drag.pointer));var n=this.body.view.translation,s=t/i,r=(1-s)*e.x+n.x*s,a=(1-s)*e.y+n.y*s;if(this.body.view.scale=t,this.body.view.translation={x:r,y:a},void 0!=o){var h=this.canvas.canvasToDOM(o);this.drag.pointer.x=h.x,this.drag.pointer.y=h.y}this.body.emitter.emit("_requestRedraw"),t>i?this.body.emitter.emit("zoom",{direction:"+",scale:this.body.view.scale}):this.body.emitter.emit("zoom",{direction:"-",scale:this.body.view.scale})}}},{key:"onMouseWheel",value:function(t){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),0!==e){var i=this.body.view.scale,o=e/10;0>e&&(o/=1-o),i*=1+o;var n=this.getPointer({x:t.clientX,y:t.clientY});this.zoom(i,n)}t.preventDefault()}},{key:"onMouseMove",value:function(t){var e=this,i=this.getPointer({x:t.clientX,y:t.clientY}),o=!1;if(void 0!==this.popup&&(this.popup.hidden===!1&&this._checkHidePopup(i),this.popup.hidden===!1&&(o=!0,this.popup.setPosition(i.x+3,i.y-5),this.popup.show())),this.options.keyboard.bindToWindow===!1&&this.options.keyboard.enabled===!0&&this.canvas.frame.focus(),o===!1&&(void 0!==this.popupTimer&&(clearInterval(this.popupTimer),this.popupTimer=void 0),this.drag.dragging||(this.popupTimer=setTimeout(function(){return e._checkShowPopup(i)},this.options.tooltipDelay))),this.options.hover===!0){var n=this.selectionHandler.getNodeAt(i);void 0===n&&(n=this.selectionHandler.getEdgeAt(i)),this.selectionHandler.hoverObject(n)}}},{key:"_checkShowPopup",value:function(t){var e=this.canvas._XconvertDOMtoCanvas(t.x),i=this.canvas._YconvertDOMtoCanvas(t.y),o={left:e,top:i,right:e,bottom:i},n=void 0===this.popupObj?void 0:this.popupObj.id,s=!1,r="node";if(void 0===this.popupObj){for(var a=this.body.nodeIndices,h=this.body.nodes,l=void 0,u=[],c=0;c0&&(this.popupObj=h[u[u.length-1]],s=!0)}if(void 0===this.popupObj&&s===!1){for(var p=this.body.edgeIndices,f=this.body.edges,m=void 0,v=[],c=0;c0&&(this.popupObj=f[v[v.length-1]],r="edge")}void 0!==this.popupObj?this.popupObj.id!==n&&(void 0===this.popup&&(this.popup=new d["default"](this.canvas.frame)),this.popup.popupTargetType=r,this.popup.popupTargetId=this.popupObj.id,this.popup.setPosition(t.x+3,t.y-5),this.popup.setText(this.popupObj.getTitle()),this.popup.show(),this.body.emitter.emit("showPopup",this.popupObj.id)):void 0!==this.popup&&(this.popup.hide(),this.body.emitter.emit("hidePopup"))}},{key:"_checkHidePopup",value:function(t){var e=this.selectionHandler._pointerToPositionObject(t),i=!1;if("node"===this.popup.popupTargetType){if(void 0!==this.body.nodes[this.popup.popupTargetId]&&(i=this.body.nodes[this.popup.popupTargetId].isOverlappingWith(e),i===!0)){var o=this.selectionHandler.getNodeAt(t);i=o.id===this.popup.popupTargetId}}else void 0===this.selectionHandler.getNodeAt(t)&&void 0!==this.body.edges[this.popup.popupTargetId]&&(i=this.body.edges[this.popup.popupTargetId].isOverlappingWith(e));i===!1&&(this.popupObj=void 0,this.popup.hide(),this.body.emitter.emit("hidePopup"))}}]),t}();e["default"]=u,t.exports=e["default"]},function(t,e,i){function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){for(var i=0;i700&&(this.body.emitter.emit("fit",{duration:700}),this.touchTime=(new Date).valueOf())}},{key:"_stopMovement",value:function(){for(var t in this.boundFunctions)this.boundFunctions.hasOwnProperty(t)&&(this.body.emitter.off("initRedraw",this.boundFunctions[t]),this.body.emitter.emit("_stopRendering"));this.boundFunctions={}}},{key:"_moveUp",value:function(){this.body.view.translation.y+=this.options.keyboard.speed.y}},{key:"_moveDown",value:function(){this.body.view.translation.y-=this.options.keyboard.speed.y}},{key:"_moveLeft",value:function(){this.body.view.translation.x+=this.options.keyboard.speed.x}},{key:"_moveRight",value:function(){this.body.view.translation.x-=this.options.keyboard.speed.x}},{key:"_zoomIn",value:function(){this.body.view.scale*=1+this.options.keyboard.speed.zoom,this.body.emitter.emit("zoom",{direction:"+",scale:this.body.view.scale})}},{key:"_zoomOut",value:function(){this.body.view.scale/=1+this.options.keyboard.speed.zoom,this.body.emitter.emit("zoom",{direction:"-",scale:this.body.view.scale})}},{key:"configureKeyboardBindings",value:function(){var t=this;void 0!==this.keycharm&&this.keycharm.destroy(),this.options.keyboard.enabled===!0&&(this.options.keyboard.bindToWindow===!0?this.keycharm=a({container:window,preventDefault:!0}):this.keycharm=a({container:this.canvas.frame,preventDefault:!0}),this.keycharm.reset(),this.activated===!0&&(this.keycharm.bind("up",function(){t.bindToRedraw("_moveUp")},"keydown"),this.keycharm.bind("down",function(){t.bindToRedraw("_moveDown")},"keydown"),this.keycharm.bind("left",function(){t.bindToRedraw("_moveLeft")},"keydown"),this.keycharm.bind("right",function(){t.bindToRedraw("_moveRight")},"keydown"),this.keycharm.bind("=",function(){ +t.bindToRedraw("_zoomIn")},"keydown"),this.keycharm.bind("num+",function(){t.bindToRedraw("_zoomIn")},"keydown"),this.keycharm.bind("num-",function(){t.bindToRedraw("_zoomOut")},"keydown"),this.keycharm.bind("-",function(){t.bindToRedraw("_zoomOut")},"keydown"),this.keycharm.bind("[",function(){t.bindToRedraw("_zoomOut")},"keydown"),this.keycharm.bind("]",function(){t.bindToRedraw("_zoomIn")},"keydown"),this.keycharm.bind("pageup",function(){t.bindToRedraw("_zoomIn")},"keydown"),this.keycharm.bind("pagedown",function(){t.bindToRedraw("_zoomOut")},"keydown"),this.keycharm.bind("up",function(){t.unbindFromRedraw("_moveUp")},"keyup"),this.keycharm.bind("down",function(){t.unbindFromRedraw("_moveDown")},"keyup"),this.keycharm.bind("left",function(){t.unbindFromRedraw("_moveLeft")},"keyup"),this.keycharm.bind("right",function(){t.unbindFromRedraw("_moveRight")},"keyup"),this.keycharm.bind("=",function(){t.unbindFromRedraw("_zoomIn")},"keyup"),this.keycharm.bind("num+",function(){t.unbindFromRedraw("_zoomIn")},"keyup"),this.keycharm.bind("num-",function(){t.unbindFromRedraw("_zoomOut")},"keyup"),this.keycharm.bind("-",function(){t.unbindFromRedraw("_zoomOut")},"keyup"),this.keycharm.bind("[",function(){t.unbindFromRedraw("_zoomOut")},"keyup"),this.keycharm.bind("]",function(){t.unbindFromRedraw("_zoomIn")},"keyup"),this.keycharm.bind("pageup",function(){t.unbindFromRedraw("_zoomIn")},"keyup"),this.keycharm.bind("pagedown",function(){t.unbindFromRedraw("_zoomOut")},"keyup")))}}]),t}();e["default"]=h,t.exports=e["default"]},function(t,e){function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function(){function t(t,e){for(var i=0;io&&(s=o-e-this.padding),sn&&(r=n-i-this.padding),r0?e===!0?this.body.nodes[o[o.length-1]]:o[o.length-1]:void 0}},{key:"_getEdgesOverlappingWith",value:function(t,e){for(var i=this.body.edges,o=0;o0?e===!0?this.body.edges[o[o.length-1]]:o[o.length-1]:void 0}},{key:"_addToSelection",value:function(t){t instanceof s?this.selectionObj.nodes[t.id]=t:this.selectionObj.edges[t.id]=t}},{key:"_addToHover",value:function(t){t instanceof s?this.hoverObj.nodes[t.id]=t:this.hoverObj.edges[t.id]=t}},{key:"_removeFromSelection",value:function(t){t instanceof s?delete this.selectionObj.nodes[t.id]:delete this.selectionObj.edges[t.id]}},{key:"unselectAll",value:function(){for(var t in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(t)&&this.selectionObj.nodes[t].unselect();for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&this.selectionObj.edges[e].unselect();this.selectionObj={nodes:{},edges:{}}}},{key:"_getSelectedNodeCount",value:function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);return t}},{key:"_getSelectedNode",value:function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return this.selectionObj.nodes[t];return void 0}},{key:"_getSelectedEdge",value:function(){for(var t in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(t))return this.selectionObj.edges[t];return void 0}},{key:"_getSelectedEdgeCount",value:function(){var t=0;for(var e in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(e)&&(t+=1);return t}},{key:"_getSelectedObjectCount",value:function(){var t=0;for(var e in this.selectionObj.nodes)this.selectionObj.nodes.hasOwnProperty(e)&&(t+=1);for(var i in this.selectionObj.edges)this.selectionObj.edges.hasOwnProperty(i)&&(t+=1);return t}},{key:"_selectionIsEmpty",value:function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t))return!1;for(var e in this.selectionObj.edges)if(this.selectionObj.edges.hasOwnProperty(e))return!1;return!0}},{key:"_clusterInSelection",value:function(){for(var t in this.selectionObj.nodes)if(this.selectionObj.nodes.hasOwnProperty(t)&&this.selectionObj.nodes[t].clusterSize>1)return!0;return!1}},{key:"_selectConnectedEdges",value:function(t){for(var e=0;e0&&(this.options.hierarchical.levelSeparation*=-1):this.options.hierarchical.levelSeparation<0&&(this.options.hierarchical.levelSeparation*=-1),this.body.emitter.emit("_resetHierarchicalLayout"),this.adaptAllOptions(e);if(i===!0)return this.body.emitter.emit("refresh"),h.deepExtend(e,this.optionsBackup)}return e}},{key:"adaptAllOptions",value:function(t){if(this.options.hierarchical.enabled===!0){void 0===t.physics||t.physics===!0?(t.physics={solver:"hierarchicalRepulsion"},this.optionsBackup.physics={solver:"barnesHut"}):"object"==typeof t.physics?(this.optionsBackup.physics={solver:"barnesHut"},void 0!==t.physics.solver&&(this.optionsBackup.physics={solver:t.physics.solver}),t.physics.solver="hierarchicalRepulsion"):t.physics!==!1&&(this.optionsBackup.physics={solver:"barnesHut"},t.physics.solver="hierarchicalRepulsion");var e="horizontal";("RL"===this.options.hierarchical.direction||"LR"===this.options.hierarchical.direction)&&(e="vertical"),void 0===t.edges?(this.optionsBackup.edges={smooth:{enabled:!0,type:"dynamic"}},t.edges={smooth:!1}):void 0===t.edges.smooth?(this.optionsBackup.edges={smooth:{enabled:!0,type:"dynamic"}},t.edges.smooth=!1):"boolean"==typeof t.edges.smooth?(this.optionsBackup.edges={smooth:t.edges.smooth},t.edges.smooth={enabled:t.edges.smooth,type:e}):(void 0!==t.edges.smooth.type&&"dynamic"!==t.edges.smooth.type&&(e=t.edges.smooth.type),this.optionsBackup.edges={smooth:void 0===t.edges.smooth.enabled?!0:t.edges.smooth.enabled,type:void 0===t.edges.smooth.type?"dynamic":t.edges.smooth.type,roundness:void 0===t.edges.smooth.roundness?.5:t.edges.smooth.roundness,forceDirection:void 0===t.edges.smooth.forceDirection?!1:t.edges.smooth.forceDirection},t.edges.smooth={enabled:void 0===t.edges.smooth.enabled?!0:t.edges.smooth.enabled,type:e,roundness:void 0===t.edges.smooth.roundness?.5:t.edges.smooth.roundness,forceDirection:void 0===t.edges.smooth.forceDirection?!1:t.edges.smooth.forceDirection}),this.body.emitter.emit("_forceDisableDynamicCurves",e)}return t}},{key:"seededRandom",value:function(){var t=1e4*Math.sin(this.randomSeed++);return t-Math.floor(t)}},{key:"positionInitially",value:function(t){if(this.options.hierarchical.enabled!==!0){this.randomSeed=this.initialRandomSeed;for(var e=0;es){for(var r=this.body.nodeIndices.length;this.body.nodeIndices.length>s;){n+=1;var a=this.body.nodeIndices.length;n%3===0?this.body.modules.clustering.clusterBridges():this.body.modules.clustering.clusterOutliers();var h=this.body.nodeIndices.length;if(a==h&&n%3!==0||n>o)return this._declusterAll(),this.body.emitter.emit("_layoutFailed"),void console.info("This network could not be positioned by this version of the improved layout algorithm. Please disable improvedLayout for better performance.")}this.body.modules.kamadaKawai.setOptions({springLength:Math.max(150,2*r)})}this.body.modules.kamadaKawai.solve(this.body.nodeIndices,this.body.edgeIndices,!0),this._shiftToCenter();for(var d=70,e=0;e0){var t=void 0,e=void 0,i=!1,o=!1;this.hierarchicalLevels={},this.nodeSpacing=100;for(e in this.body.nodes)this.body.nodes.hasOwnProperty(e)&&(t=this.body.nodes[e],void 0!==t.options.level?(i=!0,this.hierarchicalLevels[e]=t.options.level):o=!0);if(o===!0&&i===!0)throw new Error("To use the hierarchical layout, nodes require either no predefined levels or levels have to be defined for all nodes.");o===!0&&("hubsize"===this.options.hierarchical.sortMethod?this._determineLevelsByHubsize():("directed"===this.options.hierarchical.sortMethod,this._determineLevelsDirected()));var n=this._getDistribution();this._placeNodesByHierarchy(n)}}},{key:"_placeNodesByHierarchy",value:function(t){var e=void 0,i=void 0;this.positionedNodes={};for(var o in t)if(t.hasOwnProperty(o))for(e in t[o].nodes)t[o].nodes.hasOwnProperty(e)&&(i=t[o].nodes[e],"UD"===this.options.hierarchical.direction||"DU"===this.options.hierarchical.direction?(void 0===i.x&&(i.x=t[o].distance),t[o].distance=i.x+this.nodeSpacing):(void 0===i.y&&(i.y=t[o].distance),t[o].distance=i.y+this.nodeSpacing),this.positionedNodes[e]=!0,this._placeBranchNodes(i.edges,i.id,t,o))}},{key:"_getDistribution",value:function(){var t={},e=void 0,i=void 0;for(e in this.body.nodes)if(this.body.nodes.hasOwnProperty(e)){i=this.body.nodes[e];var o=void 0===this.hierarchicalLevels[e]?0:this.hierarchicalLevels[e];"UD"===this.options.hierarchical.direction||"DU"===this.options.hierarchical.direction?(i.y=this.options.hierarchical.levelSeparation*o,i.options.fixed.y=!0):(i.x=this.options.hierarchical.levelSeparation*o,i.options.fixed.x=!0),void 0===t[o]&&(t[o]={amount:0,nodes:{},distance:0}),t[o].amount+=1,t[o].nodes[e]=i}return t}},{key:"_getHubSize",value:function(){var t=0;for(var e in this.body.nodes)if(this.body.nodes.hasOwnProperty(e)){var i=this.body.nodes[e];void 0===this.hierarchicalLevels[e]&&(t=i.edges.length0&&(i=this._getHubSize(),0!==i);)for(t in this.body.nodes)this.body.nodes.hasOwnProperty(t)&&(e=this.body.nodes[t],e.edges.length===i&&this._setLevelByHubsize(0,e))}},{key:"_setLevelByHubsize",value:function(t,e){if(void 0===this.hierarchicalLevels[e.id]){var i=void 0;this.hierarchicalLevels[e.id]=t;for(var o=0;oo&&("UD"===this.options.hierarchical.direction||"DU"===this.options.hierarchical.direction?(void 0===s.x&&(s.x=Math.max(i[a].distance,r.x)),i[a].distance=s.x+this.nodeSpacing,this.positionedNodes[s.id]=!0):(void 0===s.y&&(s.y=Math.max(i[a].distance,r.y)),i[a].distance=s.y+this.nodeSpacing),this.positionedNodes[s.id]=!0,s.edges.length>1&&this._placeBranchNodes(s.edges,s.id,i,a))}}}]),t}();e["default"]=d,t.exports=e["default"]},function(t,e,i){function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){for(var i=0;i0&&this.options.deleteNode!==!1?(n===!0&&this._createSeperator(4),this._createDeleteButton(o)):0===t&&this.options.deleteEdge!==!1&&(n===!0&&this._createSeperator(4),this._createDeleteButton(o))),this._bindHammerToDiv(this.closeDiv,this.toggleEditMode.bind(this)),this._temporaryBindEvent("select",this.showManipulatorToolbar.bind(this))}this.body.emitter.emit("_redraw")}},{key:"addNodeMode",value:function(){if(this.editMode!==!0&&this.enableEditMode(),this._clean(),this.inMode="addNode",this.guiEnabled===!0){var t=this.options.locales[this.options.locale];this.manipulationDOM={},this._createBackButton(t),this._createSeperator(),this._createDescription(t.addDescription||this.options.locales.en.addDescription),this._bindHammerToDiv(this.closeDiv,this.toggleEditMode.bind(this))}this._temporaryBindEvent("click",this._performAddNode.bind(this))}},{key:"editNode",value:function(){var t=this;this.editMode!==!0&&this.enableEditMode(),this._clean();var e=this.selectionHandler._getSelectedNode();if(void 0!==e){if(this.inMode="editNode","function"!=typeof this.options.editNode)throw new Error("No function has been configured to handle the editing of nodes.");if(e.isCluster!==!0){var i=s.deepExtend({},e.options,!0);if(i.x=e.x,i.y=e.y,2!==this.options.editNode.length)throw new Error("The function for edit does not support two arguments (data, callback)");this.options.editNode(i,function(e){null!==e&&void 0!==e&&"editNode"===t.inMode&&t.body.data.nodes.getDataSet().update(e),t.showManipulatorToolbar()})}else alert(this.options.locales[this.options.locale].editClusterError||this.options.locales.en.editClusterError)}else this.showManipulatorToolbar()}},{key:"addEdgeMode",value:function(){if(this.editMode!==!0&&this.enableEditMode(),this._clean(),this.inMode="addEdge",this.guiEnabled===!0){var t=this.options.locales[this.options.locale];this.manipulationDOM={},this._createBackButton(t),this._createSeperator(),this._createDescription(t.edgeDescription||this.options.locales.en.edgeDescription),this._bindHammerToDiv(this.closeDiv,this.toggleEditMode.bind(this))}this._temporaryBindUI("onTouch",this._handleConnect.bind(this)),this._temporaryBindUI("onDragEnd",this._finishConnect.bind(this)),this._temporaryBindUI("onDrag",this._dragControlNode.bind(this)),this._temporaryBindUI("onRelease",this._finishConnect.bind(this)),this._temporaryBindUI("onDragStart",function(){}),this._temporaryBindUI("onHold",function(){})}},{key:"editEdgeMode",value:function(){var t=this;if(this.editMode!==!0&&this.enableEditMode(),this._clean(),this.inMode="editEdge",this.guiEnabled===!0){var e=this.options.locales[this.options.locale];this.manipulationDOM={},this._createBackButton(e),this._createSeperator(),this._createDescription(e.editEdgeDescription||this.options.locales.en.editEdgeDescription),this._bindHammerToDiv(this.closeDiv,this.toggleEditMode.bind(this))}this.edgeBeingEditedId=this.selectionHandler.getSelectedEdges()[0],void 0!==this.edgeBeingEditedId?!function(){var e=t.body.edges[t.edgeBeingEditedId],i=t._getNewTargetNode(e.from.x,e.from.y),o=t._getNewTargetNode(e.to.x,e.to.y);t.temporaryIds.nodes.push(i.id),t.temporaryIds.nodes.push(o.id),t.body.nodes[i.id]=i,t.body.nodeIndices.push(i.id),t.body.nodes[o.id]=o,t.body.nodeIndices.push(o.id),t._temporaryBindUI("onTouch",t._controlNodeTouch.bind(t)),t._temporaryBindUI("onTap",function(){}),t._temporaryBindUI("onHold",function(){}),t._temporaryBindUI("onDragStart",t._controlNodeDragStart.bind(t)),t._temporaryBindUI("onDrag",t._controlNodeDrag.bind(t)),t._temporaryBindUI("onDragEnd",t._controlNodeDragEnd.bind(t)),t._temporaryBindUI("onMouseMove",function(){}),t._temporaryBindEvent("beforeDrawing",function(t){var n=e.edgeType.findBorderPositions(t);i.selected===!1&&(i.x=n.from.x,i.y=n.from.y),o.selected===!1&&(o.x=n.to.x,o.y=n.to.y)}),t.body.emitter.emit("_redraw")}():this.showManipulatorToolbar()}},{key:"deleteSelected",value:function(){var t=this;this.editMode!==!0&&this.enableEditMode(),this._clean(),this.inMode="delete";var e=this.selectionHandler.getSelectedNodes(),i=this.selectionHandler.getSelectedEdges(),o=void 0;if(e.length>0){for(var n=0;n0&&"function"==typeof this.options.deleteEdge&&(o=this.options.deleteEdge);if("function"==typeof o){var s={nodes:e,edges:i};if(2!==o.length)throw new Error("The function for delete does not support two arguments (data, callback)");o(s,function(e){null!==e&&void 0!==e&&"delete"===t.inMode?(t.body.data.edges.getDataSet().remove(e.edges),t.body.data.nodes.getDataSet().remove(e.nodes),t.body.emitter.emit("startSimulation"),t.showManipulatorToolbar()):(t.body.emitter.emit("startSimulation"),t.showManipulatorToolbar())})}else this.body.data.edges.getDataSet().remove(i),this.body.data.nodes.getDataSet().remove(e),this.body.emitter.emit("startSimulation"),this.showManipulatorToolbar()}},{key:"_setup",value:function(){this.options.enabled===!0?(this.guiEnabled=!0,this._createWrappers(),this.editMode===!1?this._createEditButton():this.showManipulatorToolbar()):(this._removeManipulationDOM(),this.guiEnabled=!1)}},{key:"_createWrappers",value:function(){void 0===this.manipulationDiv&&(this.manipulationDiv=document.createElement("div"),this.manipulationDiv.className="vis-manipulation",this.editMode===!0?this.manipulationDiv.style.display="block":this.manipulationDiv.style.display="none",this.canvas.frame.appendChild(this.manipulationDiv)),void 0===this.editModeDiv&&(this.editModeDiv=document.createElement("div"),this.editModeDiv.className="vis-edit-mode",this.editMode===!0?this.editModeDiv.style.display="none":this.editModeDiv.style.display="block",this.canvas.frame.appendChild(this.editModeDiv)),void 0===this.closeDiv&&(this.closeDiv=document.createElement("div"),this.closeDiv.className="vis-close",this.closeDiv.style.display=this.manipulationDiv.style.display,this.canvas.frame.appendChild(this.closeDiv))}},{key:"_getNewTargetNode",value:function(t,e){var i=s.deepExtend({},this.options.controlNodeStyle);return i.id="targetNode"+s.randomUUID(),i.hidden=!1,i.physics=!1,i.x=t,i.y=e,this.body.functions.createNode(i)}},{key:"_createEditButton",value:function(){this._clean(),this.manipulationDOM={},s.recursiveDOMDelete(this.editModeDiv);var t=this.options.locales[this.options.locale],e=this._createButton("editMode","vis-button vis-edit vis-edit-mode",t.edit||this.options.locales.en.edit);this.editModeDiv.appendChild(e),this._bindHammerToDiv(e,this.toggleEditMode.bind(this))}},{key:"_clean",value:function(){this.inMode=!1,this.guiEnabled===!0&&(s.recursiveDOMDelete(this.editModeDiv),s.recursiveDOMDelete(this.manipulationDiv),this._cleanManipulatorHammers()),this._cleanupTemporaryNodesAndEdges(),this._unbindTemporaryUIs(),this._unbindTemporaryEvents(),this.body.emitter.emit("restorePhysics")}},{key:"_cleanManipulatorHammers",value:function(){if(0!=this.manipulationHammers.length){for(var t=0;t=0;r--)if(n[r]!==this.selectedControlNode.id){s=this.body.nodes[n[r]];break}if(void 0!==s&&void 0!==this.selectedControlNode)if(s.isCluster===!0)alert(this.options.locales[this.options.locale].createEdgeError||this.options.locales.en.createEdgeError);else{var a=this.body.nodes[this.temporaryIds.nodes[0]];this.selectedControlNode.id===a.id?this._performEditEdge(s.id,o.to.id):this._performEditEdge(o.from.id,s.id)}else o.updateEdgeType(),this.body.emitter.emit("restorePhysics");this.body.emitter.emit("_redraw")}},{key:"_handleConnect",value:function(t){if((new Date).valueOf()-this.touchTime>100){this.lastTouch=this.body.functions.getPointer(t.center),this.lastTouch.translation=s.extend({},this.body.view.translation);var e=this.lastTouch,i=this.selectionHandler.getNodeAt(e);if(void 0!==i)if(i.isCluster===!0)alert(this.options.locales[this.options.locale].createEdgeError||this.options.locales.en.createEdgeError);else{var o=this._getNewTargetNode(i.x,i.y);this.body.nodes[o.id]=o,this.body.nodeIndices.push(o.id);var n=this.body.functions.createEdge({id:"connectionEdge"+s.randomUUID(),from:i.id,to:o.id,physics:!1,smooth:{enabled:!0,type:"continuous",roundness:.5}});this.body.edges[n.id]=n,this.body.edgeIndices.push(n.id),this.temporaryIds.nodes.push(o.id),this.temporaryIds.edges.push(n.id)}this.touchTime=(new Date).valueOf()}}},{key:"_dragControlNode",value:function(t){var e=this.body.functions.getPointer(t.center);if(void 0!==this.temporaryIds.nodes[0]){var i=this.body.nodes[this.temporaryIds.nodes[0]];i.x=this.canvas._XconvertDOMtoCanvas(e.x),i.y=this.canvas._YconvertDOMtoCanvas(e.y),this.body.emitter.emit("_redraw")}else{var o=e.x-this.lastTouch.x,n=e.y-this.lastTouch.y;this.body.view.translation={x:this.lastTouch.translation.x+o,y:this.lastTouch.translation.y+n}}}},{key:"_finishConnect",value:function(t){var e=this.body.functions.getPointer(t.center),i=this.selectionHandler._pointerToPositionObject(e),o=void 0;void 0!==this.temporaryIds.edges[0]&&(o=this.body.edges[this.temporaryIds.edges[0]].fromId);for(var n=this.selectionHandler._getAllNodesOverlappingWith(i),s=void 0,r=n.length-1;r>=0;r--)if(-1===this.temporaryIds.nodes.indexOf(n[r])){s=this.body.nodes[n[r]];break}this._cleanupTemporaryNodesAndEdges(),void 0!==s&&(s.isCluster===!0?alert(this.options.locales[this.options.locale].createEdgeError||this.options.locales.en.createEdgeError):void 0!==this.body.nodes[o]&&void 0!==this.body.nodes[s.id]&&this._performAddEdge(o,s.id)),this.body.emitter.emit("_redraw")}},{key:"_performAddNode",value:function(t){var e=this,i={id:s.randomUUID(),x:t.pointer.canvas.x,y:t.pointer.canvas.y,label:"new"};if("function"==typeof this.options.addNode){if(2!==this.options.addNode.length)throw new Error("The function for add does not support two arguments (data,callback)");this.options.addNode(i,function(t){null!==t&&void 0!==t&&"addNode"===e.inMode&&(e.body.data.nodes.getDataSet().add(t),e.showManipulatorToolbar())})}else this.body.data.nodes.getDataSet().add(i),this.showManipulatorToolbar()}},{key:"_performAddEdge",value:function(t,e){var i=this,o={from:t,to:e};if("function"==typeof this.options.addEdge){if(2!==this.options.addEdge.length)throw new Error("The function for connect does not support two arguments (data,callback)");this.options.addEdge(o,function(t){null!==t&&void 0!==t&&"addEdge"===i.inMode&&(i.body.data.edges.getDataSet().add(t),i.selectionHandler.unselectAll(),i.showManipulatorToolbar())})}else this.body.data.edges.getDataSet().add(o),this.selectionHandler.unselectAll(),this.showManipulatorToolbar()}},{key:"_performEditEdge",value:function(t,e){var i=this,o={id:this.edgeBeingEditedId,from:t,to:e};if("function"==typeof this.options.editEdge){if(2!==this.options.editEdge.length)throw new Error("The function for edit does not support two arguments (data, callback)");this.options.editEdge(o,function(t){null===t||void 0===t||"editEdge"!==i.inMode?(i.body.edges[o.id].updateEdgeType(),i.body.emitter.emit("_redraw")):(i.body.data.edges.getDataSet().update(t),i.selectionHandler.unselectAll(),i.showManipulatorToolbar())})}else this.body.data.edges.getDataSet().update(o),this.selectionHandler.unselectAll(),this.showManipulatorToolbar()}}]),t}();e["default"]=h,t.exports=e["default"]},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var i="string",o="boolean",n="number",s="array",r="object",a="dom",h="any",d={configure:{enabled:{"boolean":o},filter:{"boolean":o,string:i,array:s,"function":"function"},container:{dom:a},showButton:{"boolean":o},__type__:{object:r,"boolean":o,string:i,array:s,"function":"function"}},edges:{arrows:{to:{enabled:{"boolean":o},scaleFactor:{number:n},__type__:{object:r,"boolean":o}},middle:{enabled:{"boolean":o},scaleFactor:{number:n},__type__:{object:r,"boolean":o}},from:{enabled:{"boolean":o},scaleFactor:{number:n},__type__:{object:r,"boolean":o}},__type__:{string:["from","to","middle"],object:r}},color:{color:{string:i},highlight:{string:i},hover:{string:i},inherit:{string:["from","to","both"],"boolean":o},opacity:{number:n},__type__:{object:r,string:i}},dashes:{"boolean":o,array:s},font:{color:{string:i},size:{number:n},face:{string:i},background:{string:i},strokeWidth:{number:n},strokeColor:{string:i},align:{string:["horizontal","top","middle","bottom"]},__type__:{object:r,string:i}},hidden:{"boolean":o},hoverWidth:{"function":"function",number:n},label:{string:i,undefined:"undefined"},labelHighlightBold:{"boolean":o},length:{number:n,undefined:"undefined"},physics:{"boolean":o},scaling:{min:{number:n},max:{number:n},label:{enabled:{"boolean":o},min:{number:n},max:{number:n},maxVisible:{number:n},drawThreshold:{number:n},__type__:{object:r,"boolean":o}},customScalingFunction:{"function":"function"},__type__:{object:r}},selectionWidth:{"function":"function",number:n},selfReferenceSize:{number:n},shadow:{enabled:{"boolean":o},size:{number:n},x:{number:n},y:{number:n},__type__:{object:r,"boolean":o}},smooth:{enabled:{"boolean":o},type:{string:["dynamic","continuous","discrete","diagonalCross","straightCross","horizontal","vertical","curvedCW","curvedCCW","cubicBezier"]},roundness:{number:n},forceDirection:{string:["horizontal","vertical","none"],"boolean":o},__type__:{object:r,"boolean":o}},title:{string:i,undefined:"undefined"},width:{number:n},value:{number:n,undefined:"undefined"},__type__:{object:r}},groups:{useDefaultGroups:{"boolean":o},__any__:"get from nodes, will be overwritten below",__type__:{object:r}},interaction:{dragNodes:{"boolean":o},dragView:{"boolean":o},hideEdgesOnDrag:{"boolean":o},hideNodesOnDrag:{"boolean":o},hover:{"boolean":o},keyboard:{enabled:{"boolean":o},speed:{x:{number:n},y:{number:n},zoom:{number:n},__type__:{object:r}},bindToWindow:{"boolean":o},__type__:{object:r,"boolean":o}},multiselect:{"boolean":o},navigationButtons:{"boolean":o},selectable:{"boolean":o},selectConnectedEdges:{"boolean":o},hoverConnectedEdges:{"boolean":o},tooltipDelay:{number:n},zoomView:{"boolean":o},__type__:{object:r}},layout:{randomSeed:{undefined:"undefined",number:n},improvedLayout:{"boolean":o},hierarchical:{enabled:{"boolean":o},levelSeparation:{number:n},direction:{string:["UD","DU","LR","RL"]},sortMethod:{string:["hubsize","directed"]},__type__:{object:r,"boolean":o}},__type__:{object:r}},manipulation:{enabled:{"boolean":o},initiallyActive:{"boolean":o},addNode:{"boolean":o,"function":"function"},addEdge:{"boolean":o,"function":"function"},editNode:{"function":"function"},editEdge:{"boolean":o,"function":"function"},deleteNode:{"boolean":o,"function":"function"},deleteEdge:{"boolean":o,"function":"function"},controlNodeStyle:"get from nodes, will be overwritten below",__type__:{object:r,"boolean":o}},nodes:{borderWidth:{number:n},borderWidthSelected:{number:n,undefined:"undefined"},brokenImage:{string:i,undefined:"undefined"},color:{border:{string:i},background:{string:i},highlight:{border:{string:i},background:{string:i},__type__:{object:r,string:i}},hover:{border:{string:i},background:{string:i},__type__:{object:r,string:i}},__type__:{object:r,string:i}},fixed:{x:{"boolean":o},y:{"boolean":o},__type__:{object:r,"boolean":o}},font:{color:{string:i},size:{number:n},face:{string:i},background:{string:i},strokeWidth:{number:n},strokeColor:{string:i},__type__:{object:r,string:i}},group:{string:i,number:n,undefined:"undefined"},hidden:{"boolean":o},icon:{face:{string:i},code:{string:i},size:{number:n},color:{string:i},__type__:{object:r}},id:{string:i,number:n},image:{string:i,undefined:"undefined"},label:{string:i,undefined:"undefined"},labelHighlightBold:{"boolean":o},level:{number:n,undefined:"undefined"},mass:{number:n},physics:{"boolean":o},scaling:{min:{number:n},max:{number:n},label:{enabled:{"boolean":o},min:{number:n},max:{number:n},maxVisible:{number:n},drawThreshold:{number:n},__type__:{object:r,"boolean":o}},customScalingFunction:{"function":"function"},__type__:{object:r}},shadow:{enabled:{"boolean":o},size:{number:n},x:{number:n},y:{number:n},__type__:{object:r,"boolean":o}},shape:{string:["ellipse","circle","database","box","text","image","circularImage","diamond","dot","star","triangle","triangleDown","square","icon"]},shapeProperties:{borderDashes:{"boolean":o,array:s},borderRadius:{number:n},useImageSize:{"boolean":o},__type__:{object:r}},size:{number:n},title:{string:i,undefined:"undefined"},value:{number:n,undefined:"undefined"},x:{number:n},y:{number:n},__type__:{object:r}},physics:{enabled:{"boolean":o},barnesHut:{gravitationalConstant:{number:n},centralGravity:{number:n},springLength:{number:n},springConstant:{number:n},damping:{number:n},avoidOverlap:{number:n},__type__:{object:r}},forceAtlas2Based:{gravitationalConstant:{number:n},centralGravity:{number:n},springLength:{number:n},springConstant:{number:n},damping:{number:n},avoidOverlap:{number:n},__type__:{object:r}},repulsion:{centralGravity:{number:n},springLength:{number:n},springConstant:{number:n},nodeDistance:{number:n},damping:{number:n},__type__:{object:r}},hierarchicalRepulsion:{centralGravity:{number:n},springLength:{number:n},springConstant:{number:n},nodeDistance:{number:n},damping:{number:n},__type__:{object:r}},maxVelocity:{number:n},minVelocity:{number:n},solver:{string:["barnesHut","repulsion","hierarchicalRepulsion","forceAtlas2Based"]},stabilization:{enabled:{"boolean":o},iterations:{number:n},updateInterval:{number:n},onlyDynamicEdges:{"boolean":o},fit:{"boolean":o},__type__:{object:r,"boolean":o}},timestep:{number:n},adaptiveTimestep:{"boolean":o},__type__:{object:r,"boolean":o}},autoResize:{"boolean":o},clickToUse:{"boolean":o},locale:{string:i},locales:{__any__:{any:h},__type__:{object:r}},height:{string:i},width:{string:i},__type__:{object:r}};d.groups.__any__=d.nodes,d.manipulation.controlNodeStyle=d.nodes;var l={nodes:{borderWidth:[1,0,10,1],borderWidthSelected:[2,0,10,1],color:{border:["color","#2B7CE9"],background:["color","#97C2FC"],highlight:{border:["color","#2B7CE9"],background:["color","#D2E5FF"]},hover:{border:["color","#2B7CE9"],background:["color","#D2E5FF"]}},fixed:{x:!1,y:!1},font:{color:["color","#343434"],size:[14,0,100,1],face:["arial","verdana","tahoma"],background:["color","none"],strokeWidth:[0,0,50,1],strokeColor:["color","#ffffff"]},hidden:!1,labelHighlightBold:!0,physics:!0,scaling:{min:[10,0,200,1],max:[30,0,200,1],label:{enabled:!1,min:[14,0,200,1],max:[30,0,200,1],maxVisible:[30,0,200,1],drawThreshold:[5,0,20,1]}},shadow:{enabled:!1,size:[10,0,20,1],x:[5,-30,30,1],y:[5,-30,30,1]},shape:["ellipse","box","circle","database","diamond","dot","square","star","text","triangle","triangleDown"],shapeProperties:{borderDashes:!1,borderRadius:[6,0,20,1],useImageSize:!1},size:[25,0,200,1]},edges:{arrows:{to:{enabled:!1,scaleFactor:[1,0,3,.05]},middle:{enabled:!1,scaleFactor:[1,0,3,.05]},from:{enabled:!1,scaleFactor:[1,0,3,.05]}},color:{color:["color","#848484"],highlight:["color","#848484"],hover:["color","#848484"],inherit:["from","to","both",!0,!1],opacity:[1,0,1,.05]},dashes:!1,font:{color:["color","#343434"],size:[14,0,100,1],face:["arial","verdana","tahoma"],background:["color","none"],strokeWidth:[2,0,50,1],strokeColor:["color","#ffffff"],align:["horizontal","top","middle","bottom"]},hidden:!1,hoverWidth:[1.5,0,5,.1],labelHighlightBold:!0,physics:!0,scaling:{min:[1,0,100,1],max:[15,0,100,1],label:{enabled:!0,min:[14,0,200,1],max:[30,0,200,1],maxVisible:[30,0,200,1],drawThreshold:[5,0,20,1]}},selectionWidth:[1.5,0,5,.1],selfReferenceSize:[20,0,200,1],shadow:{enabled:!1,size:[10,0,20,1],x:[5,-30,30,1],y:[5,-30,30,1]},smooth:{enabled:!0,type:["dynamic","continuous","discrete","diagonalCross","straightCross","horizontal","vertical","curvedCW","curvedCCW","cubicBezier"],forceDirection:["horizontal","vertical","none"],roundness:[.5,0,1,.05]},width:[1,0,30,1]},layout:{hierarchical:{enabled:!1,levelSeparation:[150,20,500,5],direction:["UD","DU","LR","RL"],sortMethod:["hubsize","directed"]}},interaction:{dragNodes:!0,dragView:!0,hideEdgesOnDrag:!1,hideNodesOnDrag:!1,hover:!1,keyboard:{enabled:!1,speed:{x:[10,0,40,1],y:[10,0,40,1],zoom:[.02,0,.1,.005]},bindToWindow:!0},multiselect:!1,navigationButtons:!1,selectable:!0,selectConnectedEdges:!0,hoverConnectedEdges:!0,tooltipDelay:[300,0,1e3,25],zoomView:!0},manipulation:{enabled:!1,initiallyActive:!1},physics:{enabled:!0,barnesHut:{gravitationalConstant:[-2e3,-3e4,0,50],centralGravity:[.3,0,10,.05],springLength:[95,0,500,5],springConstant:[.04,0,1.2,.005],damping:[.09,0,1,.01],avoidOverlap:[0,0,1,.01]},forceAtlas2Based:{gravitationalConstant:[-50,-500,0,1],centralGravity:[.01,0,1,.005],springLength:[95,0,500,5],springConstant:[.08,0,1.2,.005],damping:[.4,0,1,.01],avoidOverlap:[0,0,1,.01]},repulsion:{centralGravity:[.2,0,10,.05],springLength:[200,0,500,5],springConstant:[.05,0,1.2,.005],nodeDistance:[100,0,500,5],damping:[.09,0,1,.01]},hierarchicalRepulsion:{centralGravity:[.2,0,10,.05],springLength:[100,0,500,5],springConstant:[.01,0,1.2,.005],nodeDistance:[120,0,500,5],damping:[.09,0,1,.01]},maxVelocity:[50,0,150,1],minVelocity:[.1,.01,.5,.01],solver:["barnesHut","forceAtlas2Based","repulsion","hierarchicalRepulsion"],timestep:[.5,.01,1,.01]},global:{locale:["en","nl"]}};e.allOptions=d,e.configureOptions=l},function(t,e,i){function o(t){return t&&t.__esModule?t:{"default":t}}function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var s=function(){function t(t,e){var i=[],o=!0,n=!1,s=void 0;try{for(var r,a=t[Symbol.iterator]();!(o=(r=a.next()).done)&&(i.push(r.value),!e||i.length!==e);o=!0);}catch(h){n=!0,s=h}finally{try{!o&&a["return"]&&a["return"]()}finally{if(n)throw s}}return i}return function(e,i){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,i);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r=function(){function t(t,e){for(var i=0;in&&h>a;){a+=1;var v=this._getHighestEnergyNode(i),g=s(v,4);for(u=g[0],l=g[1],c=g[2],p=g[3],f=l,m=0;f>r&&d>m;){m+=1,this._moveNode(u,c,p);var y=this._getEnergy(u),b=s(y,3);f=b[0],c=b[1],p=b[2]}}}},{key:"_getHighestEnergyNode",value:function(t){for(var e=this.body.nodeIndices,i=this.body.nodes,o=0,n=e[0],r=0,a=0,h=0;ho&&(o=c,n=d,r=p,a=f)}}return[n,o,r,a]}},{key:"_getEnergy",value:function(t){for(var e=this.body.nodeIndices,i=this.body.nodes,o=i[t].x,n=i[t].y,s=0,r=0,a=0;ad;d++)for(var s=0;h-1>s;s++)for(var r=s+1;h>r;r++)o[e[s]][e[r]]=Math.min(o[e[s]][e[r]],o[e[s]][e[d]]+o[e[d]][e[r]]),o[e[r]][e[s]]=o[e[s]][e[r]];return o}}]),t}();e["default"]=n,t.exports=e["default"]},function(t,e){"undefined"!=typeof CanvasRenderingContext2D&&(CanvasRenderingContext2D.prototype.circle=function(t,e,i){this.beginPath(),this.arc(t,e,i,0,2*Math.PI,!1),this.closePath()},CanvasRenderingContext2D.prototype.square=function(t,e,i){this.beginPath(),this.rect(t-i,e-i,2*i,2*i),this.closePath()},CanvasRenderingContext2D.prototype.triangle=function(t,e,i){this.beginPath(),i*=1.15,e+=.275*i;var o=2*i,n=o/2,s=Math.sqrt(3)/6*o,r=Math.sqrt(o*o-n*n);this.moveTo(t,e-(r-s)),this.lineTo(t+n,e+s),this.lineTo(t-n,e+s),this.lineTo(t,e-(r-s)),this.closePath()},CanvasRenderingContext2D.prototype.triangleDown=function(t,e,i){this.beginPath(),i*=1.15,e-=.275*i;var o=2*i,n=o/2,s=Math.sqrt(3)/6*o,r=Math.sqrt(o*o-n*n);this.moveTo(t,e+(r-s)),this.lineTo(t+n,e-s),this.lineTo(t-n,e-s),this.lineTo(t,e+(r-s)),this.closePath()},CanvasRenderingContext2D.prototype.star=function(t,e,i){this.beginPath(),i*=.82,e+=.1*i;for(var o=0;10>o;o++){var n=o%2===0?1.3*i:.5*i;this.lineTo(t+n*Math.sin(2*o*Math.PI/10),e-n*Math.cos(2*o*Math.PI/10))}this.closePath()},CanvasRenderingContext2D.prototype.diamond=function(t,e,i){this.beginPath(),this.lineTo(t,e+i),this.lineTo(t+i,e),this.lineTo(t,e-i),this.lineTo(t-i,e),this.closePath()},CanvasRenderingContext2D.prototype.roundRect=function(t,e,i,o,n){var s=Math.PI/180;0>i-2*n&&(n=i/2),0>o-2*n&&(n=o/2),this.beginPath(),this.moveTo(t+n,e),this.lineTo(t+i-n,e),this.arc(t+i-n,e+n,n,270*s,360*s,!1),this.lineTo(t+i,e+o-n),this.arc(t+i-n,e+o-n,n,0,90*s,!1),this.lineTo(t+n,e+o),this.arc(t+n,e+o-n,n,90*s,180*s,!1),this.lineTo(t,e+n),this.arc(t+n,e+n,n,180*s,270*s,!1),this.closePath()},CanvasRenderingContext2D.prototype.ellipse=function(t,e,i,o){var n=.5522848,s=i/2*n,r=o/2*n,a=t+i,h=e+o,d=t+i/2,l=e+o/2;this.beginPath(),this.moveTo(t,l),this.bezierCurveTo(t,l-r,d-s,e,d,e),this.bezierCurveTo(d+s,e,a,l-r,a,l),this.bezierCurveTo(a,l+r,d+s,h,d,h),this.bezierCurveTo(d-s,h,t,l+r,t,l),this.closePath()},CanvasRenderingContext2D.prototype.database=function(t,e,i,o){var n=1/3,s=i,r=o*n,a=.5522848,h=s/2*a,d=r/2*a,l=t+s,u=e+r,c=t+s/2,p=e+r/2,f=e+(o-r/2),m=e+o;this.beginPath(),this.moveTo(l,p),this.bezierCurveTo(l,p+d,c+h,u,c,u),this.bezierCurveTo(c-h,u,t,p+d,t,p),this.bezierCurveTo(t,p-d,c-h,e,c,e),this.bezierCurveTo(c+h,e,l,p-d,l,p),this.lineTo(l,f),this.bezierCurveTo(l,f+d,c+h,m,c,m),this.bezierCurveTo(c-h,m,t,f+d,t,f),this.lineTo(t,p)},CanvasRenderingContext2D.prototype.arrow=function(t,e,i,o){var n=t-o*Math.cos(i),s=e-o*Math.sin(i),r=t-.9*o*Math.cos(i),a=e-.9*o*Math.sin(i),h=n+o/3*Math.cos(i+.5*Math.PI),d=s+o/3*Math.sin(i+.5*Math.PI),l=n+o/3*Math.cos(i-.5*Math.PI),u=s+o/3*Math.sin(i-.5*Math.PI);this.beginPath(),this.moveTo(t,e),this.lineTo(h,d),this.lineTo(r,a),this.lineTo(l,u),this.closePath()},CanvasRenderingContext2D.prototype.dashedLine=function(t,e,i,o,n){this.beginPath(),this.moveTo(t,e);for(var s=n.length,r=i-t,a=o-e,h=a/r,d=Math.sqrt(r*r+a*a),l=0,u=!0,c=0,p=n[0];d>=.1;)p=n[l++%s],p>d&&(p=d),c=Math.sqrt(p*p/(1+h*h)),c=0>r?-c:c,t+=c,e+=h*c,u===!0?this.lineTo(t,e):this.moveTo(t,e),d-=p,u=!u})},function(t,e){function i(t){return P=t,p()}function o(){I=0,z=P.charAt(0)}function n(){I++,z=P.charAt(I)}function s(){return P.charAt(I+1)}function r(t){return A.test(t)}function a(t,e){if(t||(t={}),e)for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return t}function h(t,e,i){for(var o=e.split("."),n=t;o.length;){var s=o.shift();o.length?(n[s]||(n[s]={}),n=n[s]):n[s]=i}}function d(t,e){for(var i,o,n=null,s=[t],r=t;r.parent;)s.push(r.parent),r=r.parent;if(r.nodes)for(i=0,o=r.nodes.length;o>i;i++)if(e.id===r.nodes[i].id){n=r.nodes[i];break}for(n||(n={id:e.id},t.node&&(n.attr=a(n.attr,t.node))),i=s.length-1;i>=0;i--){var h=s[i];h.nodes||(h.nodes=[]),-1===h.nodes.indexOf(n)&&h.nodes.push(n)}e.attr&&(n.attr=a(n.attr,e.attr))}function l(t,e){if(t.edges||(t.edges=[]),t.edges.push(e),t.edge){var i=a({},t.edge);e.attr=a(i,e.attr)}}function u(t,e,i,o,n){var s={from:e,to:i,type:o};return t.edge&&(s.attr=a({},t.edge)),s.attr=a(s.attr||{},n),s}function c(){for(L=E.NULL,N="";" "===z||" "===z||"\n"===z||"\r"===z;)n();do{var t=!1;if("#"===z){for(var e=I-1;" "===P.charAt(e)||" "===P.charAt(e);)e--;if("\n"===P.charAt(e)||""===P.charAt(e)){for(;""!=z&&"\n"!=z;)n();t=!0}}if("/"===z&&"/"===s()){for(;""!=z&&"\n"!=z;)n();t=!0}if("/"===z&&"*"===s()){for(;""!=z;){if("*"===z&&"/"===s()){n(),n();break}n()}t=!0}for(;" "===z||" "===z||"\n"===z||"\r"===z;)n()}while(t);if(""===z)return void(L=E.DELIMITER);var i=z+s();if(S[i])return L=E.DELIMITER,N=i,n(),void n();if(S[z])return L=E.DELIMITER,N=z,void n();if(r(z)||"-"===z){for(N+=z,n();r(z);)N+=z,n();return"false"===N?N=!1:"true"===N?N=!0:isNaN(Number(N))||(N=Number(N)),void(L=E.IDENTIFIER)}if('"'===z){for(n();""!=z&&('"'!=z||'"'===z&&'"'===s());)N+=z,'"'===z&&n(),n();if('"'!=z)throw _('End of string " expected');return n(),void(L=E.IDENTIFIER)}for(L=E.UNKNOWN;""!=z;)N+=z,n();throw new SyntaxError('Syntax error in part "'+x(N,30)+'"')}function p(){var t={};if(o(),c(),"strict"===N&&(t.strict=!0,c()),("graph"===N||"digraph"===N)&&(t.type=N,c()),L===E.IDENTIFIER&&(t.id=N,c()),"{"!=N)throw _("Angle bracket { expected");if(c(),f(t),"}"!=N)throw _("Angle bracket } expected");if(c(),""!==N)throw _("End of file expected");return c(),delete t.node,delete t.edge,delete t.graph,t}function f(t){for(;""!==N&&"}"!=N;)m(t),";"===N&&c()}function m(t){var e=v(t);if(e)return void b(t,e);var i=g(t);if(!i){if(L!=E.IDENTIFIER)throw _("Identifier expected");var o=N;if(c(),"="===N){if(c(),L!=E.IDENTIFIER)throw _("Identifier expected");t[o]=N,c()}else y(t,o)}}function v(t){var e=null;if("subgraph"===N&&(e={},e.type="subgraph",c(),L===E.IDENTIFIER&&(e.id=N,c())),"{"===N){if(c(),e||(e={}),e.parent=t,e.node=t.node,e.edge=t.edge,e.graph=t.graph,f(e),"}"!=N)throw _("Angle bracket } expected");c(),delete e.node,delete e.edge,delete e.graph,delete e.parent,t.subgraphs||(t.subgraphs=[]),t.subgraphs.push(e)}return e}function g(t){return"node"===N?(c(),t.node=w(),"node"):"edge"===N?(c(),t.edge=w(),"edge"):"graph"===N?(c(),t.graph=w(),"graph"):null}function y(t,e){var i={id:e},o=w();o&&(i.attr=o),d(t,i),b(t,e)}function b(t,e){for(;"->"===N||"--"===N;){var i,o=N;c();var n=v(t);if(n)i=n;else{if(L!=E.IDENTIFIER)throw _("Identifier or subgraph expected");i=N,d(t,{id:i}),c()}var s=w(),r=u(t,e,i,o,s);l(t,r),e=i}}function w(){for(var t=null;"["===N;){for(c(),t={};""!==N&&"]"!=N;){if(L!=E.IDENTIFIER)throw _("Attribute name expected");var e=N;if(c(),"="!=N)throw _("Equal sign = expected");if(c(),L!=E.IDENTIFIER)throw _("Attribute value expected");var i=N;h(t,e,i),c(),","==N&&c()}if("]"!=N)throw _("Bracket ] expected");c()}return t}function _(t){return new SyntaxError(t+', got "'+x(N,30)+'" (char '+I+")")}function x(t,e){return t.length<=e?t:t.substr(0,27)+"..."}function k(t,e,i){Array.isArray(t)?t.forEach(function(t){Array.isArray(e)?e.forEach(function(e){i(t,e)}):i(t,e)}):Array.isArray(e)?e.forEach(function(e){i(t,e)}):i(t,e)}function O(t,e,i){for(var o=e.split("."),n=o.pop(),s=t,r=0;r":!0,"--":!0},P="",I=0,z="",N="",L=E.NULL,A=/[a-zA-Z_0-9.:#]/;e.parseDOT=i,e.DOTToGraph=M},function(t,e){function i(t,e){var i=[],o=[],n={edges:{inheritColor:!1},nodes:{fixed:!1,parseColor:!1}};void 0!==e&&(void 0!==e.fixed&&(n.nodes.fixed=e.fixed),void 0!==e.parseColor&&(n.nodes.parseColor=e.parseColor),void 0!==e.inheritColor&&(n.edges.inheritColor=e.inheritColor));for(var s=t.edges,r=t.nodes,a=0;a*ETnk*~WWJTCGK?AHZN@#gpJs$70 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 O3CMoO^MexJ)PDi&R%xFA literal 0 HcmV?d00001 diff --git a/__pycache__/app.cpython-310.pyc b/__pycache__/app.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f799fa4643798d6b57c1166082e5e2b07536cc9 GIT binary patch literal 862 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 literal 0 HcmV?d00001 diff --git a/__pycache__/json_form.cpython-312.pyc b/__pycache__/json_form.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b48603d516192ce70c98aa3ca1c8f18ea6740130 GIT binary patch literal 1146 zcmZuwO-vI(6n?WmZP)&5i4Z8Xh$frRMochR&;&#bYU-hSplQ<7?jkLv+w5+wB_%=Q zfrByJkPt(UHF!22yp*dK1QKxV%@el@CQZu4nQdz-I-7hu@0<6&Z|2SJ7pwIg;PLtT zsmRj+KS75rKQ0R)tSFbLEu2qS?GQxu3uq_$8aEllST&m55;7;kd=iV-8x zI(dTGHQ+$~vs%EKTa=y!!?1+ZmM0{c2HTDW)bd)Q+AX@%aLjE z*pVqPN$x-Objt~mbK|E~gP=gisk2-NF2N8eC`Tcf0fe8|uIKa&Pe(Mvp6x};f)$2WyG|`Bozr`N{R^@ zD`XckipJ*Tgeq!IA{ms_DI$1BmL*xU6Rk-xE(xMe@T|rWy=W$;&S?ypY8(-a3NbaN z*&42@C`5G^vy@dcSv5-X6c(SsLq`4T?Lg$QBFai+UX;^fN|G{>Nl}?s@%#Q=-%~l3 znTzPEM9-heYmSDnuBxla9axQgU&==e%TT4v>}bX6T;<<}_N?A27`Xo8qe^GbCb!NN z2R7_0(-pUOGrS%yai6^V?y;3%#o4i%C|=leUakVNUMqDUI=T-W-meaC(ZBB)s?nIN z8os2X;+?Dvg=C@&IrBrDcMFH#f#d=(6$r_#j*E;>f(8!*qF&9Utb(Lq@`k zuoK8wzDZ+#8|lc{Cj9ia>morP!nkPHTc_WJpY)GsWb!}g&64eS)_z0e#@@pTWOaB)_%Nive#Iq3>WmW-Ms5+5^_!W$qg}=$>=%g-!0nDZc@9WC~IM literal 0 HcmV?d00001 diff --git a/__pycache__/news_graph.cpython-310.pyc b/__pycache__/news_graph.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7f8b1f66b14cbcd925c197dcbb90f7f3dabed0c GIT binary patch literal 9263 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 literal 0 HcmV?d00001 diff --git a/__pycache__/news_graph.cpython-312.pyc b/__pycache__/news_graph.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4aa68c405c4033072027b3ed5d3ad6f81f1f61cb GIT binary patch literal 15356 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 V)7rY%)t_^d8n%6vA&`FP{{=H}RLuYY literal 0 HcmV?d00001 diff --git a/__pycache__/textrank.cpython-310.pyc b/__pycache__/textrank.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5a70af6a7e636b048cde5347966b4bc85d7604c GIT binary patch literal 4059 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 literal 0 HcmV?d00001 diff --git a/__pycache__/textrank.cpython-312.pyc b/__pycache__/textrank.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7510ad806d24b5520f9f32b5dbbcc402144d3fe GIT binary patch literal 7458 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 fe@iOQ-3wcv;yA zR%v>4{uQrlhYL}N#hsl7;~=Y~8cd2@#Yz6JV)7AT1TA5J=vD($yNPV@do!+@lT(T$ zSHjE<`LInhpNUw-@YlU?USvF+#|dx|KI3v<6=j(7LwSED;&L9wWoc}qJkp)3^cs}1 zht6j$>QSHdX`k6Y#WhSV{7~{7n#Zjd&v*Z$9wkLQw3_-&JSddVl78r%kYjR2k#zbR z$+U4VQB1k_fXKB&l!DoB&=fm1LtuvVz#1-A_yNzA+%QuYrZS4eE=r#3w%{?ONzP>h zo@slUq+Iu9oRw*#lgQ9flhL?77SQd#{Tn>e6!n=;Z(nqnxM_ayqA0^zM3GUL1N?0@ z8wS31rbe5>K&+=yKWl!@i7LO+fftQFo6`y)epV}9{0T37JSO5S3 literal 0 HcmV?d00001 diff --git a/config_app.yaml b/config_app.yaml new file mode 100644 index 0000000..ee0101c --- /dev/null +++ b/config_app.yaml @@ -0,0 +1,73 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: python-app +spec: + replicas: 1 + selector: + matchLabels: + app: python-app + template: + metadata: + labels: + app: python-app + spec: + containers: + - name: python-container + image: python:3-slim + ports: + - containerPort: 5002 + env: + - name: PYTHONDONTWRITEBYTECODE + value: "1" + - name: PYTHONUNBUFFERED + value: "1" + volumeMounts: + - name: app-volume + mountPath: /app + resources: + requests: + memory: "256Mi" + cpu: "250m" + limits: + memory: "512Mi" + cpu: "500m" + volumes: + - name: app-volume + configMap: + name: app-config + initContainers: + - name: install-requirements + image: python:3-slim + command: ["sh", "-c", "pip install -r /app/requirements.txt"] + volumeMounts: + - name: app-volume + mountPath: /app + securityContext: + runAsUser: 5678 + fsGroup: 5678 + +--- + +apiVersion: v1 +kind: Pod +metadata: + name: standalone-python-app +spec: + containers: + - name: standalone-python-container + image: python:3-slim + ports: + - containerPort: 5002 + env: + - name: PYTHONDONTWRITEBYTECODE + value: "1" + - name: PYTHONUNBUFFERED + value: "1" + resources: + requests: + memory: "128Mi" + cpu: "100m" + limits: + memory: "256Mi" + cpu: "200m" diff --git a/data.pkl b/data.pkl new file mode 100644 index 0000000000000000000000000000000000000000..745491ab72e9ba79e4caa94931835eb0499878ee GIT binary patch literal 4676 zcmai1%~In=5GL3dvzR52Jb;cl<({K~94JVwtDI{NV{2?_ktLOWFzhK0Fh}R@@-W-# z>DKgELqc)UOi%xO{q>Lk9{=;(?Fs(*olI76pTP-0vM>2a1rOTGE-}ap{QbAS)Jnc zbVYHUEz>+s*v8~pB}JwAGXyhwj1cy*n9<^HX-zQ7p$y?88!(IEk#Nf?7x5c}`N*WW z#~bl2+_Bbd?gnDcE?#l$zzNF~JoWNvF6WzV0whCH;(Z9BBgGCUHsRZI=vjA>hE{|; zF}(^rrkoiOS4T15@%{FPdJsJ1!^G zM(p%Z@&#=1p-17m4B$zEHrnK~gn*RW!X4G@p2hK|YN0G6Xd+3|<}b-!*>LUc>9(++ zJy22^M-r%JriYovx^B|G8T98DiRxNM40VLQa@I+|NCKTO{+|fo zQPgYWaBOi&F~Wv*fr&I){P8SNV5g6zpw-}!&>6_gvB-E=7H{?;$JC>XvcfMxOB;wY zH4qhgsSo=&bZvVyf4Jkwx^E9R)W|M*F*~b%`LK{E15^?~!ANI%Bh*Rp5%F<2wD6Ys zArR?NGa~d}j(yYJ^R86+pl7ffdoDh@3`Jd>7hrwC z@;!S5s?jWRS{)3&?*l}w$4BB$&)Kq#JMcR#{un3Dv2XN=>WG}94sK>GF32=)oi%f% z-)K9o(lt*w&cUsUi?Z9CRS6`7MK{3F>$=fp2{PWkD=hr?=6bPe-=j^dGh#BKIV`9N z^Z;EB78Y~X6*E1S`J1Isr?~d7O4{!|N-|2K(x?HW*=ZZ_$<&6@W?rOu#xY1j~|v<`I0$qpJsptoK332TZx=Y%i| z%;^(Vm=~-hxk$}V-3YVEj^=d@T_YR1iHtg~q;5gA#AdEIF`DVU2z>`86>6~Cp69OB zOd~fi`uk`<(%B1$ito=H0AwG=tHX^52#bQQ6SY_LV~d-V;d1ZZ28Oj$&IA)bTCF!! zgyLspAPg$oV20?1z=bro)#0FStA%sL?{0jt8I>B zH-GE_o5lR$Zzab*{PYCun*hd^W=vp*7M{CLvB;rvcY}ff#j@Pkl>m)HFIn98Eg*>k z=#SvIbIsdgKPoY*OwT4EEcabMgIo!|htv5EmY7mek7SjA9sl;Qio;{IPw>}&e>gdT I0@3={?^S5+2><{9 literal 0 HcmV?d00001 diff --git a/data.txt b/data.txt new file mode 100644 index 0000000..8792ca5 --- /dev/null +++ b/data.txt @@ -0,0 +1,95 @@ +Artificial intelligence (AI), the ability of a digital computer or computer-controlled robot to perform tasks commonly associated with intelligent beings. The term is frequently applied to the project of developing systems endowed with the intellectual processes characteristic of humans, such as the ability to reason, discover meaning, generalize, or learn from past experience. Since the development of the digital computer in the 1940s, it has been demonstrated that computers can be programmed to carry out very complex tasks—such as discovering proofs for mathematical theorems or playing chess—with great proficiency. Still, despite continuing advances in computer processing speed and memory capacity, there are as yet no programs that can match full human flexibility over wider domains or in tasks requiring much everyday knowledge. +On the other hand, some programs have attained the performance levels of human experts and professionals in performing certain specific tasks, so that artificial intelligence in this limited sense is found in applications as diverse as medical diagnosis, computer search engines, voice or handwriting recognition, and chatbots.All but the simplest human behaviour is ascribed to intelligence, while even the most complicated insect behaviour is usually not taken as an indication of intelligence. What is the difference? Consider the behaviour of the digger wasp, Sphex ichneumoneus. When the female wasp returns to her burrow with food, she first deposits it on the threshold, checks for intruders inside her burrow, and only then, if the coast is clear, carries her food inside. +The real nature of the wasp’s instinctual behaviour is revealed if the food is moved a few inches away from the entrance to her burrow while she is inside: on emerging, she will repeat the whole procedure as often as the food is displaced. Intelligence—conspicuously absent in the case of Sphex—must include the ability to adapt to new circumstances.There are a number of different forms of learning as applied to artificial intelligence. The simplest is learning by trial and error. For example, a simple computer program for solving mate-in-one chess problems might try moves at random until mate is found. The program might then store the solution with the position so that the next time the computer encountered the same position it would recall the solution. +This simple memorizing of individual items and procedures—known as rote learning—is relatively easy to implement on a computer. More challenging is the problem of implementing what is called generalization. Generalization involves applying past experience to analogous new situations. For example, a program that learns the past tense of regular English verbs by rote will not be able to produce the past tense of a word such as jump unless it previously had been presented with jumped, whereas a program that is able to generalize can learn the “add ed” rule and so form the past tense of jump based on experience with similar verbs. +To reason is to draw inferences appropriate to the situation. Inferences are classified as either deductive or inductive. An example of the former is, “Fred must be in either the museum or the café. +He is not in the café; therefore he is in the museum,” and of the latter, “Previous accidents of this sort were caused by instrument failure; therefore this accident was caused by instrument failure.” The most significant difference between these forms of reasoning is that in the deductive case the truth of the premises guarantees the truth of the conclusion, whereas in the inductive case the truth of the premise lends support to the conclusion without giving absolute assurance. Inductive reasoning is common in science, where data are collected and tentative models are developed to describe and predict future behaviour—until the appearance of anomalous data forces the model to be revised. Deductive reasoning is common in mathematics and logic, where elaborate structures of irrefutable theorems are built up from a small set of basic axioms and rules. +Problem solving, particularly in artificial intelligence, may be characterized as a systematic search through a range of possible actions in order to reach some predefined goal or solution. Problem-solving methods divide into special purpose and general purpose. A special-purpose method is tailor-made for a particular problem and often exploits very specific features of the situation in which the problem is embedded. In contrast, a general-purpose method is applicable to a wide variety of problems. One general-purpose technique used in AI is means-end analysis—a step-by-step, or incremental, reduction of the difference between the current state and the final goal. The program selects actions from a list of means—in the case of a simple robot this might consist of PICKUP, PUTDOWN, MOVEFORWARD, MOVEBACK, MOVELEFT, and MOVERIGHT—until the goal is reached. +Many diverse problems have been solved by artificial intelligence programs. Some examples are finding the winning move (or sequence of moves) in a board game, devising mathematical proofs, and manipulating “virtual objects” in a computer-generated world. +There has been considerable success in programming computers to draw inferences. +However, true reasoning involves more than just drawing inferences: it involves drawing inferences relevant to the solution of the particular task or situation. This is one of the hardest problems confronting AI. +In perception the environment is scanned by means of various sensory organs, real or artificial, and the scene is decomposed into separate objects in various spatial relationships. Analysis is complicated by the fact that an object may appear different depending on the angle from which it is viewed, the direction and intensity of illumination in the scene, and how much the object contrasts with the surrounding field. +One of the earliest systems to integrate perception and action was FREDDY, a stationary robot with a moving television eye and a pincer hand, constructed at the University of Edinburgh, Scotland, during the period 1966–73 under the direction of Donald Michie. FREDDY was able to recognize a variety of objects and could be instructed to assemble simple artifacts, such as a toy car, from a random heap of components. At present, artificial perception is sufficiently advanced to enable optical sensors to identify individuals and autonomous vehicles to drive at moderate speeds on the open road. +A language is a system of signs having meaning by convention. In this sense, language need not be confined to the spoken word. Traffic signs, for example, form a mini-language, it being a matter of convention that ⚠ means “hazard ahead” in some countries. It is distinctive of languages that linguistic units possess meaning by convention, and linguistic meaning is very different from what is called natural meaning, exemplified in statements such as “Those clouds mean rain” and “The fall in pressure means the valve is malfunctioning.” +An important characteristic of full-fledged human languages—in contrast to birdcalls and traffic signs—is their productivity. A productive language can formulate an unlimited variety of sentences. +Large language models like ChatGPT can respond fluently in a human language to questions and statements. Although such models do not actually understand language as humans do but merely select words that are more probable than others, they have reached the point where their command of a language is indistinguishable from that of a normal human. What, then, is involved in genuine understanding, if even a computer that uses language like a native human speaker is not acknowledged to understand? There is no universally agreed upon answer to this difficult question. +AI research follows two distinct, and to some extent competing, methods, the symbolic (or “top-down”) approach, and the connectionist (or “bottom-up”) approach. The top-down approach seeks to replicate intelligence by analyzing cognition independent of the biological structure of the brain, in terms of the processing of symbols—whence the symbolic label. The bottom-up approach, on the other hand, involves creating artificial neural networks in imitation of the brain’s structure—whence the connectionist label. +To illustrate the difference between these approaches, consider the task of building a system, equipped with an optical scanner, that recognizes the letters of the alphabet. A bottom-up approach typically involves training an artificial neural network by presenting letters to it one by one, gradually improving performance by “tuning” the network. (Tuning adjusts the responsiveness of different neural pathways to different stimuli.) In contrast, a top-down approach typically involves writing a computer program that compares each letter with geometric descriptions. Simply put, neural activities are the basis of the bottom-up approach, while symbolic descriptions are the basis of the top-down approach. +In The Fundamentals of Learning (1932), Edward Thorndike, a psychologist at Columbia University, New York City, first suggested that human learning consists of some unknown property of connections between neurons in the brain. In The Organization of Behavior (1949), Donald Hebb, a psychologist at McGill University, Montreal, Canada, suggested that learning specifically involves strengthening certain patterns of neural activity by increasing the probability (weight) of induced neuron firing between the associated connections. The notion of weighted connections is described in a later section, Connectionism. +In 1957 two vigorous advocates of symbolic AI—Allen Newell, a researcher at the RAND Corporation, Santa Monica, California, and Herbert Simon, a psychologist and computer scientist at Carnegie Mellon University, Pittsburgh, Pennsylvania—summed up the top-down approach in what they called the physical symbol system hypothesis. This hypothesis states that processing structures of symbols is sufficient, in principle, to produce artificial intelligence in a digital computer and that, moreover, human intelligence is the result of the same type of symbolic manipulations. +During the 1950s and ’60s the top-down and bottom-up approaches were pursued simultaneously, and both achieved noteworthy, if limited, results. During the 1970s, however, bottom-up AI was neglected, and it was not until the 1980s that this approach again became prominent. Nowadays both approaches are followed, and both are acknowledged as facing difficulties. Symbolic techniques work in simplified realms but typically break down when confronted with the real world; meanwhile, bottom-up researchers have been unable to replicate the nervous systems of even the simplest living things. Caenorhabditis elegans, a much-studied worm, has approximately 300 neurons whose pattern of interconnections is perfectly known. Yet connectionist models have failed to mimic even this worm. Evidently, the neurons of connectionist theory are gross oversimplifications of the real thing. +Artificial general intelligence (AGI), applied AI, and cognitive simulation +Employing the methods outlined above, AI research attempts to reach one of three goals: artificial general intelligence (AGI), applied AI, or cognitive simulation. AGI (also called strong AI) aims to build machines that think. The ultimate ambition of AGI is to produce a machine whose overall intellectual ability is indistinguishable from that of a human being. As is described in the section Early milestones in AI, this goal generated great interest in the 1950s and ’60s, but such optimism has given way to an appreciation of the extreme difficulties involved. To date, progress has been meagre. Some critics doubt whether research will produce even a system with the overall intellectual ability of an ant in the foreseeable future. Indeed, some researchers working in AI’s other two branches view AGI as not worth pursuing. + +Applied AI, also known as advanced information processing, aims to produce commercially viable “smart” systems—for example, “expert” medical diagnosis systems and stock-trading systems. Applied AI has enjoyed considerable success, as described in the section Expert systems. + +In cognitive simulation, computers are used to test theories about how the human mind works—for example, theories about how people recognize faces or recall memories. Cognitive simulation is already a powerful tool in both neuroscience and cognitive psychology. +The earliest substantial work in the field of artificial intelligence was done in the mid-20th century by the British logician and computer pioneer Alan Mathison Turing. In 1935 Turing described an abstract computing machine consisting of a limitless memory and a scanner that moves back and forth through the memory, symbol by symbol, reading what it finds and writing further symbols. The actions of the scanner are dictated by a program of instructions that also is stored in the memory in the form of symbols. This is Turing’s stored-program concept, and implicit in it is the possibility of the machine operating on, and so modifying or improving, its own program. Turing’s conception is now known simply as the universal Turing machine. All modern computers are in essence universal Turing machines +During World War II, Turing was a leading cryptanalyst at the Government Code and Cypher School in Bletchley Park, Buckinghamshire, England. Turing could not turn to the project of building a stored-program electronic computing machine until the cessation of hostilities in Europe in 1945. Nevertheless, during the war he gave considerable thought to the issue of machine intelligence. One of Turing’s colleagues at Bletchley Park, Donald Michie (who later founded the Department of Machine Intelligence and Perception at the University of Edinburgh), later recalled that Turing often discussed how computers could learn from experience as well as solve new problems through the use of guiding principles—a process now known as heuristic problem solving. + +Turing gave quite possibly the earliest public lecture (London, 1947) to mention computer intelligence, saying, “What we want is a machine that can learn from experience,” and that the “possibility of letting the machine alter its own instructions provides the mechanism for this.” In 1948 he introduced many of the central concepts of AI in a report entitled “Intelligent Machinery.” However, Turing did not publish this paper, and many of his ideas were later reinvented by others. For instance, one of Turing’s original ideas was to train a network of artificial neurons to perform specific tasks, an approach described in the section Connectionism. + + Chess +At Bletchley Park, Turing illustrated his ideas on machine intelligence by reference to chess—a useful source of challenging and clearly defined problems against which proposed methods for problem solving could be tested. In principle, a chess-playing computer could play by searching exhaustively through all the available moves, but in practice this is impossible because it would involve examining an astronomically large number of moves. Heuristics are necessary to guide a narrower, more discriminative search. Although Turing experimented with designing chess programs, he had to content himself with theory in the absence of a computer to run his chess program. The first true AI programs had to await the arrival of stored-program electronic digital computers. +In 1945 Turing predicted that computers would one day play very good chess, and just over 50 years later, in 1997, Deep Blue, a chess computer built by IBM (International Business Machines Corporation), beat the reigning world champion, Garry Kasparov, in a six-game match. While Turing’s prediction came true, his expectation that chess programming would contribute to the understanding of how human beings think did not. The huge improvement in computer chess since Turing’s day is attributable to advances in computer engineering rather than advances in AI: Deep Blue’s 256 parallel processors enabled it to examine 200 million possible moves per second and to look ahead as many as 14 turns of play. Many agree with Noam Chomsky, a linguist at the Massachusetts Institute of Technology (MIT), who opined that a computer beating a grandmaster at chess is about as interesting as a bulldozer winning an Olympic weightlifting competition. + The Turing test +In 1950 Turing sidestepped the traditional debate concerning the definition of intelligence, introducing a practical test for computer intelligence that is now known simply as the Turing test. The Turing test involves three participants: a computer, a human interrogator, and a human foil. The interrogator attempts to determine, by asking questions of the other two participants, which is the computer. All communication is via keyboard and display screen. The interrogator may ask questions as penetrating and wide-ranging as he or she likes, and the computer is permitted to do everything possible to force a wrong identification. (For instance, the computer might answer “No” in response to “Are you a computer?” and might follow a request to multiply one large number by another with a long pause and an incorrect answer.) The foil must help the interrogator to make a correct identification. A number of different people play the roles of interrogator and foil, and, if a sufficient proportion of the interrogators are unable to distinguish the computer from the human being, then (according to proponents of Turing’s test) the computer is considered an intelligent, thinking entity. + +In 1991 the American philanthropist Hugh Loebner started the annual Loebner Prize competition, promising a $100,000 payout to the first computer to pass the Turing test and awarding $2,000 each year to the best effort. However, no AI program has come close to passing an undiluted Turing test. In late 2022 the advent of the large language model ChatGPT reignited conversation about the likelihood that the components of the Turing test had been met. Buzzfeed data scientist Max Woolf said that ChatGPT had passed the Turing test in December 2022, but some experts claim that ChatGPT did not pass a true Turing test, because, in ordinary usage, ChatGPT often states that it is a language model. + + Early milestones in AI + The first AI programs +The earliest successful AI program was written in 1951 by Christopher Strachey, later director of the Programming Research Group at the University of Oxford. Strachey’s checkers (draughts) program ran on the Ferranti Mark I computer at the University of Manchester, England. By the summer of 1952 this program could play a complete game of checkers at a reasonable speed. + +Information about the earliest successful demonstration of machine learning was published in 1952. Shopper, written by Anthony Oettinger at the University of Cambridge, ran on the EDSAC computer. Shopper’s simulated world was a mall of eight shops. When instructed to purchase an item, Shopper would search for it, visiting shops at random until the item was found. While searching, Shopper would memorize a few of the items stocked in each shop visited (just as a human shopper might). The next time Shopper was sent out for the same item, or for some other item that it had already located, it would go to the right shop straight away. This simple form of learning, as is pointed out in the introductory section What is intelligence?, is called rote learning. + +The first AI program to run in the United States also was a checkers program, written in 1952 by Arthur Samuel for the prototype of the IBM 701. Samuel took over the essentials of Strachey’s checkers program and over a period of years considerably extended it. In 1955 he added features that enabled the program to learn from experience. Samuel included mechanisms for both rote learning and generalization, enhancements that eventually led to his program’s winning one game against a former Connecticut checkers champion in 1962. + Evolutionary computing +Samuel’s checkers program was also notable for being one of the first efforts at evolutionary computing. (His program “evolved” by pitting a modified copy against the current best version of his program, with the winner becoming the new standard.) Evolutionary computing typically involves the use of some automatic method of generating and evaluating successive “generations” of a program, until a highly proficient solution evolves. +A leading proponent of evolutionary computing, John Holland, also wrote test software for the prototype of the IBM 701 computer. In particular, he helped design a neural-network “virtual” rat that could be trained to navigate through a maze. This work convinced Holland of the efficacy of the bottom-up approach. While continuing to consult for IBM, Holland moved to the University of Michigan in 1952 to pursue a doctorate in mathematics. He soon switched, however, to a new interdisciplinary program in computers and information processing (later known as communications science) created by Arthur Burks, one of the builders of ENIAC and its successor EDVAC. +In his 1959 dissertation, for most likely the world’s first computer science Ph.D., Holland proposed a new type of computer—a multiprocessor computer—that would assign each artificial neuron in a network to a separate processor. (In 1985 Daniel Hillis solved the engineering difficulties to build the first such computer, the 65,536-processor Thinking Machines Corporation supercomputer.) +Holland joined the faculty at Michigan after graduation and over the next four decades directed much of the research into methods of automating evolutionary computing, a process now known by the term genetic algorithms. Systems implemented in Holland’s laboratory included a chess program, models of single-cell biological organisms, and a classifier system for controlling a simulated gas-pipeline network. Genetic algorithms are no longer restricted to “academic” demonstrations, however; in one important practical application, a genetic algorithm cooperates with a witness to a crime in order to generate a portrait of the criminal. + Logical reasoning and problem solving +The ability to reason logically is an important aspect of intelligence and has always been a major focus of AI research. An important landmark in this area was a theorem-proving program written in 1955–56 by Allen Newell and J. Clifford Shaw of the RAND Corporation and Herbert Simon of the Carnegie Mellon University. The Logic Theorist, as the program became known, was designed to prove theorems from Principia Mathematica (1910–13), a three-volume work by the British philosopher-mathematicians Alfred North Whitehead and Bertrand Russell. In one instance, a proof devised by the program was more elegant than the proof given in the books. +Newell, Simon, and Shaw went on to write a more powerful program, the General Problem Solver, or GPS. The first version of GPS ran in 1957, and work continued on the project for about a decade. GPS could solve an impressive variety of puzzles using a trial and error approach. However, one criticism of GPS, and similar programs that lack any learning capability, is that the program’s intelligence is entirely secondhand, coming from whatever information the programmer explicitly includes. + English dialogue +Two of the best-known early AI programs, Eliza and Parry, gave an eerie semblance of intelligent conversation. (Details of both were first published in 1966.) Eliza, written by Joseph Weizenbaum of MIT’s AI Laboratory, simulated a human therapist. Parry, written by Stanford University psychiatrist Kenneth Colby, simulated a human paranoiac. Psychiatrists who were asked to decide whether they were communicating with Parry or a human paranoiac were often unable to tell. Nevertheless, neither Parry nor Eliza could reasonably be described as intelligent. Parry’s contributions to the conversation were canned—constructed in advance by the programmer and stored away in the computer’s memory. Eliza too relied on canned sentences and simple programming tricks. + AI programming languages +In the course of their work on the Logic Theorist and GPS, Newell, Simon, and Shaw developed their Information Processing Language (IPL), a computer language tailored for AI programming. At the heart of IPL was a highly flexible data structure that they called a list. A list is simply an ordered sequence of items of data. Some or all of the items in a list may themselves be lists. This scheme leads to richly branching structures. +In 1960 John McCarthy combined elements of IPL with the lambda calculus (a formal mathematical-logical system) to produce the programming language LISP (List Processor), which for decades was the principal language for AI work in the United States, before it was supplanted in the 21st century by such languages as Python, Java, and C++. (The lambda calculus itself was invented in 1936 by the Princeton logician Alonzo Church while he was investigating the abstract Entscheidungsproblem, or “decision problem,” for predicate logic—the same problem that Turing had been attacking when he invented the universal Turing machine.) +The logic programming language PROLOG (Programmation en Logique) was conceived by Alain Colmerauer at the University of Aix-Marseille, France, where the language was first implemented in 1973. PROLOG was further developed by the logician Robert Kowalski, a member of the AI group at the University of Edinburgh. This language makes use of a powerful theorem-proving technique known as resolution, invented in 1963 at the U.S. Atomic Energy Commission’s Argonne National Laboratory in Illinois by the British logician Alan Robinson. PROLOG can determine whether or not a given statement follows logically from other given statements. For example, given the statements “All logicians are rational” and “Robinson is a logician,” a PROLOG program responds in the affirmative to the query “Robinson is rational?” PROLOG was widely used for AI work, especially in Europe and Japan. + Microworld programs +To cope with the bewildering complexity of the real world, scientists often ignore less relevant details; for instance, physicists often ignore friction and elasticity in their models. In 1970 Marvin Minsky and Seymour Papert of the MIT AI Laboratory proposed that, likewise, AI research should focus on developing programs capable of intelligent behaviour in simpler artificial environments known as microworlds. Much research has focused on the so-called blocks world, which consists of coloured blocks of various shapes and sizes arrayed on a flat surface. + +An early success of the microworld approach was SHRDLU, written by Terry Winograd of MIT. (Details of the program were published in 1972.) SHRDLU controlled a robot arm that operated above a flat surface strewn with play blocks. Both the arm and the blocks were virtual. SHRDLU would respond to commands typed in natural English, such as “Will you please stack up both of the red blocks and either a green cube or a pyramid.” The program could also answer questions about its own actions. Although SHRDLU was initially hailed as a major breakthrough, Winograd soon announced that the program was, in fact, a dead end. The techniques pioneered in the program proved unsuitable for application in wider, more interesting worlds. Moreover, the appearance that SHRDLU gave of understanding the blocks microworld, and English statements concerning it, was in fact an illusion. SHRDLU had no idea what a green block was. + +Another product of the microworld approach was Shakey, a mobile robot developed at the Stanford Research Institute by Bertram Raphael, Nils Nilsson, and others during the period 1968–72. The robot occupied a specially built microworld consisting of walls, doorways, and a few simply shaped wooden blocks. Each wall had a carefully painted baseboard to enable the robot to “see” where the wall met the floor (a simplification of reality that is typical of the microworld approach). Shakey had about a dozen basic abilities, such as TURN, PUSH, and CLIMB-RAMP. Critics pointed out the highly simplified nature of Shakey’s environment and emphasized that, despite these simplifications, Shakey operated excruciatingly slowly; a series of actions that a human could plan out and execute in minutes took Shakey days. + +The greatest success of the microworld approach is a type of program known as an expert system, described in the next section. + Expert systems +Expert systems occupy a type of microworld—for example, a model of a ship’s hold and its cargo—that is self-contained and relatively uncomplicated. For such AI systems every effort is made to incorporate all the information about some narrow field that an expert (or group of experts) would know, so that a good expert system can often outperform any single human expert. There are many commercial expert systems, including programs for medical diagnosis, chemical analysis, credit authorization, financial management, corporate planning, financial document routing, oil and mineral prospecting, genetic engineering, automobile design and manufacture, camera lens design, computer installation design, airline scheduling, cargo placement, and automatic help services for home computer owners. + + Knowledge and inference +The basic components of an expert system are a knowledge base, or KB, and an inference engine. The information to be stored in the KB is obtained by interviewing people who are expert in the area in question. The interviewer, or knowledge engineer, organizes the information elicited from the experts into a collection of rules, typically of an “if-then” structure. Rules of this type are called production rules. The inference engine enables the expert system to draw deductions from the rules in the KB. For example, if the KB contains the production rules “if x, then y” and “if y, then z,” the inference engine is able to deduce “if x, then z.” The expert system might then query its user, “Is x true in the situation that we are considering?” If the answer is affirmative, the system will proceed to infer z. + +Some expert systems use fuzzy logic. In standard logic there are only two truth values, true and false. This absolute precision makes vague attributes or situations difficult to characterize. (When, precisely, does a thinning head of hair become a bald head?) Often the rules that human experts use contain vague expressions, and so it is useful for an expert system’s inference engine to employ fuzzy logic. + + DENDRAL +In 1965 the AI researcher Edward Feigenbaum and the geneticist Joshua Lederberg, both of Stanford University, began work on Heuristic DENDRAL (later shortened to DENDRAL), a chemical-analysis expert system. The substance to be analyzed might, for example, be a complicated compound of carbon, hydrogen, and nitrogen. Starting from spectrographic data obtained from the substance, DENDRAL would hypothesize the substance’s molecular structure. DENDRAL’s performance rivaled that of chemists expert at this task, and the program was used in industry and in academia. + + MYCIN +Work on MYCIN, an expert system for treating blood infections, began at Stanford University in 1972. MYCIN would attempt to diagnose patients based on reported symptoms and medical test results. The program could request further information concerning the patient, as well as suggest additional laboratory tests, to arrive at a probable diagnosis, after which it would recommend a course of treatment. If requested, MYCIN would explain the reasoning that led to its diagnosis and recommendation. Using about 500 production rules, MYCIN operated at roughly the same level of competence as human specialists in blood infections and rather better than general practitioners. + +Nevertheless, expert systems have no common sense or understanding of the limits of their expertise. For instance, if MYCIN were told that a patient who had received a gunshot wound was bleeding to death, the program would attempt to diagnose a bacterial cause for the patient’s symptoms. Expert systems can also act on absurd clerical errors, such as prescribing an obviously incorrect dosage of a drug for a patient whose weight and age data were accidentally transposed. + + The CYC project +CYC is a large experiment in symbolic AI. The project began in 1984 under the auspices of the Microelectronics and Computer Technology Corporation, a consortium of computer, semiconductor, and electronics manufacturers. In 1995 Douglas Lenat, the CYC project director, spun off the project as Cycorp, Inc., based in Austin, Texas. The most ambitious goal of Cycorp was to build a KB containing a significant percentage of the commonsense knowledge of a human being. Millions of commonsense assertions, or rules, were coded into CYC. The expectation was that this “critical mass” would allow the system itself to extract further rules directly from ordinary prose and eventually serve as the foundation for future generations of expert systems. + +With only a fraction of its commonsense KB compiled, CYC could draw inferences that would defeat simpler systems. For example, CYC could infer, “Garcia is wet,” from the statement, “Garcia is finishing a marathon run,” by employing its rules that running a marathon entails high exertion, that people sweat at high levels of exertion, and that when something sweats it is wet. Among the outstanding remaining problems are issues in searching and problem solving—for example, how to search the KB automatically for information that is relevant to a given problem. AI researchers call the problem of updating, searching, and otherwise manipulating a large structure of symbols in realistic amounts of time the frame problem. Some critics of symbolic AI believe that the frame problem is largely unsolvable and so maintain that the symbolic approach will never yield genuinely intelligent systems. It is possible that CYC, for example, will succumb to the frame problem long before the system achieves human levels of knowledge. + + Connectionism +Connectionism, or neuronlike computing, developed out of attempts to understand how the human brain works at the neural level and, in particular, how people learn and remember. In 1943 the neurophysiologist Warren McCulloch of the University of Illinois and the mathematician Walter Pitts of the University of Chicago published an influential treatise on neural nets and automatons, according to which each neuron in the brain is a simple digital processor and the brain as a whole is a form of computing machine. As McCulloch put it subsequently, “What we thought we were doing (and I think we succeeded fairly well) was treating the brain as a Turing machine.” + + Creating an artificial neural network +It was not until 1954, however, that Belmont Farley and Wesley Clark of MIT succeeded in running the first artificial neural network—albeit limited by computer memory to no more than 128 neurons. They were able to train their networks to recognize simple patterns. In addition, they discovered that the random destruction of up to 10 percent of the neurons in a trained network did not affect the network’s performance—a feature that is reminiscent of the brain’s ability to tolerate limited damage inflicted by surgery, accident, or disease. +The simple neural network depicted in the figure illustrates the central ideas of connectionism. Four of the network’s five neurons are for input, and the fifth—to which each of the others is connected—is for output. Each of the neurons is either firing (1) or not firing (0). Each connection leading to N, the output neuron, has a “weight.” What is called the total weighted input into N is calculated by adding up the weights of all the connections leading to N from neurons that are firing. For example, suppose that only two of the input neurons, X and Y, are firing. Since the weight of the connection from X to N is 1.5 and the weight of the connection from Y to N is 2, it follows that the total weighted input to N is 3.5. As shown in the figure, N has a firing threshold of 4. That is to say, if N’s total weighted input equals or exceeds 4, then N fires; otherwise, N does not fire. So, for example, N does not fire if the only input neurons to fire are X and Y, but N does fire if X, Y, and Z \ No newline at end of file diff --git a/diff.json b/diff.json new file mode 100644 index 0000000..4d224d5 --- /dev/null +++ b/diff.json @@ -0,0 +1,3242 @@ +{ + "nodes": { + "7": { + "label": "Punjab", + "category": "related" + }, + "13": { + "label": "Pakistan", + "category": "related" + }, + "37": { + "label": "government", + "category": "related" + }, + "40": { + "label": "wheat", + "category": "related" + }, + "43": { + "label": "Imran Khan", + "category": "related" + }, + "46": { + "label": "Fawad Chaudhry", + "category": "related" + }, + "48": { + "label": "PTI", + "category": "related" + }, + "50": { + "label": "Usman", + "category": "related" + }, + "52": { + "label": "Sudan", + "category": "related" + }, + "54": { + "label": "Shehbaz Sharif", + "category": "related" + }, + "73": { + "label": "Islamabad", + "category": "related" + }, + "77": { + "label": "Rawalpindi", + "category": "related" + }, + "96": { + "label": "Karachi", + "category": "related" + }, + "97": { + "label": "Sindh", + "category": "related" + }, + "133": { + "label": "Lahore", + "category": "related" + }, + "147": { + "label": "Umar", + "category": "related" + }, + "158": { + "label": "MPA", + "category": "related" + }, + "179": { + "label": "Balochistan", + "category": "related" + }, + "182": { + "label": "Baloch", + "category": "related" + }, + "184": { + "label": "census", + "category": "related" + }, + "185": { + "label": "population", + "category": "related" + }, + "196": { + "label": "President", + "category": "related" + }, + "199": { + "label": "India", + "category": "related" + }, + "207": { + "label": "Eidul Fitr", + "category": "related" + }, + "217": { + "label": "DSP", + "category": "related" + }, + "220": { + "label": "Khyber Pakhtunkhwa", + "category": "related" + }, + "230": { + "label": "protesters", + "category": "related" + }, + "231": { + "label": "police", + "category": "related" + }, + "232": { + "label": "officials", + "category": "related" + }, + "243": { + "label": "Naveed", + "category": "related" + }, + "251": { + "label": "South Waziristan", + "category": "related" + }, + "255": { + "label": "TMA", + "category": "related" + }, + "258": { + "label": "Khyber", + "category": "related" + }, + "284": { + "label": "elections", + "category": "related" + }, + "286": { + "label": "agriculture", + "category": "related" + }, + "298": { + "label": "ADB", + "category": "related" + }, + "300": { + "label": "PM", + "category": "related" + }, + "324": { + "label": "law", + "category": "related" + }, + "328": { + "label": "CDA", + "category": "related" + }, + "346": { + "label": "KARACHI", + "category": "related" + }, + "359": { + "label": "province", + "category": "related" + }, + "381": { + "label": "treated", + "category": "related" + }, + "383": { + "label": "PPP", + "category": "related" + }, + "429": { + "label": "Irfan", + "category": "related" + }, + "445": { + "label": "Akbar", + "category": "related" + }, + "521": { + "label": "PESHAWAR", + "category": "related" + }, + "603": { + "label": "China", + "category": "related" + }, + "630": { + "label": "commissioner", + "category": "related" + }, + "641": { + "label": "Yasir", + "category": "related" + }, + "672": { + "label": "terrorism", + "category": "related" + }, + "733": { + "label": "Moonis Elahi", + "category": "related" + }, + "833": { + "label": "disqualified", + "category": "related" + }, + "836": { + "label": "unseated", + "category": "related" + }, + "902": { + "label": "Passco", + "category": "related" + }, + "904": { + "label": "Rahim", + "category": "related" + }, + "910": { + "label": "LAHORE", + "category": "related" + }, + "912": { + "label": "city", + "category": "related" + }, + "925": { + "label": "CPO", + "category": "related" + }, + "981": { + "label": "Constitution", + "category": "related" + }, + "986": { + "label": "Nawaz", + "category": "related" + }, + "1063": { + "label": "lead", + "category": "related" + }, + "1099": { + "label": "injured", + "category": "related" + }, + "1132": { + "label": "woman", + "category": "related" + }, + "1181": { + "label": "shot", + "category": "related" + }, + "1182": { + "label": "killed", + "category": "related" + }, + "1185": { + "label": "parliament", + "category": "related" + }, + "1187": { + "label": "politicians", + "category": "related" + }, + "1203": { + "label": "mpox", + "category": "related" + }, + "1304": { + "label": "Toyota", + "category": "related" + }, + "1325": { + "label": "Chairman", + "category": "related" + }, + "1328": { + "label": "army", + "category": "related" + }, + "1355": { + "label": "teachers", + "category": "related" + }, + "1357": { + "label": "schools", + "category": "related" + }, + "1358": { + "label": "mosques", + "category": "related" + }, + "1375": { + "label": "Germany", + "category": "related" + }, + "1422": { + "label": "FIR", + "category": "related" + }, + "1456": { + "label": "judge", + "category": "related" + }, + "1462": { + "label": "Dawn", + "category": "related" + }, + "1524": { + "label": "Imran", + "category": "related" + }, + "1537": { + "label": "UN", + "category": "related" + }, + "1575": { + "label": "Police", + "category": "related" + }, + "1611": { + "label": "Marwat", + "category": "related" + }, + "1639": { + "label": "NAB", + "category": "related" + }, + "1646": { + "label": "Ikram", + "category": "related" + }, + "1656": { + "label": "Ilyas", + "category": "related" + }, + "1716": { + "label": "PML", + "category": "related" + }, + "1745": { + "label": "economy", + "category": "related" + }, + "1837": { + "label": "CTD", + "category": "related" + }, + "1910": { + "label": "village", + "category": "related" + }, + "1940": { + "label": "DPO", + "category": "related" + }, + "2001": { + "label": "coaches", + "category": "related" + }, + "2008": { + "label": "Gul", + "category": "related" + }, + "2017": { + "label": "DG", + "category": "related" + }, + "2066": { + "label": "attack", + "category": "related" + }, + "2069": { + "label": "KP", + "category": "related" + }, + "2075": { + "label": "president", + "category": "related" + }, + "2078": { + "label": "labourers", + "category": "related" + }, + "2084": { + "label": "ISPR", + "category": "related" + }, + "2173": { + "label": "journalists", + "category": "related" + }, + "2210": { + "label": "MNA", + "category": "related" + }, + "2244": { + "label": "Adviser", + "category": "related" + }, + "2293": { + "label": "Ismail", + "category": "related" + }, + "2332": { + "label": "election", + "category": "related" + }, + "2356": { + "label": "DIG", + "category": "related" + }, + "2357": { + "label": "SSP", + "category": "related" + }, + "2375": { + "label": "FIA", + "category": "related" + }, + "2387": { + "label": "media", + "category": "related" + } + }, + "edges": [ + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 50, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 52, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "owner of", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 48, + "to": 147, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 158, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 184, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 243, + "to": 243, + "label": "father", + "category": "related" + }, + { + "from": 255, + "to": 255, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 284, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 286, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 300, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 300, + "label": "position held", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares", + "category": "related" + }, + { + "from": 324, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 324, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 328, + "to": 328, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 381, + "to": 381, + "label": "subclass of", + "category": "related" + }, + { + "from": 381, + "to": 381, + "label": "subclass", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 429, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 50, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of", + "category": "related" + }, + { + "from": 37, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 37, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 630, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 672, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 231, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 48, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "contains administrative", + "category": "related" + }, + { + "from": 220, + "to": 48, + "label": "country", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 902, + "to": 904, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 925, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 925, + "to": 133, + "label": "located in the", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the", + "category": "related" + }, + { + "from": 7, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 284, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 981, + "to": 981, + "label": "has part", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 284, + "to": 43, + "label": "successful candidate", + "category": "related" + }, + { + "from": 37, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 77, + "to": 231, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "capital of", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 1132, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 133, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1181, + "to": 1182, + "label": "subclass of", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1187, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1185, + "to": 1187, + "label": "legislative", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has part", + "category": "related" + }, + { + "from": 1185, + "to": 1187, + "label": "has", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 1325, + "to": 43, + "label": "officeholder", + "category": "related" + }, + { + "from": 43, + "to": 1325, + "label": "position held", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1358, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 1375, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1375, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1375, + "to": 1375, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 383, + "to": 1325, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1422, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 77, + "to": 73, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 73, + "to": 77, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 1524, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "applies", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "part of", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1639, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1639, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1656, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "has part", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "part of", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1745, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "authority", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "legislative body", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 258, + "label": "officeholder", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares", + "category": "related" + }, + { + "from": 7, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "authority", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "legislative body", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "capital", + "category": "related" + }, + { + "from": 1639, + "to": 2017, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 2017, + "to": 1639, + "label": "part of", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 2075, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 258, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "part of", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has part", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "part", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 54, + "to": 43, + "label": "relative", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political", + "category": "related" + }, + { + "from": 2210, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2210, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 97, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 258, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 284, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 284, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2332, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2332, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2069, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 179, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 184, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 220, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 50, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 48, + "to": 147, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 52, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + } + ] +} \ No newline at end of file diff --git a/difference.py b/difference.py new file mode 100644 index 0000000..df60f3c --- /dev/null +++ b/difference.py @@ -0,0 +1,46 @@ +import json + +with open('graph_data_from_kg.json') as f1: + data1 = json.load(f1) + +with open('graph_data.json') as f2: + data2 = json.load(f2) + +node_data1=[node for node in data2['edges']] + + # if data1['nodes'][j]['label'] in node_data1 + # if j['label'] in node_data1['label']: + # print(j) +# print(data1['nodes'].keys()) +label_from_data_2=[] +for i in node_data1: + print(i['label']) + label_from_data_2.append(i['label']) +nodes={} +for count_number,j in enumerate( data1['nodes']): + if data1['nodes'][j]['label'] in label_from_data_2: + # print(data1['nodes'][j]) + # print(count_number) + nodes[count_number]=data1['nodes'][j] +edges_remover=[] +nodes_inter=[] +for number,node in enumerate(data1['nodes'].values()): + if node['label'] in label_from_data_2: + + nodes_inter.append(node) + else: + edges_remover.append(number) +edges=[] +print(edges_remover) +for j in data1['edges']: + if j['from'] in edges_remover or j['to'] in edges_remover: + print("removing ",j) + else: + edges.append(j) +# print(edges_remover) +print(edges) +node_edge=[node_edges for node_edges in data1['edges']] + +with open('diff.json', 'w') as f: + json.dump({'nodes': nodes, 'edges': edges}, f, indent=4) + diff --git a/docker-compose.debug.yml b/docker-compose.debug.yml new file mode 100644 index 0000000..c501ca5 --- /dev/null +++ b/docker-compose.debug.yml @@ -0,0 +1,14 @@ +version: '3.4' + +services: + newsgraph: + image: newsgraph + build: + context: . + dockerfile: ./Dockerfile + command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 -m flask run --no-debugger --no-reload --host 0.0.0.0 --port 5002"] + ports: + - 5002:5002 + - 5678:5678 + environment: + - FLASK_APP=app.py diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e79ce8d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3.4' + +services: + newsgraph: + image: newsgraph + build: + context: . + dockerfile: ./Dockerfile + ports: + - 5002:5002 diff --git a/draw.py b/draw.py new file mode 100644 index 0000000..617c26a --- /dev/null +++ b/draw.py @@ -0,0 +1,77 @@ +import json + +# Read JSON file +with open('diff.json', 'r') as file: + data = json.load(file) + +# Prepare nodes and edges data for vis.js +nodes = [{'id': node_id, 'label': node_data['label']} for node_id, node_data in data['nodes'].items()] +edges = [{'from': str(edge['from']), 'to': str(edge['to']), 'label': edge['label']} for edge in data['edges']] + +# Generate HTML code +html_code = f""" + + + Graph from JSON Data + + + + +
+ + + +""" + +# Substitute nodes and edges data into HTML code +html_code = html_code.replace('{json_nodes}', json.dumps(nodes)) +html_code = html_code.replace('{json_edges}', json.dumps(edges)) + +# Write HTML code to a file +with open('graph.html', 'w') as file: + file.write(html_code) diff --git a/events.json b/events.json new file mode 100644 index 0000000..bb132a5 --- /dev/null +++ b/events.json @@ -0,0 +1 @@ +[["Punjab", "Location"], ["Farooq", "issued notices"], ["shot", "is Farooq"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Nawaz", "criticised judge"], ["PTI", "Organization"], ["Punjab", "Location"], ["the World Bank", "Organization"], ["Fawad Chaudhry", "Person"], ["Pakistan", "Location"], ["SOE", "Organization"], ["Moonis Elahi", "Person"], ["20pc", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Moonis Elahi", "Person"], ["SC", "take"], ["PTI", "Organization"], ["SOE", "Organization"], ["Moonis Elahi", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["WMO", "Organization"], ["the Punjab Assembly", "Organization"], ["PTI", "Organization"], ["SOE", "Organization"], ["Moonis Elahi", "Person"], ["it", "becomes"], ["PTI", "Organization"], ["SOE", "Organization"], ["WMO", "Organization"], ["the Punjab Assembly", "Organization"], ["PTI", "Organization"], ["SOE", "Organization"], ["the apex court", "Organization"], ["Moonis Elahi", "Person"], ["Alam", "requested wing"], ["PTI", "Organization"], ["SOE", "Organization"], ["the apex court", "Organization"], ["Moonis Elahi", "Person"], ["options", "are"], ["prisons", "face pressure"], ["PTI", "Organization"], ["SOE", "Organization"], ["the apex court", "Organization"], ["Moonis Elahi", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["IHC", "Organization"], ["WMO", "Organization"], ["the Punjab Assembly", "Organization"], ["PTI", "Organization"], ["SOE", "Organization"], ["the apex court", "Organization"], ["Moonis Elahi", "Person"], ["by", "escorted"], ["PTI", "Organization"], ["SOE", "Organization"], ["the apex court", "Organization"], ["Moonis Elahi", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["IHC", "Organization"], ["WMO", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Gandapur", "Person"], ["the apex court", "Organization"], ["PTI", "Organization"], ["SOE", "Organization"], ["IHC", "Organization"], ["Authority", "issued rules"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["it", "clear"], ["PTI", "Organization"], ["SOE", "Organization"], ["PTI", "Organization"], ["Punjab", "Location"], ["rulers", "were"], ["PTI", "Organization"], ["PAC", "Organization"], ["NAB", "Organization"], ["contractor", "has nothing"], ["PTI", "Organization"], ["PAC", "Organization"], ["NAB", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["NAB", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["NAB", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["voice", "says"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["SOE", "Organization"], ["FBR", "enhanced rate"], ["FBR", "overstepped powers"], ["PTI", "Organization"], ["PAC", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["boy", "injured"], ["PTI", "Organization"], ["PAC", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["decision", "accommodated LAHORE"], ["Pakistan", "Location"], ["Punjab", "Location"], ["jeeps", "sold"], ["Pakistan", "Location"], ["Punjab", "Location"], ["FBR", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["SRO", "Organization"], ["AAP", "knows"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mahil", "Person"], ["SRO", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["FBR", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mahil", "Person"], ["SRO", "Organization"], ["PTI", "Organization"], ["PAC", "Organization"], ["FBR", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mahil", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mahil", "Person"], ["ADB", "continues"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mahil", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mahil", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["by", "described"], ["PTI", "Organization"], ["South Waziristan", "Location"], ["vaccines", "needed whatever"], ["PTI", "Organization"], ["South Waziristan", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["number", "jumped"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["PAC", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["PAC", "Organization"], ["Wida", "observed"], ["PTI", "Organization"], ["LDA", "Organization"], ["HEIs", "Organization"], ["owner", "run"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["EIA", "Organization"], ["clip", "features relative"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["EIA", "Organization"], ["PTI", "Organization"], ["LDA", "Organization"], ["HEIs", "Organization"], ["minister", "considered"], ["PTI", "Organization"], ["LDA", "Organization"], ["HEIs", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["EIA", "Organization"], ["Bhutto", "came"], ["Pakistan", "Location"], ["Punjab", "Location"], ["South Waziristan", "Location"], ["it", "caused"], ["PTI", "Organization"], ["LDA", "Organization"], ["HEIs", "Organization"], ["PTI", "Organization"], ["LDA", "Organization"], ["HEIs", "Organization"], ["PTI", "Organization"], ["LDA", "Organization"], ["South Waziristan", "Location"], ["PTI", "Organization"], ["LDA", "Organization"], ["South Waziristan", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Naveed", "Person"], ["PTI", "Organization"], ["LDA", "Organization"], ["Hussain", "offered prayers"], ["Punjab", "Location"], ["LDA", "Organization"], ["owner", "sought proceedings"], ["Pakistan", "Location"], ["PTI", "Organization"], ["Naveed", "Person"], ["Polls", "scheduled"], ["Punjab", "Location"], ["LDA", "Organization"], ["Pakistan", "Location"], ["PTI", "Organization"], ["Naveed", "Person"], ["inquiry", "is"], ["Pakistan", "Location"], ["PTI", "Organization"], ["Naveed", "Person"], ["boy", "injured"], ["Pakistan", "Location"], ["PTI", "Organization"], ["Naveed", "Person"], ["Pakistan", "Location"], ["PTI", "Organization"], ["Naveed", "Person"], ["group", "supporting Gujjar"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["bags", "distributed"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["tremors", "felt"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["location", "starting"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["incident", "reported"], ["day", "drowned"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["family", "visited Market"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["Aurangzeb", "took jibe"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["Mir", "lodged FIR"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Naveed", "Person"], ["official", "wondered"], ["operations", "conducted"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["victims", "treated"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Naveed", "Person"], ["law", "take course"], ["officer", "told officer"], ["PTI", "Organization"], ["LDA", "Organization"], ["Amritpal", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Naveed", "Person"], ["COAS", "remarked"], ["COAS", "appreciated vigil"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Naveed", "Person"], ["persons", "drowned"], ["injured", "were residents"], ["PTI", "Organization"], ["LDA", "Organization"], ["crop", "affected"], ["PTI", "Organization"], ["LDA", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["officer", "told Dawn"], ["launch", "enjoy elections"], ["officer", "told officer"], ["PTI", "Organization"], ["LDA", "Organization"], ["personnel", "gather"], ["personnel", "received information"], ["who", "sent"], ["personnel", "took bodies"], ["Pakistan", "Location"], ["Punjab", "Location"], ["by", "arranged"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["shot", "is Farooq"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Jirga", "organised protest"], ["PTI", "Organization"], ["patrols", "remain"], ["PTI", "Organization"], ["PCB", "Organization"], ["it", "agrees"], ["PTI", "Organization"], ["PCB", "Organization"], ["mother", "robbed"], ["Nisar", "played role"], ["move", "coincides"], ["PTI", "Organization"], ["PCB", "Organization"], ["embassy", "is"], ["Pakistan", "Location"], ["Punjab", "Location"], ["flyover", "constructed"], ["sectors", "are"], ["PTI", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["PSB", "is"], ["Pakistan", "Location"], ["Punjab", "Location"], ["PTI", "Organization"], ["cabinet", "formed"], ["PTI", "Organization"], ["by", "trapped"], ["Pakistan", "Location"], ["Punjab", "Location"], ["PTI", "Organization"], ["applications", "awarded"], ["PTI", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["PTI", "Organization"], ["CDA", "wanted"], ["by", "acquired"], ["by", "acquired"], ["PTI", "Organization"], ["SC", "take"], ["Pakistan", "Location"], ["Punjab", "Location"], ["enforcers", "arrested Baloch"], ["law", "be buzzword"], ["PTI", "Organization"], ["hospital", "had units"], ["PTI", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["who", "fired"], ["Pakistan", "Location"], ["Punjab", "Location"], ["He", "identified"], ["PTI", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mir", "lodged FIR"], ["PTI", "Organization"], ["decision", "accommodated LAHORE"], ["law", "take course"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Hussain", "offered prayers"], ["PTI", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["spokesperson", "distanced military"], ["PTI", "Organization"], ["people", "turned"], ["governments", "succeeded"], ["PTI", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Mir", "lodged FIR"], ["PTI", "Organization"], ["that", "provided"], ["Pakistan", "Location"], ["Punjab", "Location"], ["act", "done"], ["it", "done"], ["PTI", "Organization"], ["inquiry", "is"], ["Naveed", "is"], ["That", "is"], ["embassy", "is"], ["PSB", "is"], ["PTI", "Organization"], ["Shahwani", "targeted"], ["PTI", "Organization"], ["diseases", "registered rise"], ["Pakistan", "Location"], ["Punjab", "Location"], ["theft", "committed"], ["SCO", "is group"], ["PTI", "Organization"], ["attack", "highlighted shift"], ["PTI", "Organization"], ["SC", "take"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Commission", "observed sense"], ["Pakistan", "Location"], ["Punjab", "Location"], ["PTI", "Organization"], ["family", "visited Market"], ["PTI", "Organization"], ["court", "suspended operation"], ["Pakistan", "Location"], ["Punjab", "Location"], ["women", "were"], ["Pakistan", "Location"], ["Punjab", "Location"], ["peace", "restored"], ["PTI", "Organization"], ["agency", "said"], ["parties", "shown inclination"], ["nominees", "approach them"], ["PTI", "Organization"], ["options", "are"], ["study", "reflected"], ["Pakistan", "Location"], ["Punjab", "Location"], ["department", "trying"], ["Pakistan", "Location"], ["Punjab", "Location"], ["machine", "collided"], ["car", "collided"], ["motorcycles", "collided"], ["car", "collided"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "wanted"], ["by", "acquired"], ["by", "acquired"], ["by", "acquired"], ["negligence", "resulted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["programme", "approved"], ["PTI", "Organization"], ["accused", "came"], ["main", "accused"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["PTI", "Organization"], ["we", "try"], ["PTI", "Organization"], ["committee", "issued direction"], ["it", "formed"], ["cabinet", "formed"], ["member", "laid area"], ["PTI", "Organization"], ["secretary", "visited facility"], ["PTI", "Organization"], ["States", "launched operations"], ["States", "left door"], ["that", "left"], ["PTI", "Organization"], ["imports", "consumed 5.12bn"], ["PTI", "Organization"], ["Land", "acquired"], ["Land", "is"], ["PTI", "Organization"], ["policemen", "tasked"], ["that", "left"], ["MNAs", "attend session"], ["PTI", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["decision", "accommodated LAHORE"], ["decision", "caused disintegration"], ["act", "done"], ["Pakistan", "Location"], ["Punjab", "Location"], ["PTI", "Organization"], ["RDA", "Organization"], ["He", "admitted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["agency", "said"], ["we", "move"], ["move", "follows decision"], ["move", "coincides"], ["PTI", "Organization"], ["RDA", "Organization"], ["Assembly", "demanded decrease"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["court", "direct FBR"], ["he", "unseated"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["auction", "take place"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["which", "help"], ["teams", "conducted operation"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["cell", "reactivated"], ["day", "drowned"], ["Afghan", "drowned"], ["Pakistan", "Location"], ["Punjab", "Location"], ["time", "was hour"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["work", "given hope"], ["Iftikhar", "wanted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["government", "providing support"], ["She", "stated"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["body", "dispatched"], ["body", "bore wounds"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["applications", "awarded"], ["party", "kept award"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["Member", "raised questions"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["PTI", "constituted committees"], ["PTI", "posted"], ["He", "elected"], ["chief", "claims life"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["departments", "cast votes"], ["hospitals", "treated patients"], ["Nasir", "asked authorities"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Wajahat", "visited station"], ["Pakistan", "Location"], ["Punjab", "Location"], ["incident", "reported"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["share", "was billionand"], ["attempts", "were"], ["Asif", "chose"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["by", "issued"], ["by", "issued"], ["paper", "came"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["work", "given hope"], ["work", "was"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["project", "mired"], ["project", "received response"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["SC", "take"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["SC", "take"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["by", "issued"], ["by", "issued"], ["by", "issued"], ["by", "issued"], ["by", "issued"], ["by", "issued"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["boy", "injured"], ["injured", "shifted"], ["injured", "admitted"], ["injured", "shifted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["government", "providing support"], ["coalition", "agrees"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["GUJRAT", "suspended"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["secretary", "visited facility"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["movement", "was"], ["residents", "struggled"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["shot", "is Farooq"], ["by", "shot"], ["youth", "shot"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["accused", "came"], ["main", "accused"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["judges", "was"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["government", "providing support"], ["members", "died"], ["members", "died"], ["members", "staged protest"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["Iftikhar", "placed order"], ["Chaudhry", "claimed"], ["Passco", "buy produce"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["official", "wondered"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["participants", "are Ijaz"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["agency", "said"], ["DPO", "formed teams"], ["value", "stood"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["agency", "said"], ["leaders", "reported footfall"], ["party", "kept award"], ["He", "stressed"], ["Hoti", "held meeting"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["parts", "are"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["temperatures", "recorded"], ["growth", "be"], ["by", "recorded"], ["exports", "remained"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["confrontation", "created"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["husband", "associated"], ["conditions", "occur"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["Commission", "extended date"], ["Institute", "started project"], ["Institute", "closed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["study", "suggested"], ["price", "recorded"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Honda", "Organization"], ["NA", "approve expenditure"], ["PTI", "Organization"], ["Eidul Fitr", "Person"], ["prayers", "offered"], ["time", "was hour"], ["prayers", "offered"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Shaf\u00adiullah", "stated"], ["encounters", "stopped"], ["She", "stated"], ["who", "stopped"], ["trains", "stopped"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["Iftikhar", "wanted"], ["Court", "comprised justice"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["agency", "said"], ["accident", "happened"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Ali", "joined department"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["circles", "assailed authorities"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["treatment", "be"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["Irfan", "stated"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["Punjab", "completed studies"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Bureau", "launched probe"], ["officers", "working"], ["director", "attended meeting"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["Latif", "killed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["he", "detained"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["cabinet", "formed"], ["cabinet", "had options"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Pakistan", "exported tonnes"], ["Pakistan", "stepped efforts"], ["Pakistan", "moving"], ["law", "presented"], ["Pakistan", "appears ninth"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Wida", "observed"], ["Sida", "feeds Wah"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["attempt", "remained"], ["by", "decided"], ["campaign", "going"], ["Abbas", "going"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["audios", "released"], ["by", "released"], ["He", "got"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["rate", "enhanced"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["head", "led delegation"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["by", "shared"], ["which", "shared"], ["It", "merits"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["circuit", "is"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["by", "contacted"], ["Ali", "joined department"], ["he", "reply"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["agency", "said"], ["areas", "affected"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Honda", "Organization"], ["Pakistan", "stepped efforts"], ["Pakistan", "moving"], ["Pakistan", "appears ninth"], ["study", "conducted"], ["Pakistan", "be"], ["by", "conducted"], ["operations", "conducted"], ["by", "conducted"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["bench", "restored lease"], ["by", "summoned"], ["bench", "allowed bail"], ["bench", "resumed hearing"], ["JIT", "scrapped"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Honda", "Organization"], ["Jabal", "spoke"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["which", "registered"], ["mills", "exhausted stocks"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["losses", "become"], ["people", "implicated"], ["people", "study"], ["people", "shifted"], ["constitution", "revoked"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Honda", "Organization"], ["law", "presented"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["project", "mired"], ["project", "miss deadline"], ["cost", "stood"], ["sabotage", "ruled"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["Organisation", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["countries", "navigate impacts"], ["stakeholders", "developed consensus"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["Latif", "killed"], ["son", "killed"], ["TOBA", "killed"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["flight", "take"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["he", "prayed"], ["members", "died"], ["members", "offered prayers"], ["members", "continued tirade"], ["members", "staged protest"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["government", "is"], ["decision", "accommodated LAHORE"], ["decision", "caused disintegration"], ["policy", "recognise role"], ["government", "using tactics"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["agency", "said"], ["which", "go"], ["residents", "taking patients"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["attempt", "remained"], ["exports", "remained"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Shehbaz Sharif", "Person"], ["action", "ordered"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["children", "reporting"], ["stakeholders", "sit"], ["He", "alleged"], ["He", "alleged"], ["He", "alleged"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["government", "is"], ["Pakistan", "exported tonnes"], ["Pakistan", "moving"], ["government", "slashed Programme"], ["Pakistan", "appears ninth"], ["bombing", "related"], ["government", "solve challenges"], ["Pakistan", "be"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["agency", "said"], ["criminals", "kidnapping people"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["which", "help"], ["he", "involved"], ["criminals", "kidnapping people"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["plan", "chalked"], ["plan", "envisaged reduction"], ["by", "bound"], ["plan", "misused"], ["plan", "drawn"], ["which", "bound"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "written letters"], ["he", "shifted"], ["workers", "fired"], ["injured", "shifted"], ["Bacha", "laid area"], ["workers", "provided woman"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["agency", "said"], ["melting", "was"], ["embassy", "was"], ["plan", "was"], ["people", "implicated"], ["SRO", "was"], ["people", "turned"], ["vaccines", "need"], ["people", "visited Museum"], ["judges", "was"], ["conversation", "was"], ["scale", "was"], ["she", "was"], ["position", "was"], ["aim", "was"], ["Yasir", "was"], ["wave", "was"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["diseases", "registered rise"], ["nation", "live"], ["who", "live"], ["parents", "were"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["vehicles", "left station"], ["notification", "issued"], ["cargo", "dock"], ["notification", "instructed hospitals"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["agency", "said"], ["Ismail", "confirmed"], ["victim", "belonged"], ["SHO", "admitted"], ["examination", "confirmed"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["CTD", "Organization"], ["Organisation", "said"], ["Officials", "told Dawn"], ["ban", "imposed"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["CTD", "Organization"], ["players", "competing"], ["Organisation", "said"], ["Pakistan", "stepped efforts"], ["Pakistan", "bound"], ["Pakistan", "appears ninth"], ["players", "include Push\u00adpika"], ["Pakistan", "be"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["agency", "said"], ["exports", "stood"], ["Pakistan", "stepped efforts"], ["Pakistan", "moving"], ["Pakistan", "appears ninth"], ["Pakistan", "be"], ["exports", "posted growth"], ["Pakistan", "carried trade"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Eidul Fitr", "Person"], ["congregations", "held"], ["bench", "held"], ["Bajwa", "held accountable"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["CTD", "Organization"], ["PTI", "Organization"], ["the Supreme Court", "Organization"], ["CTD", "Organization"], ["government", "providing support"], ["order", "remain"], ["government", "offer opportunities"], ["government", "slashed Programme"], ["government", "ended lockdown"], ["government", "made efforts"], ["appointment", "illegal"], ["Pakistan", "Location"], ["Punjab", "Location"], ["the Supreme Court", "Organization"], ["CTD", "Organization"], ["Organisation", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["the Supreme Court", "Organization"], ["CTD", "Organization"], ["attempt", "remained"], ["vehicles", "allowed"], ["vehicles", "allowed"], ["Toyota", "extend Ltd"], ["Pakistan", "Location"], ["Punjab", "Location"], ["the Supreme Court", "Organization"], ["Eidul Fitr", "Person"], ["agents", "played role"], ["management", "ensured"], ["Pakistan", "Location"], ["Punjab", "Location"], ["the Supreme Court", "Organization"], ["Eidul Fitr", "Person"], ["government", "is"], ["teams", "constituted"], ["government", "rid it"], ["Chairman", "complained"], ["Sadiq", "insisted"], ["Sadiq", "contacted Chaudhry"], ["government", "ended lockdown"], ["people", "took"], ["government", "made efforts"], ["teams", "conducted operation"], ["Sanjrani", "acting"], ["army", "took"], ["PTI", "Organization"], ["CDA", "Organization"], ["Honda", "Organization"], ["Khyber", "Location"], ["court", "suspended operation"], ["government", "put"], ["Khan", "was leader"], ["Khan", "ordered restoration"], ["Yasir", "put"], ["Pakistan", "Location"], ["Punjab", "Location"], ["the Supreme Court", "Organization"], ["Eidul Fitr", "Person"], ["We", "demanded"], ["general", "demanded"], ["PTI", "Organization"], ["CDA", "Organization"], ["Honda", "Organization"], ["Khyber", "Location"], ["Sheet", "ended"], ["Pakistan", "exported tonnes"], ["Pakistan", "having difficulty"], ["government", "rid it"], ["government", "slashed Programme"], ["government", "put"], ["government", "formed"], ["Pakistan", "appears ninth"], ["government", "ended lockdown"], ["Pakistan", "accepted"], ["government", "made efforts"], ["government", "using tactics"], ["Taliban", "claimed responsibility"], ["Pakistan", "play dayer"], ["PTI", "Organization"], ["CDA", "Organization"], ["Honda", "Organization"], ["Khyber", "Location"], ["judgement", "reported"], ["witnesses", "reported conflict"], ["PTI", "Organization"], ["CDA", "Organization"], ["Honda", "Organization"], ["Chairman", "complained"], ["who", "disappeared"], ["Pakistan", "Location"], ["Punjab", "Location"], ["the Supreme Court", "Organization"], ["Honda", "Organization"], ["Organisation", "said"], ["others", "given aid"], ["others", "are"], ["PTI", "Organization"], ["CDA", "Organization"], ["Khyber", "Location"], ["incident", "reported"], ["officials", "added"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["SC", "Organization"], ["Honda", "Organization"], ["Khan", "written letters"], ["Khan", "awarded ticket"], ["Khan", "was leader"], ["speaker", "asked head"], ["PAC", "maintained"], ["Khan", "ordered restoration"], ["session", "termed orders"], ["Khan", "moved Court"], ["PTI", "Organization"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber", "Location"], ["by", "recommended"], ["reward", "recommended"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["SC", "Organization"], ["Honda", "Organization"], ["Organisation", "said"], ["operation", "began"], ["up", "continue"], ["actors", "continue"], ["fight", "continue"], ["encroachments", "removed"], ["PTI", "Organization"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber", "Location"], ["Farooq", "issued notices"], ["rulers", "were"], ["Dawn", "understands"], ["Mustafa", "were"], ["attempts", "were"], ["politicians", "were"], ["truck", "coming"], ["Ayesha", "were"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["SC", "Organization"], ["Honda", "Organization"], ["Organisation", "said"], ["He", "assured"], ["applications", "submitted"], ["commissioner", "attended Convention"], ["they", "assured"], ["PTI", "Organization"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber", "Location"], ["We", "demanded"], ["Wahab", "demanded"], ["general", "demanded"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["SC", "Organization"], ["agency", "said"], ["Pakistan", "exported tonnes"], ["Pakistan", "having difficulty"], ["Pakistan", "had"], ["Pakistan", "bound"], ["Pakistan", "cooperated"], ["Pakistan", "remain"], ["Pakistan", "placed order"], ["Pakistan", "considering"], ["Pakistan", "play dayer"], ["areas", "affected"], ["Pakistan", "participating"], ["Germany", "help Pakistan"], ["Germany", "cooperate"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["SC", "Organization"], ["Bank", "committed billion"], ["Bank", "expected"], ["Bank", "assured him"], ["PTI", "Organization"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber", "Location"], ["project", "miss deadline"], ["project", "received response"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber", "Location"], ["Organisation", "said"], ["children", "reporting"], ["unit", "conduct survey"], ["children", "reached"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["SC", "Organization"], ["Shah", "accompanied minister"], ["Shah", "told police"], ["Soomro", "filed comments"], ["Soomro", "stated this"], ["Nasir", "told Dawn"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber", "Location"], ["Irfan", "stated"], ["She", "stated"], ["by", "suffered"], ["resident", "stated"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["SC", "Organization"], ["by", "assisted"], ["General", "handed flag"], ["General", "continue"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["SC", "Organization"], ["houses", "damaged"], ["roofs", "collapsed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["SC", "Organization"], ["bodies", "rushed"], ["She", "taken"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["SC", "Organization"], ["He", "admitted"], ["Ahmed", "admitted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["SC", "Organization"], ["Lahore", "is one"], ["chairman", "gave presentation"], ["by", "booked"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["SC", "Organization"], ["platform", "be"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Khyber", "Location"], ["petitioners", "challenged decision"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khyber", "Location"], ["national", "set free"], ["developers", "establish interchanges"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["Haq", "hinted"], ["Haq", "declared it"], ["Road", "corridor"], ["Road", "be accessroadwhich"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["that", "provided"], ["by", "provided"], ["Tahir", "is person"], ["by", "provided"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["indicators", "playing"], ["applications", "received"], ["child", "had system"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khyber", "Location"], ["minister", "considered"], ["sources", "confided"], ["minister", "asked CBA"], ["DPO", "formed teams"], ["chief", "extended wishes"], ["Ahmed", "admitted"], ["chief", "claims life"], ["Ahmed", "inspected scene"], ["Ahmed", "performing duty"], ["Mohammad", "transferred"], ["Hussain", "transferred"], ["Saeed", "transferred"], ["sources", "told Dawn"], ["Ahmed", "assigned probe"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khyber", "Location"], ["Organisation", "said"], ["Aurangzeb", "confirmed"], ["examination", "confirmed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khyber", "Location"], ["report", "noted"], ["Isa", "asked"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["report", "accompanied"], ["report", "needs"], ["voices", "raised"], ["ministry", "facing shortage"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["SC", "Organization"], ["report", "accompanied"], ["report", "needs"], ["congregations", "held"], ["court", "direct FBR"], ["report", "noted"], ["report", "based"], ["inquiry", "held"], ["prayer", "held"], ["ECP", "tells consultation"], ["report", "came"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["by", "reviewed"], ["people", "work"], ["people", "study"], ["Sindh", "decided"], ["people", "shifted"], ["chief", "decided"], ["by", "decided"], ["managers", "decided"], ["by", "decided"], ["matter", "remains"], ["Bureau", "decided"], ["We", "decided"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["conversation", "denied"], ["SBC", "mentioned"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["Sindh", "decided"], ["launch", "enjoy elections"], ["operation", "was solution"], ["Authority", "decided"], ["managers", "decided"], ["by", "decided"], ["managers", "decided"], ["meeting", "approved proposal"], ["which", "decided"], ["it", "decided"], ["Bureau", "decided"], ["it", "decided"], ["chiefs", "held meeting"], ["This", "decided"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["constable", "laid"], ["rest", "are"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["Department", "confiscated bags"], ["Department", "intimidating farmers"], ["Department", "provided digest"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["theft", "committed"], ["period", "begins"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["leader", "escorted"], ["PPP", "play role"], ["minister", "came"], ["brother", "allotted ticket"], ["PPP", "supported cause"], ["minister", "was who"], ["Afridi", "charged"], ["judge", "appointed"], ["minister", "plans"], ["Afridi", "appointed assistant"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["which", "registered"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["Shah", "fired 69"], ["Shah", "accompanied minister"], ["event", "inaugurated"], ["Khan", "told reporters"], ["Shah", "told police"], ["Jabal", "spoke"], ["Shah", "told reporters"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["project", "mired"], ["project", "provide opportunity"], ["he", "planned"], ["project", "approved"], ["project", "received response"], ["Hidayatullah", "targeted"], ["project", "taken lists"], ["project", "reduce productivity"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["some", "registered"], ["FIR", "included section"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["event", "inaugurated"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khan", "written letters"], ["Khan", "awarded ticket"], ["Khan", "told reporters"], ["Khan", "expressed fears"], ["Khan", "interviewed aspirants"], ["Mohammad", "transferred"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["complications", "began"], ["operation", "began"], ["hospitals", "began"], ["price", "recorded"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["agency", "said"], ["child", "lost eye"], ["They", "identified"], ["He", "identified"], ["victim", "identified"], ["victim", "identified"], ["child", "had system"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["government", "is"], ["Organisation", "said"], ["government", "rid it"], ["government", "slashed Programme"], ["government", "put"], ["government", "formed"], ["government", "empowered"], ["government", "solve challenges"], ["government", "using tactics"], ["government", "is"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["agency", "said"], ["Organisation", "said"], ["PTI", "stands"], ["PTI", "posted"], ["chief", "decided"], ["chief", "made call"], ["Pakhtunkhwa", "take place"], ["sabotage", "ruled"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["management", "presents challenges"], ["management", "recognise liability"], ["management", "reserved wards"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khan", "written letters"], ["Organisation", "said"], ["PTI", "constituted committees"], ["Khan", "facilitated leaders"], ["leader", "escorted"], ["He", "briefed"], ["party", "launch campaign"], ["Khan", "refused"], ["PTI", "stands"], ["PTI", "requested SC"], ["PTI", "posted"], ["Khan", "told reporters"], ["Khan", "told reporters"], ["Khan", "expressed fears"], ["chairman", "directed ministry"], ["PTI", "failed"], ["chairman", "wrote letters"], ["Khan", "moved Court"], ["leader", "warned"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["agency", "said"], ["people", "evacuated"], ["total", "evacuated"], ["Talpur", "come"], ["who", "evacuated"], ["one", "come"], ["who", "living"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["SC", "Organization"], ["Organisation", "said"], ["cabinet", "formed"], ["government", "formed"], ["Court", "clarified limits"], ["Court", "comprised justice"], ["Court", "suspended notification"], ["Court", "issued notices"], ["who", "elevated"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["ECP", "Organization"], ["rate", "increased"], ["which", "increased"], ["influx", "increased"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["printer", "tested"], ["travellers", "tested negative"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Islamabad", "Location"], ["PPP", "Organization"], ["children", "inoculated"], ["anonymity", "added"], ["officials", "added"], ["risk", "reduced"], ["children", "reached"], ["children", "died"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["Organisation", "said"], ["he", "shifted"], ["injured", "shifted"], ["people", "shifted"], ["persons", "drowned"], ["Usman", "shifted"], ["injured", "shifted"], ["persons", "emerged"], ["persons", "kidnapped"], ["persons", "lost lives"], ["three", "shifted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["agency", "said"], ["which", "connected"], ["court", "suspended operation"], ["MNA", "said"], ["million", "recovered"], ["court", "functioning"], ["road", "connected"], ["statement", "quoted her"], ["court", "closed proceedings"], ["MNA", "said"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["PPP", "Organization"], ["officer", "told Dawn"], ["officer", "receiving guests"], ["team", "established"], ["police", "shifted him"], ["officer", "issued statement"], ["residence", "raided"], ["Ilyas", "disqualified"], ["team", "made"], ["officer", "appreciated role"], ["team", "visited institution"], ["by", "led"], ["by", "led"], ["that", "led"], ["that", "led"], ["by", "led"], ["by", "led"], ["which", "led"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["station", "registered case"], ["officials", "added"], ["guests", "resorted"], ["station", "registered case"], ["general", "added"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["PPP", "Organization"], ["agency", "said"], ["Review", "said"], ["MNA", "said"], ["Humna", "combined"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["PPP", "Organization"], ["incident", "reported"], ["wife", "replied"], ["police", "shifted him"], ["deceased", "was offender"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["Amritpal", "arrested"], ["child", "died"], ["who", "arrested"], ["bodies", "recovered"], ["residences", "raided"], ["by", "raided"], ["bodies", "recovered"], ["Gandapur", "arrested"], ["scores", "took"], ["child", "has travel"], ["Residents", "took"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["PPP", "Organization"], ["situation", "serve"], ["situation", "getting"], ["ruling", "given"], ["situation", "tackled"], ["situation", "evolving"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["PTI", "constituted committees"], ["bench", "declared"], ["party", "launch campaign"], ["PTI", "stands"], ["PTI", "is"], ["PTI", "seeks investigation"], ["PTI", "dismissed"], ["part", "picked"], ["PTI", "disputed reports"], ["meeting", "appreciated role"], ["Ahmed", "admitted"], ["PTI", "finalised list"], ["PTI", "failed"], ["Ahmed", "inspected scene"], ["PTI", "is"], ["Ahmed", "performing duty"], ["meeting", "deliberated improvements"], ["doctors", "declared"], ["it", "considered"], ["PTI", "condemned raid"], ["PTI", "ruled Pakhtunkhwa"], ["Ahmed", "conducted meeting"], ["those", "considered"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["PPP", "Organization"], ["Shaf\u00adiullah", "stated"], ["president", "wanted"], ["Constitution", "fell victim"], ["She", "stated"], ["He", "stated"], ["It", "stated"], ["ADB", "stated"], ["Jameel", "stated"], ["president", "regretted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["people", "implicated"], ["people", "work"], ["people", "study"], ["people", "evacuated"], ["people", "shifted"], ["people", "visited Museum"], ["victims", "lived"], ["people", "took"], ["media", "highlight issues"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["colleagues", "taken"], ["reservations", "addressed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["reason", "was cylinder"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["PPP", "Organization"], ["some", "registered"], ["Punjab", "has history"], ["FIRs", "registered"], ["Inspector", "started investigation"], ["Raza", "told audience"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["Organisation", "said"], ["Haque", "said"], ["Sher", "said"], ["houses", "damaged"], ["conspiracy", "was"], ["Pakhtuns", "tolerate terrorism"], ["Pakhtuns", "declared"], ["Pakhtuns", "allow killing"], ["Pakistan", "Location"], ["Punjab", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Islamabad", "Location"], ["PPP", "Organization"], ["Gill", "denied ticket"], ["who", "spoke"], ["NCJP", "conducted research"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Islamabad", "Location"], ["PPP", "Organization"], ["institute", "provide training"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Islamabad", "Location"], ["PPP", "Organization"], ["minister", "considered"], ["minister", "talked"], ["minister", "came"], ["minister", "extended support"], ["minister", "advised"], ["minister", "was who"], ["minister", "talking"], ["minister", "been"], ["minister", "plans"], ["minister", "directed corporations"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Islamabad", "Location"], ["PPP", "Organization"], ["loans", "surged"], ["crisis", "occurs"], ["one", "arrived"], ["one", "noticed them"], ["one", "come"], ["one", "recommended FIR"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["SC", "Organization"], ["agency", "said"], ["Khokhar", "transferred"], ["agency", "offer plots"], ["Mohammad", "transferred"], ["Usman", "transferred"], ["Ayaz", "transferred"], ["Muzaffar", "transferred"], ["funds", "transferred"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Islamabad", "Location"], ["PPP", "Organization"], ["officials", "assigned duties"], ["members", "died"], ["members", "offered prayers"], ["members", "spoke"], ["members", "making mockery"], ["protests", "attended"], ["members", "continued tirade"], ["members", "injured"], ["community", "cover government"], ["members", "bombarded him"], ["workshop", "aimed"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["Shah", "appeared"], ["father", "appeared"], ["bench", "appeared"], ["cracks", "appeared"], ["Butt", "appeared"], ["passing", "appeared"], ["accused", "appeared"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["body", "dispatched"], ["family", "visited Market"], ["family", "going"], ["body", "bore wounds"], ["family", "going"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["which", "go"], ["owners", "encroached areas"], ["authorities", "asked"], ["administration", "fixed rates"], ["Isa", "asked"], ["administration", "imposed section"], ["administration", "suspended Ali"], ["land", "reduced"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "made"], ["projects", "made"], ["police", "shifted him"], ["complaints", "made"], ["team", "made"], ["hearing", "covered"], ["case", "made"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["SC", "Organization"], ["Organisation", "said"], ["Haque", "said"], ["Minhas", "added"], ["Gondal", "said"], ["Sher", "said"], ["people", "deserved assistance"], ["people", "live"], ["people", "turned"], ["agriculture", "suffering"], ["Langer", "added"], ["people", "visited Museum"], ["integrity", "taken"], ["officials", "added"], ["people", "announced"], ["Khosa", "suffering"], ["people", "took"], ["people", "belonged"], ["Mughal", "said"], ["Maulana", "added"], ["she", "added"], ["general", "added"], ["Ishaq", "added"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Punjab", "has history"], ["government", "put"], ["elements", "conspiring"], ["militants", "carried attack"], ["which", "put"], ["militants", "gunned"], ["CTD", "pursuing goal"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["government", "is"], ["am", "is"], ["economy", "is"], ["Land", "is"], ["goal", "is"], ["generation", "is"], ["PSB", "is"], ["Sector", "is"], ["operation", "is"], ["reality", "is"], ["circuit", "is"], ["which", "is"], ["Vaccine", "is"], ["government", "is"], ["objective", "is"], ["patient", "is"], ["children", "learn"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["mpox", "Organization"], ["police", "sought remand"], ["FIRs", "registered"], ["police", "shifted him"], ["case", "instituted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["Little", "known"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["agency", "said"], ["Review", "said"], ["Gondal", "said"], ["MNA", "said"], ["Punjab", "completed studies"], ["Officials", "say"], ["results", "shown"], ["Council", "jumped"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["action", "ordered"], ["they", "kept"], ["DC", "ordered"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["mpox", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["growers", "raise hue"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["some", "registered"], ["police", "sought remand"], ["Ahmad", "appeared"], ["Punjab", "has history"], ["FIRs", "registered"], ["police", "opened fire"], ["section", "rescued cat"], ["entries", "registered"], ["Raza", "contributed"], ["FIR", "registered"], ["Raza", "told audience"], ["case", "made"], ["FIR", "registered"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["mpox", "Organization"], ["lawyer", "contended"], ["Ltd", "contended"], ["Constitution", "imposed restrictions"], ["vehicles", "allowed"], ["They", "contended"], ["petitioners", "contended"], ["counsel", "contended"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["mpox", "Organization"], ["report", "needs"], ["anonymity", "added"], ["It", "added"], ["needs", "is consideration"], ["Langer", "added"], ["officials", "added"], ["they", "added"], ["they", "added"], ["spokesman", "added"], ["He", "added"], ["matter", "reported"], ["matter", "remains"], ["He", "added"], ["lot", "needs"], ["they", "added"], ["He", "added"], ["It", "added"], ["He", "added"], ["Ishaq", "added"], ["He", "added"], ["matter", "been"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["threat", "is"], ["Pakistan", "facing"], ["rainfall", "expected"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["agency", "said"], ["Review", "said"], ["Gondal", "said"], ["MNA", "said"], ["Sanjrani", "acting"], ["facing", "utilised"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["Organisation", "said"], ["Haque", "said"], ["Sher", "said"], ["Fawad", "said"], ["MNA", "said"], ["dialogue", "stands"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["officials", "assigned duties"], ["Police", "claimed"], ["teams", "deputed"], ["Police", "recovered pistols"], ["officials", "searched house"], ["they", "started"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Khan", "written letters"], ["Khan", "was"], ["Khan", "awarded ticket"], ["Khan", "killed"], ["Khan", "was"], ["Khan", "refused"], ["PTI", "stands"], ["Ali", "shot"], ["PTI", "renews call"], ["PTI", "renewed calls"], ["PTI", "dismissed"], ["PTI", "posted"], ["Khan", "was leader"], ["Khan", "told reporters"], ["Khan", "drowned"], ["Khan", "ordered restoration"], ["Ali", "injured"], ["PTI", "made efforts"], ["PTI", "move court"], ["PTI", "made mistakes"], ["Khan", "interviewed aspirants"], ["PTI", "believed that"], ["Khan", "moved Court"], ["PTI", "represented"], ["Khan", "examined area"], ["PTI", "approach court"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["agency", "said"], ["Review", "said"], ["FIR", "registered"], ["FIR", "registered"], ["law", "enforced"], ["Satti", "said"], ["Gondal", "said"], ["which", "registered"], ["MNA", "said"], ["law", "be buzzword"], ["FIRs", "registered"], ["sitting", "began"], ["entries", "registered"], ["Mughal", "said"], ["FIR", "registered"], ["FIR", "registered"], ["case", "instituted"], ["FIR", "registered"], ["it", "began"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["judges", "initiate proceeding"], ["judges", "remained"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["official", "wondered"], ["incident", "reported"], ["official", "disclosed"], ["report", "shows"], ["E-12", "launched"], ["by", "launched"], ["report", "offers recommendations"], ["official", "shared"], ["study", "launched"], ["official", "told reporters"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["agency", "said"], ["Review", "said"], ["Satti", "said"], ["Sher", "said"], ["Fawad", "said"], ["development", "came"], ["country", "going"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Sindh", "Location"], ["PPP", "Organization"], ["SC", "Organization"], ["race", "looks affair"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Exceptions", "saying"], ["country", "going"], ["that", "supporting"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["Sindh", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["officers", "working"], ["caretakers", "stay"], ["patient", "arrived"], ["We", "working"], ["cabinet", "told"], ["companies", "working"], ["patient", "is"], ["government", "working"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["SC", "Organization"], ["which", "go"], ["land", "misused"], ["cattle", "belonged"], ["land", "reduced"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["the Supreme Court", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["SC", "Organization"], ["mpox", "Organization"], ["Ali", "shot"], ["Ali", "joined department"], ["Siyal", "confirmed number"], ["Siyal", "proved himself"], ["Sindh", "has categories"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["Imran Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["Pakistan", "exported tonnes"], ["Pakistan", "having difficulty"], ["Pakistan", "had"], ["Institute", "started project"], ["Pakistan", "experienced number"], ["Pakistan", "cooperated"], ["Pakistan", "remain"], ["Pakistan", "placed order"], ["Pakistan", "placed order"], ["Pakistan", "considering"], ["Pakistan", "play dayer"], ["Pakistan", "dealing"], ["Pakistan", "facing"], ["Pakistan", "amending laws"], ["Pakistan", "overcome challenge"], ["Pakistan", "maintains policy"], ["research", "shows"], ["writer", "is assistant"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["SC", "Organization"], ["mpox", "Organization"], ["Organisation", "said"], ["Haque", "said"], ["Satti", "said"], ["Lahore", "is one"], ["Sher", "said"], ["location", "starting"], ["Mughal", "said"], ["Islamabad", "avoid"], ["movement", "starting"], ["PTI", "Organization"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["Islamabad", "Location"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["report", "accompanied"], ["Lahore", "wrote letter"], ["Lahore", "is one"], ["Mansoor", "identified policemen"], ["report", "based"], ["report", "offers recommendations"], ["Raza", "contributed"], ["Shahid", "contributed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Islamabad", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["women", "detained"], ["accident", "occurred"], ["accident", "happened"], ["accident", "took place"], ["area", "involved provinces"], ["seat", "fell"], ["suggestion", "followed"], ["by", "followed"], ["by", "followed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Islamabad", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["Organisation", "said"], ["Azhar", "said"], ["Satti", "said"], ["Sher", "said"], ["policemen", "paid"], ["Fawad", "said"], ["commerce", "reflects one"], ["lawyer", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Islamabad", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["police", "saying"], ["police", "took him"], ["police", "opened fire"], ["police", "arrested youths"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["notification", "issued"], ["notification", "withdrawn"], ["Market", "lacked buyers"], ["Market", "falls"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["government", "is"], ["Organisation", "said"], ["government", "providing support"], ["government", "working"], ["Satti", "said"], ["government", "asked RDA"], ["government", "offer opportunities"], ["MNA", "said"], ["government", "considering idea"], ["government", "put"], ["government", "formed"], ["government", "goes"], ["government", "ended lockdown"], ["government", "made efforts"], ["government", "deputed teams"], ["government", "assured party"], ["Mughal", "said"], ["government", "asked Unit"], ["government", "notified transfer"], ["lawyer", "said"], ["government", "working"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["She", "claimed"], ["Police", "claimed"], ["Police", "joined police"], ["Police", "recovered pistols"], ["management", "claimed"], ["they", "claimed"], ["who", "nominated"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["police", "sought remand"], ["police", "saying"], ["court", "direct FBR"], ["police", "took him"], ["police", "killing men"], ["police", "opened fire"], ["police", "shifted him"], ["who", "arrested"], ["court", "was"], ["court", "wanted"], ["police", "arrested youths"], ["court", "closed proceedings"], ["Gandapur", "arrested"], ["persons", "arrested"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["Alvi", "urged countrymen"], ["ceremony", "attended"], ["Alvi", "refused"], ["PTI", "Organization"], ["Dawn", "Person"], ["CDA", "Organization"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["agency", "said"], ["Review", "said"], ["ECP", "extended date"], ["Haque", "said"], ["Gondal", "said"], ["MNA", "said"], ["Langer", "said"], ["batter", "said"], ["Randhawa", "said"], ["ECP", "tells consultation"], ["Mughal", "said"], ["Khuhro", "said"], ["lawyer", "said"], ["nazim", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["CDA", "Organization"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["police", "sought remand"], ["police", "saying"], ["police", "killing men"], ["police", "opened fire"], ["police", "arrested Ahmed"], ["matter", "reported"], ["matter", "remains"], ["matter", "reviewed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["CDA", "Organization"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["Iqbal", "wounded"], ["Iqbal", "sustained injuries"], ["University", "established centre"], ["University", "asked hospitals"], ["Bakhtawari", "stressed"], ["Iqbal", "directed governments"], ["Educationists", "stressed"], ["PTI", "Organization"], ["Dawn", "Person"], ["Karachi", "Location"], ["Balochistan", "Location"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["India", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["agency", "said"], ["Review", "said"], ["Azhar", "said"], ["Satti", "said"], ["work", "given hope"], ["RDA", "construct corridor"], ["people", "work"], ["MNA", "said"], ["Langer", "said"], ["RDA", "made plan"], ["Rana", "said"], ["RDA", "made plan"], ["Abbas", "said"], ["Fawad", "said"], ["Khuhro", "said"], ["arrangements", "completed"], ["MNA", "said"], ["by", "completed"], ["PTI", "go"], ["RDA", "awarded contract"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["CDA", "Organization"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["some", "registered"], ["FIR", "registered"], ["implementation", "suspended"], ["which", "registered"], ["team", "established"], ["they", "informed"], ["member", "laid area"], ["team", "take learning"], ["entries", "registered"], ["He", "suspended"], ["team", "stopped motorcyclist"], ["media", "was source"], ["team", "made"], ["team", "participate"], ["team", "visited institution"], ["FIR", "mentioned speeches"], ["FIR", "registered"], ["FIR", "registered"], ["he", "informed"], ["by", "suspended"], ["team", "takes that"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["leader", "remanded"], ["leader", "admitted"], ["leader", "demanded"], ["leader", "implicated"], ["it", "become"], ["leader", "warns"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["Organisation", "said"], ["Azhar", "said"], ["Satti", "said"], ["Sher", "said"], ["Wire", "said"], ["Langer", "said"], ["day", "drowned"], ["Rana", "said"], ["batter", "said"], ["increase", "benefit tourists"], ["Abbas", "said"], ["Fawad", "said"], ["Khuhro", "said"], ["MNA", "said"], ["nazim", "said"], ["position", "declining"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["Company", "announced"], ["people", "announced"], ["teachers", "killed"], ["majority", "had knowledge"], ["majority", "become tools"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["Pakistan", "stepped efforts"], ["Pakistan", "moving"], ["Pakistan", "had"], ["growth", "be"], ["Pakistan", "experienced number"], ["Pakistan", "cooperated"], ["Pakistan", "remain"], ["Pakistan", "placed order"], ["Pakistan", "placed order"], ["Pakistan", "considering"], ["Pakistan", "play dayer"], ["Pakistan", "dealing"], ["Pakistan", "facing"], ["Pakistan", "amending laws"], ["Pakistan", "overcome challenge"], ["Pakistan", "play"], ["Pakistan", "participating"], ["Pakistan", "was market"], ["Pakistan", "placed order"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["project", "remained"], ["counsel", "was"], ["slot", "was"], ["Khan", "was"], ["perceptions", "was"], ["plan", "was"], ["he", "was"], ["movement", "was"], ["he", "was"], ["SRO", "was"], ["family", "was"], ["by", "launched"], ["he", "was"], ["project", "described"], ["SHO", "asked"], ["Balochistan", "was"], ["crop", "was"], ["conversation", "was"], ["inquiry", "was"], ["work", "was"], ["project", "shelved"], ["scale", "was"], ["Fishermen", "asked"], ["judgment", "was"], ["she", "was"], ["flyover", "was"], ["clearance", "was"], ["it", "was"], ["it", "was"], ["project", "received response"], ["authorities", "asked"], ["it", "was"], ["it", "was"], ["one", "was"], ["he", "was"], ["court", "was"], ["it", "was"], ["everything", "was"], ["it", "was"], ["appointment", "was"], ["department", "was"], ["Yasir", "was"], ["it", "was"], ["society", "was"], ["he", "was"], ["witnessed", "was"], ["project", "taken lists"], ["one", "was"], ["he", "was"], ["it", "was"], ["Jameel", "was"], ["project", "promote tourism"], ["delimitation", "was"], ["he", "was"], ["Shafiq", "was"], ["extremism", "was"], ["that", "was"], ["he", "was"], ["Party", "was"], ["audio", "was"], ["Bahadur", "was"], ["who", "was"], ["by", "launched"], ["he", "was"], ["project", "launched"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Lahore", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["SC", "Organization"], ["mpox", "Organization"], ["Organisation", "said"], ["Azhar", "said"], ["Satti", "said"], ["Gondal", "said"], ["congregations", "held"], ["MNA", "said"], ["Langer", "said"], ["Sanaullah", "said"], ["Rana", "said"], ["inquiry", "held"], ["batter", "said"], ["Nasir", "said"], ["Randhawa", "said"], ["Fawad", "said"], ["Khuhro", "said"], ["lawyer", "said"], ["rally", "held"], ["nazim", "said"], ["Conference", "held"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["agency", "said"], ["Review", "said"], ["Chughtai", "said"], ["CPO", "said"], ["Minhas", "said"], ["Dehwar", "said"], ["Sher", "said"], ["census", "damaged interests"], ["Wire", "said"], ["Langer", "said"], ["Sanaullah", "said"], ["Gul", "said"], ["Rana", "said"], ["batter", "said"], ["access", "denied"], ["secretary", "stated"], ["Abbas", "said"], ["Fawad", "said"], ["Raees", "said"], ["secretary", "informed"], ["lawyer", "said"], ["nazim", "said"], ["Sindh", "has categories"], ["census", "was"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["police", "sought remand"], ["police", "saying"], ["police", "taken Singh"], ["department", "wanted"], ["police", "picketed road"], ["police", "got off"], ["police", "arrested Ahmed"], ["department", "was"], ["blasts", "happened"], ["department", "issued alert"], ["police", "announced bounty"], ["department", "started procurement"], ["police", "arrested youths"], ["attack", "came"], ["department", "was"], ["department", "issued alert"], ["possibility", "ruled"], ["blasts", "occurred"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["funds", "released"], ["by", "including"], ["funds", "transferred"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["agency", "said"], ["Review", "said"], ["Chughtai", "said"], ["boy", "said"], ["Haque", "said"], ["Satti", "said"], ["Dehwar", "said"], ["Sher", "said"], ["Wire", "said"], ["workers", "fired"], ["Sanaullah", "said"], ["Rana", "said"], ["general", "demanded"], ["system", "extended"], ["increase", "benefit tourists"], ["bail", "extended"], ["Randhawa", "said"], ["Mughal", "said"], ["circles", "demanded"], ["workers", "provided woman"], ["MNA", "said"], ["lawyer", "said"], ["nazim", "said"], ["workers", "have access"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["CTD", "Organization"], ["Organisation", "said"], ["Azhar", "said"], ["Chughtai", "said"], ["CPO", "said"], ["Minhas", "said"], ["Dehwar", "said"], ["Sher", "said"], ["houses", "damaged"], ["Langer", "said"], ["Gul", "said"], ["Rana", "said"], ["batter", "said"], ["Nasir", "said"], ["Randhawa", "said"], ["Mughal", "said"], ["professionals", "said"], ["by", "set"], ["team", "said"], ["MNA", "said"], ["lawyer", "said"], ["mob", "damaged"], ["PESHAWAR", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["stands", "identified"], ["meeting", "held"], ["They", "identified"], ["meeting", "held"], ["meeting", "lend strength"], ["meeting", "discuss possibility"], ["victim", "identified"], ["He", "identified"], ["meeting", "learnt"], ["meeting", "approved appointment"], ["meeting", "apprised"], ["They", "identified"], ["meeting", "appreciated role"], ["victim", "identified"], ["deceased", "identified"], ["meeting", "discussed arrangements"], ["meeting", "decided"], ["deceased", "identified"], ["meeting", "resolved"], ["meeting", "decided"], ["meeting", "held"], ["meeting", "held"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["CTD", "Organization"], ["Organisation", "said"], ["Azhar", "said"], ["Chughtai", "said"], ["CPO", "said"], ["police", "sought remand"], ["Lal", "said"], ["Satti", "said"], ["Dehwar", "said"], ["police", "saying"], ["residents", "said"], ["Sher", "said"], ["police", "taken Singh"], ["police", "took him"], ["Mir", "said"], ["Langer", "said"], ["approval", "said"], ["operation", "was solution"], ["police", "picketed road"], ["police", "got off"], ["police", "shifted him"], ["Sanaullah", "said"], ["police", "found"], ["Rana", "said"], ["police", "participate"], ["wing", "said"], ["police", "announced bounty"], ["Nasir", "said"], ["Randhawa", "said"], ["Fawad", "said"], ["Raees", "said"], ["Khuhro", "said"], ["fight", "continue"], ["team", "said"], ["General", "continue"], ["lawyer", "said"], ["negotiations", "continue"], ["Hussain", "said"], ["nazim", "said"], ["colleagues", "freed"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["CTD", "Organization"], ["agency", "said"], ["Review", "said"], ["Chughtai", "said"], ["boy", "said"], ["Haque", "said"], ["women", "were"], ["cases", "were"], ["vote", "counted"], ["Satti", "said"], ["Dehwar", "said"], ["individuals", "counted"], ["raids", "were"], ["residents", "said"], ["Sher", "said"], ["Bangle", "said"], ["Mir", "said"], ["Mustafa", "were"], ["approval", "said"], ["Hussain", "were"], ["Information", "said"], ["Haq", "were"], ["Gul", "said"], ["Hussain", "said"], ["Rana", "said"], ["batter", "said"], ["assets", "were"], ["Khoso", "said"], ["Nasir", "said"], ["Randhawa", "said"], ["Hussain", "said"], ["it", "counted"], ["Mughal", "said"], ["professionals", "said"], ["authorities", "were"], ["reports", "said"], ["parents", "were"], ["wing", "said"], ["wing", "said"], ["MNA", "said"], ["It", "said"], ["Farooq", "treated"], ["ones", "were"], ["Hussain", "said"], ["Controller", "were"], ["Hussain", "said"], ["father", "were"], ["which", "were"], ["MPAs", "were"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["owner", "run"], ["condition", "stated"], ["condition", "stated"], ["they", "run"], ["facing", "utilised"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["Nawaz", "criticised judge"], ["Chaudhry", "took notice"], ["Chaudhry", "told presser"], ["Chaudhry", "claimed"], ["Ali", "injured"], ["Chaudhry", "approved establishment"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["report", "accompanied"], ["report", "noted"], ["report", "based"], ["report", "came"], ["report", "prepared"], ["fact", "admitted"], ["PTI", "Organization"], ["Karachi", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["PPP", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["CTD", "Organization"], ["Pakistan", "exported rice"], ["Pakistan", "having difficulty"], ["support", "hyped"], ["Pakistan", "book deficit"], ["Pakistan", "experienced number"], ["Pakistan", "cooperated"], ["Pakistan", "faced"], ["Pakistan", "placed order"], ["Pakistan", "placed order"], ["Pakistan", "considering"], ["Pakistan", "play dayer"], ["Pakistan", "dealing"], ["Pakistan", "has vaccine"], ["Pakistan", "made progress"], ["Pakistan", "provided authorities"], ["Pakistan", "need training"], ["Pakistan", "is member"], ["Pakistan", "had position"], ["Pakistan", "had children"], ["Pakistan", "had"], ["Pakistan", "was"], ["Pakistan", "try"], ["Pakistan", "has ability"], ["Pakistan", "was"], ["Pakistan", "is member"], ["PTI", "Organization"], ["Karachi", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["PPP", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["CTD", "Organization"], ["deployment", "made"], ["KP", "utilised worth"], ["discussions", "made"], ["BoR", "made"], ["team", "made"], ["by", "made"], ["by", "made"], ["progress", "made"], ["commitments", "made"], ["case", "made"], ["KP", "was"], ["transactions", "made"], ["efforts", "made"], ["parents", "made"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["government", "is"], ["Organisation", "said"], ["government", "providing support"], ["government", "working"], ["Chughtai", "said"], ["Hamdani", "said"], ["It", "said"], ["Lal", "said"], ["Lal", "said"], ["Minhas", "said"], ["Dehwar", "said"], ["government", "wanted"], ["government", "rid it"], ["residents", "said"], ["It", "said"], ["government", "cleared dues"], ["Bangle", "said"], ["government", "handled situation"], ["government", "slashed Programme"], ["conditions", "implemented"], ["verdict", "said"], ["approval", "said"], ["government", "put"], ["government", "formed"], ["government", "functioned"], ["Irfan", "said"], ["Sanaullah", "said"], ["government", "empowered"], ["DG", "said"], ["Gul", "said"], ["government", "decide"], ["government", "ended lockdown"], ["Rana", "said"], ["conditions", "are"], ["Taimoor", "said"], ["wing", "said"], ["government", "solve challenges"], ["government", "made efforts"], ["Wani", "said"], ["Relatives", "said"], ["Khoso", "said"], ["participants", "said"], ["Abbas", "said"], ["government", "disallowing millers"], ["government", "assured party"], ["Fawad", "said"], ["government", "functioned"], ["Nawab", "said"], ["conditions", "occur"], ["government", "asked Unit"], ["samples", "said"], ["reports", "said"], ["It", "said"], ["wing", "said"], ["stance", "said"], ["wing", "said"], ["MNA", "said"], ["lawyer", "said"], ["government", "is"], ["Hussain", "said"], ["government", "working"], ["nazim", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["committee", "issued direction"], ["committee", "hold meeting"], ["land", "misused"], ["committee", "observed"], ["price", "recorded"], ["land", "transferred"], ["commissioner", "attended Convention"], ["price", "soared"], ["commissioner", "praised efforts"], ["land", "reduced"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["official", "wondered"], ["Organisation", "said"], ["Azhar", "said"], ["Chughtai", "said"], ["boy", "said"], ["Ashraf", "said"], ["CPO", "said"], ["Haque", "said"], ["Lal", "said"], ["It", "said"], ["Minhas", "said"], ["official", "disclosed"], ["Gondal", "said"], ["residents", "said"], ["Sher", "said"], ["MNA", "said"], ["Bangle", "said"], ["Mir", "said"], ["family", "visited Market"], ["verdict", "said"], ["approval", "said"], ["family", "going"], ["Irfan", "said"], ["family", "alleges"], ["Sanaullah", "said"], ["incident", "took place"], ["DG", "said"], ["DG", "said"], ["Gul", "said"], ["Rana", "said"], ["protester", "said"], ["batter", "said"], ["Ashraf", "said"], ["It", "informed"], ["Siddiqi", "said"], ["Relatives", "said"], ["Khoso", "said"], ["participants", "said"], ["Abbas", "said"], ["Hussain", "said"], ["Mughal", "said"], ["official", "confirmed incident"], ["Nawab", "said"], ["Kose", "said"], ["professionals", "said"], ["Khuhro", "said"], ["cabinet", "informed"], ["family", "lured her"], ["It", "said"], ["wing", "said"], ["team", "said"], ["staff", "deputed"], ["Hussain", "said"], ["It", "said"], ["It", "said"], ["Mirza", "said"], ["insider", "said"], ["Hussain", "said"], ["official", "was acquaintance"], ["official", "was acquaintance"], ["nazim", "said"], ["official", "told reporters"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["incident", "reported"], ["FIR", "registered"], ["which", "registered"], ["Punjab", "has history"], ["Punjab", "consider"], ["incident", "took place"], ["incident", "took place"], ["incident", "raised questions"], ["FIR", "registered"], ["by", "registered"], ["FIR", "registered"], ["incident", "happened"], ["by", "registered"], ["FIR", "registered"], ["case", "registered"], ["by", "registered"], ["FIR", "registered"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["police", "sought remand"], ["police", "saying"], ["police", "took him"], ["police", "nabbed driver"], ["police", "picketed road"], ["police", "got off"], ["police", "shifted him"], ["police", "found"], ["police", "had facilities"], ["police", "announced bounty"], ["police", "arrested youths"], ["police", "visited spot"], ["entry", "was development"], ["PTI", "Organization"], ["Karachi", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["CTD", "Organization"], ["report", "needs"], ["Lahore", "known"], ["report", "noted"], ["report", "based"], ["Shahid", "contributed"], ["report", "offers recommendations"], ["Raza", "contributed"], ["report", "stated"], ["Shahid", "contributed"], ["Amjad", "storming"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["agency", "said"], ["Review", "said"], ["ECP", "extended date"], ["Chughtai", "said"], ["boy", "said"], ["officers", "posted"], ["CPO", "said"], ["Haque", "said"], ["Lal", "said"], ["It", "said"], ["Satti", "said"], ["Gondal", "said"], ["residents", "said"], ["Sher", "said"], ["Bangle", "said"], ["officers", "working"], ["Langer", "said"], ["verdict", "said"], ["approval", "said"], ["Irfan", "said"], ["Information", "said"], ["Mazari", "said"], ["DG", "said"], ["DG", "said"], ["Gul", "said"], ["Hussain", "said"], ["Rana", "said"], ["Fisheries", "said"], ["protester", "said"], ["batter", "said"], ["Ashraf", "said"], ["Wani", "said"], ["Relatives", "said"], ["Khoso", "said"], ["participants", "said"], ["Abbas", "said"], ["ECP", "informed court"], ["ECP", "tells consultation"], ["Hussain", "said"], ["Fawad", "said"], ["Wazir", "said"], ["Raees", "said"], ["Gill", "said"], ["parliament", "stood"], ["professionals", "said"], ["Khuhro", "said"], ["Wazir", "said"], ["It", "said"], ["wing", "said"], ["team", "said"], ["Hussain", "said"], ["It", "said"], ["It", "said"], ["ECP", "pointed"], ["ECP", "emphasised"], ["insider", "said"], ["Hussain", "said"], ["Hussain", "said"], ["officers", "allotted symbols"], ["officers", "engaged"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["Khan", "tweeted"], ["spokesperson", "tweeted"], ["Chaudhry", "told presser"], ["Chaudhry", "claimed"], ["house", "met"], ["house", "given verdict"], ["Chaudhry", "criticised detention"], ["Khan", "tweeted"], ["Attacking", "was"], ["PTI", "Organization"], ["Karachi", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["agency", "said"], ["Review", "said"], ["Chughtai", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["CPO", "said"], ["Haque", "said"], ["Lal", "said"], ["Lal", "said"], ["anonymity", "added"], ["voice", "said"], ["Satti", "said"], ["Dehwar", "said"], ["residents", "said"], ["It", "said"], ["MNA", "said"], ["Wire", "said"], ["Mann", "said"], ["Amman", "arrive"], ["condition", "stated"], ["It", "said"], ["It", "said"], ["authorities", "suggested"], ["Irfan", "said"], ["condition", "stated"], ["Information", "said"], ["Mazari", "said"], ["DG", "said"], ["aggression", "said"], ["Rahim", "said"], ["notice", "said"], ["Rana", "said"], ["Fisheries", "said"], ["Adviser", "said"], ["official", "told Dawn"], ["batter", "said"], ["official", "told Dawn"], ["Secretariat", "said"], ["Munir", "said"], ["authorities", "asked"], ["Korai", "said"], ["Relatives", "said"], ["organiser", "said"], ["Akram", "said"], ["Abbas", "said"], ["Hussain", "said"], ["Fawad", "said"], ["Wazir", "said"], ["official", "laid"], ["Raees", "said"], ["Gill", "said"], ["official", "told Dawn"], ["professionals", "said"], ["authorities", "were"], ["reports", "said"], ["Wazir", "said"], ["It", "said"], ["wing", "said"], ["team", "said"], ["Hussain", "said"], ["MNA", "said"], ["lawyer", "said"], ["official", "shared"], ["official", "told Dawn"], ["official", "told Dawn"], ["Sherpao", "said"], ["commission", "said"], ["official", "told Dawn"], ["Hussain", "said"], ["official", "was acquaintance"], ["Hussain", "said"], ["official", "shot dead"], ["official", "told reporters"], ["official", "was"], ["official", "wrote letter"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Islamabad", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["ECP", "Organization"], ["PML", "Organization"], ["32pc", "were"], ["Pakistan", "exported rice"], ["Pakistan", "having difficulty"], ["cases", "were"], ["rulers", "were"], ["raids", "were"], ["she", "showed"], ["Pakistan", "had"], ["Pakistan", "bound"], ["CD70", "were"], ["Zardari", "were"], ["they", "were"], ["leaks", "showed"], ["Pakistan", "appears ninth"], ["CD70", "were"], ["Haq", "were"], ["facilities", "were"], ["Pakistan", "faced"], ["Pakistan", "accepted"], ["Pakistan", "purchase oil"], ["Pakistan", "buy fuels"], ["They", "were"], ["they", "were"], ["politicians", "were"], ["they", "were"], ["groups", "were"], ["Zafar", "were"], ["Pakistan", "carried trade"], ["Pakistan", "play dayer"], ["coaches", "were"], ["Pakistan", "dealing"], ["Pakistan", "has vaccine"], ["highways", "were"], ["they", "were"], ["Pakistan", "facing"], ["Pakistan", "made progress"], ["Pakistan", "provided authorities"], ["parents", "were"], ["Pakistan", "play"], ["Pakistan", "is member"], ["Pakistan", "participating"], ["Pakistan", "wishes"], ["Pakistan", "claimed responsibility"], ["crime", "were"], ["Pakistan", "had children"], ["Pakistan", "was market"], ["data", "showed"], ["Pakistan", "has deaths"], ["they", "were"], ["Pakistan", "established sites"], ["ones", "were"], ["Controller", "were"], ["Controller", "were"], ["Pakistan", "is"], ["Pakistan", "try"], ["Pakistan", "has ability"], ["Pakistan", "was"], ["Pakistan", "is member"], ["it", "violation"], ["incubators", "were"], ["MPAs", "were"], ["Report", "showed"], ["PTI", "Organization"], ["Karachi", "Location"], ["Lahore", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["access", "remained"], ["PTI", "Organization"], ["Karachi", "Location"], ["Lahore", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["station", "registered case"], ["police", "saying"], ["police", "continued"], ["police", "took him"], ["police", "had"], ["police", "killing men"], ["police", "opened fire"], ["police", "found"], ["police", "arrested Ahmed"], ["main", "accused"], ["station", "blasts"], ["police", "had facilities"], ["police", "announced bounty"], ["accused", "arrested"], ["police", "found body"], ["police", "visited spot"], ["police", "engaged"], ["police", "conducted raids"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["PML", "Organization"], ["Khan", "written letters"], ["Khan", "was"], ["Khan", "awarded ticket"], ["boy", "injured"], ["father", "injured"], ["Khan", "attended meeting"], ["Khan", "performed groundbreaking"], ["Khan", "got assemblies"], ["Khan", "refused"], ["members", "injured"], ["Khan", "launched campaign"], ["injured", "admitted"], ["Khan", "told reporters"], ["injured", "were residents"], ["Khan", "told reporters"], ["land", "misused"], ["cousin", "injured"], ["Mohsin", "injured"], ["Khan", "directed Ministry"], ["Khan", "ordered restoration"], ["man", "injured"], ["Shahid", "contributed"], ["land", "transferred"], ["members", "injured"], ["spillways", "opened"], ["Khan", "moved Court"], ["Shahid", "told minister"], ["Khan", "used language"], ["Khan", "examined area"], ["injured", "taken"], ["several", "injured"], ["Khan", "expressed disconcertment"], ["crossings", "opened"], ["land", "was"], ["land", "reduced"], ["Khan", "deployed"], ["man", "injured"], ["PTI", "Organization"], ["Karachi", "Location"], ["Lahore", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["Organisation", "said"], ["Azhar", "said"], ["Chughtai", "said"], ["boy", "said"], ["Hamdani", "said"], ["It", "said"], ["Lal", "said"], ["Magsi", "said"], ["It", "said"], ["voice", "said"], ["Satti", "said"], ["Gondal", "said"], ["residents", "said"], ["Sher", "said"], ["Bangle", "said"], ["Mann", "said"], ["Mir", "said"], ["Langer", "said"], ["It", "said"], ["It", "said"], ["KARACHI", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Munir", "said"], ["Sanaullah", "said"], ["sources", "said"], ["DG", "said"], ["aggression", "said"], ["Rahim", "said"], ["sources", "said"], ["notice", "said"], ["Hussain", "said"], ["sources", "said"], ["Rana", "said"], ["bench", "issue"], ["which", "said"], ["Hazrat", "said"], ["protester", "said"], ["Taimoor", "said"], ["wing", "said"], ["Secretariat", "said"], ["Munir", "said"], ["sources", "said"], ["KARACHI", "said"], ["Relatives", "said"], ["Khoso", "said"], ["Com\u00admission", "said"], ["participants", "said"], ["Nasir", "said"], ["Randhawa", "said"], ["sources", "said"], ["Fawad", "said"], ["Wazir", "said"], ["leaders", "said"], ["Nawab", "said"], ["Kose", "said"], ["Awan", "said"], ["professionals", "said"], ["Khuhro", "said"], ["force", "torched hideouts"], ["Wazir", "said"], ["force", "equipped"], ["It", "said"], ["stance", "said"], ["wing", "said"], ["Pervaiz", "said"], ["It", "said"], ["ADB", "said"], ["KARACHI", "said"], ["sources", "said"], ["Sherpao", "said"], ["commission", "said"], ["meeting", "resolved"], ["Hussain", "said"], ["issues", "resolved"], ["sources", "said"], ["voice", "said"], ["nazim", "said"], ["sources", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["PML", "Organization"], ["agency", "said"], ["Review", "said"], ["Chughtai", "said"], ["sources", "said"], ["boy", "said"], ["Hamdani", "said"], ["It", "said"], ["Lal", "said"], ["Magsi", "said"], ["It", "said"], ["voice", "said"], ["Minhas", "said"], ["Dehwar", "said"], ["PM", "said"], ["residents", "said"], ["Sher", "said"], ["Bangle", "said"], ["Wire", "said"], ["Mann", "said"], ["sources", "said"], ["Jaklenec", "said"], ["It", "said"], ["It", "said"], ["KARACHI", "said"], ["Elahi", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Munir", "said"], ["Sanaullah", "said"], ["sources", "said"], ["DG", "said"], ["aggression", "said"], ["one", "said"], ["Gul", "said"], ["sources", "said"], ["insiders", "said"], ["sources", "said"], ["Rana", "said"], ["KARACHI", "said"], ["which", "said"], ["Hazrat", "said"], ["protester", "said"], ["Taimoor", "said"], ["wing", "said"], ["Secretariat", "said"], ["Munir", "said"], ["sources", "said"], ["KARACHI", "said"], ["Relatives", "said"], ["Khoso", "said"], ["Com\u00admission", "said"], ["participants", "said"], ["Nasir", "said"], ["Randhawa", "said"], ["sources", "said"], ["Fawad", "said"], ["Wazir", "said"], ["leaders", "said"], ["Nawab", "said"], ["Kose", "said"], ["Awan", "said"], ["professionals", "said"], ["Khuhro", "said"], ["Wazir", "said"], ["Sherpao", "said"], ["It", "said"], ["wing", "said"], ["team", "said"], ["Hussain", "said"], ["MNA", "said"], ["lawyer", "said"], ["ADB", "said"], ["Riaz", "said"], ["Elahi", "said"], ["Mirza", "said"], ["general", "said"], ["Sherpao", "said"], ["commission", "said"], ["general", "said"], ["Hussain", "said"], ["sources", "said"], ["voice", "said"], ["nazim", "said"], ["sources", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["PML", "Organization"], ["agency", "said"], ["Review", "said"], ["Humayun", "said"], ["Chughtai", "said"], ["boy", "injured"], ["boy", "said"], ["Hamdani", "said"], ["It", "said"], ["Lal", "said"], ["Magsi", "said"], ["It", "said"], ["voice", "said"], ["Minhas", "said"], ["DIG", "said"], ["Gondal", "said"], ["residents", "said"], ["It", "said"], ["Wajid", "said"], ["Bangle", "said"], ["Wire", "said"], ["Mann", "said"], ["sources", "said"], ["Jaklenec", "said"], ["It", "said"], ["It", "said"], ["KARACHI", "said"], ["Shaikh", "said"], ["sources", "said"], ["Elahi", "said"], ["Irfan", "said"], ["Irfan", "said"], ["Munir", "said"], ["Sanaullah", "said"], ["sources", "said"], ["Gandapur", "said"], ["DG", "said"], ["DG", "said"], ["Rahim", "said"], ["sources", "said"], ["notice", "said"], ["insiders", "said"], ["sources", "said"], ["sources", "said"], ["Rana", "said"], ["KARACHI", "said"], ["Fisheries", "said"], ["petition", "said"], ["sources", "said"], ["Adviser", "said"], ["protester", "said"], ["boy", "assaulted"], ["Taimoor", "said"], ["wing", "said"], ["Secretariat", "said"], ["Munir", "said"], ["sources", "said"], ["KARACHI", "said"], ["Relatives", "said"], ["Khoso", "said"], ["Com\u00admission", "said"], ["participants", "said"], ["Nasir", "said"], ["Randhawa", "said"], ["sources", "said"], ["Fawad", "said"], ["Wazir", "said"], ["she", "gone"], ["Raees", "said"], ["Gill", "said"], ["speaker", "said"], ["Awan", "said"], ["professionals", "said"], ["Bareech", "said"], ["Sahito", "said"], ["Wazir", "said"], ["period", "gone"], ["DIG", "said"], ["It", "said"], ["Atlas", "said"], ["team", "said"], ["Hussain", "said"], ["MNA", "said"], ["lawyer", "said"], ["general", "said"], ["It", "said"], ["Riaz", "said"], ["Elahi", "said"], ["Mirza", "said"], ["Bali", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["insider", "said"], ["sources", "said"], ["Hussain", "said"], ["sources", "said"], ["voice", "said"], ["nazim", "said"], ["sources", "said"], ["sources", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["PML", "Organization"], ["government", "is"], ["government", "working"], ["government", "asked RDA"], ["government", "offer opportunities"], ["government", "handled situation"], ["government", "considering idea"], ["government", "put"], ["government", "formed"], ["government", "release funds"], ["government", "empowered"], ["government", "decide"], ["government", "remained"], ["government", "cut"], ["government", "wanted"], ["government", "using tactics"], ["government", "disallowing millers"], ["government", "wanted"], ["government", "allo\u00adwed imports"], ["government", "asked Unit"], ["government", "notified transfer"], ["government", "is"], ["government", "working"], ["valley", "was"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["officials", "assigned duties"], ["police", "saying"], ["police", "continued"], ["police", "took him"], ["police", "deployed personnel"], ["vehicles", "allowed"], ["officials", "added"], ["police", "killing men"], ["police", "opened fire"], ["police", "found"], ["police", "arrested Ahmed"], ["officials", "shifted injured"], ["police", "found"], ["officials", "issuing statements"], ["interest", "created impression"], ["police", "had facilities"], ["police", "linked incident"], ["officials", "visiting areas"], ["police", "arrested youths"], ["officials", "told media"], ["vehicles", "allowed"], ["vehicles", "remained"], ["officials", "build houses"], ["police", "visited spot"], ["officials", "serving"], ["police", "conducted raids"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["PML", "Organization"], ["police", "sought remand"], ["city", "been"], ["police", "saying"], ["police", "continued"], ["court", "direct FBR"], ["Amritpal", "arrested"], ["Amritpal", "arrested"], ["police", "deployed personnel"], ["police", "arrested Siddiqullah"], ["police", "nabbed driver"], ["police", "picketed road"], ["police", "got off"], ["police", "found"], ["police", "arrested Ahmed"], ["police", "found"], ["police", "arrested lifters"], ["police", "destroyed hideouts"], ["court", "functioning"], ["court", "restrain respondents"], ["court", "rejected petition"], ["police", "arrested lifters"], ["police", "announced bounty"], ["one", "arrested"], ["police", "arrested youths"], ["court", "direct ECP"], ["court", "ordered investigation"], ["court", "closed proceedings"], ["Gandapur", "arrested"], ["police", "visited spot"], ["police", "engaged"], ["persons", "arrested"], ["police", "conducted raids"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["PML", "Organization"], ["officials", "directed"], ["court", "suspended operation"], ["people", "allow"], ["court", "compelled"], ["court", "was"], ["court", "rejected petition"], ["court", "allowed bail"], ["court", "sent judge"], ["court", "direct ECP"], ["court", "ordered investigation"], ["court", "closed proceedings"], ["hearing", "covered"], ["court", "acquitted collector"], ["court", "passed order"], ["court", "issued notices"], ["court", "leave stone"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["PML", "Organization"], ["citizens", "trapped"], ["city", "been"], ["police", "saying"], ["police", "continued"], ["police", "taken Singh"], ["police", "deployed personnel"], ["police", "arrested Siddiqullah"], ["police", "killing men"], ["police", "opened fire"], ["police", "got off"], ["police", "shifted him"], ["police", "found"], ["police", "arrested lifters"], ["police", "participate"], ["system", "extended"], ["police", "arrested lifters"], ["police", "announced bounty"], ["police", "arrested youths"], ["police", "found body"], ["police", "visited spot"], ["citizens", "have status"], ["city", "was"], ["system", "devised"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["horses", "make it"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["Organisation", "said"], ["Azhar", "said"], ["Chughtai", "said"], ["sources", "said"], ["boy", "said"], ["Hamdani", "said"], ["It", "said"], ["Lal", "said"], ["Magsi", "said"], ["Murad", "said"], ["It", "said"], ["voice", "said"], ["Minhas", "said"], ["DIG", "said"], ["Gondal", "said"], ["PM", "said"], ["residents", "said"], ["Sher", "said"], ["MNA", "said"], ["Yaqoob", "said"], ["Mann", "said"], ["support", "hyped"], ["sources", "said"], ["Arabia", "evacuates scores"], ["Jaklenec", "said"], ["Khalid", "said"], ["It", "said"], ["It", "said"], ["KARACHI", "said"], ["Shaikh", "said"], ["sources", "said"], ["Elahi", "said"], ["Irfan", "said"], ["Irfan", "said"], ["Information", "said"], ["Mazari", "said"], ["Gandapur", "said"], ["DG", "said"], ["DG", "said"], ["Rahim", "said"], ["sources", "said"], ["source", "said"], ["Zardari", "said"], ["notice", "said"], ["insiders", "said"], ["sources", "said"], ["general", "said"], ["Rana", "said"], ["KARACHI", "said"], ["Fisheries", "said"], ["petition", "said"], ["sources", "said"], ["Adviser", "said"], ["protester", "said"], ["sources", "said"], ["batter", "said"], ["country", "going"], ["speaker", "said"], ["Secretariat", "said"], ["Munir", "said"], ["Wani", "said"], ["Siddiqi", "said"], ["Korai", "said"], ["Relatives", "said"], ["organiser", "said"], ["Naqi", "said"], ["Akram", "said"], ["Abbas", "said"], ["Randhawa", "said"], ["sources", "said"], ["Fawad", "said"], ["Wazir", "said"], ["leaders", "said"], ["Nawab", "said"], ["Kose", "said"], ["speaker", "said"], ["Awan", "said"], ["professionals", "said"], ["Bareech", "said"], ["Sahito", "said"], ["Wazir", "said"], ["Gilani", "said"], ["Tohidi", "said"], ["DIG", "said"], ["It", "said"], ["wing", "said"], ["stance", "said"], ["premier", "said"], ["Hussain", "said"], ["MNA", "said"], ["commissioner", "said"], ["speaker", "said"], ["general", "said"], ["It", "said"], ["Riaz", "said"], ["Elahi", "said"], ["Mirza", "said"], ["Bali", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["insider", "said"], ["general", "said"], ["Khalid", "said"], ["Hussain", "said"], ["Shaikh", "said"], ["sources", "said"], ["Hussain", "said"], ["PESHAWAR", "said"], ["commissioner", "said"], ["source", "said"], ["sources", "said"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["Sudan", "Location"], ["PML", "Organization"], ["requirements", "respected"], ["agreement", "signed"], ["China", "decided"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["Sudan", "Location"], ["PML", "Organization"], ["they", "need"], ["they", "need"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["Sudan", "Location"], ["PML", "Organization"], ["police", "announced measures"], ["police", "saying"], ["police", "arrested robber"], ["police", "taken Singh"], ["Punjab", "has history"], ["Punjab", "consider"], ["police", "had"], ["police", "nabbed driver"], ["police", "picketed road"], ["police", "try"], ["police", "got off"], ["police", "found"], ["police", "arrested Ahmed"], ["police", "arrested lifters"], ["police", "destroyed hideouts"], ["police", "participate"], ["police", "conducted raids"], ["police", "arrested lifters"], ["police", "announced bounty"], ["police", "impounded van"], ["police", "recovered tank"], ["police", "found body"], ["police", "investigating incident"], ["police", "engaged"], ["raid", "destroyed environment"], ["raid", "conducted"], ["Punjab", "destined"], ["governments", "distanced themselves"], ["PTI", "Organization"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["group", "is"], ["Organisation", "said"], ["source", "said"], ["Azhar", "said"], ["statement", "said"], ["Chughtai", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["CPO", "said"], ["inquiry", "is"], ["Lal", "said"], ["Lal", "said"], ["Lal", "said"], ["Murad", "said"], ["one", "said"], ["voice", "said"], ["Satti", "said"], ["group", "involved"], ["shiwala", "is"], ["which", "is"], ["am", "is"], ["women", "detained"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["Naveed", "is"], ["Wajid", "said"], ["MNA", "said"], ["Kundi", "said"], ["Yaqoob", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["rate", "is"], ["economy", "is"], ["climate", "is"], ["which", "is"], ["mobility", "is"], ["embassy", "is"], ["Langer", "said"], ["DeSimone", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Zardari", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["sources", "said"], ["Elahi", "said"], ["Irfan", "said"], ["Irfan", "said"], ["Munir", "said"], ["tapping", "is"], ["Sanaullah", "said"], ["which", "is"], ["sources", "said"], ["officials", "said"], ["statement", "said"], ["statement", "said"], ["army", "is"], ["DG", "said"], ["DG", "said"], ["Rahim", "said"], ["sources", "said"], ["source", "said"], ["Tarar", "said"], ["Zardari", "said"], ["officers", "said"], ["which", "is"], ["PSB", "is"], ["sources", "said"], ["general", "said"], ["Sector", "is"], ["statement", "said"], ["Rana", "said"], ["KARACHI", "said"], ["Fisheries", "said"], ["petition", "said"], ["which", "said"], ["Hazrat", "said"], ["Mehmood", "said"], ["protester", "said"], ["It", "is"], ["Sector", "is"], ["general", "said"], ["Taimoor", "said"], ["batter", "said"], ["One", "is"], ["speaker", "said"], ["Secretariat", "said"], ["Munir", "said"], ["operation", "is"], ["premier", "said"], ["Wani", "said"], ["one", "is"], ["officials", "said"], ["statement", "said"], ["Siddiqi", "said"], ["Korai", "said"], ["Relatives", "said"], ["Khoso", "said"], ["Sarwar", "said"], ["organiser", "said"], ["Com\u00admission", "said"], ["threat", "is"], ["Akram", "said"], ["Abbas", "said"], ["Randhawa", "said"], ["sources", "said"], ["Fawad", "said"], ["Wazir", "said"], ["circuit", "is"], ["leaders", "said"], ["Raees", "said"], ["statement", "said"], ["countries", "are Afghanistan"], ["Kose", "said"], ["speaker", "said"], ["It", "is"], ["Mehmood", "said"], ["officials", "said"], ["Awan", "said"], ["Chatta", "said"], ["samples", "said"], ["officials", "said"], ["Sahito", "said"], ["which", "is"], ["reports", "said"], ["SSP", "said"], ["Wazir", "said"], ["Gilani", "said"], ["Tohidi", "said"], ["Officials", "said"], ["DIG", "said"], ["It", "said"], ["Haq", "said"], ["It", "is"], ["spokesperson", "said"], ["wing", "said"], ["appointment", "is"], ["Atlas", "said"], ["stance", "said"], ["premier", "said"], ["wing", "said"], ["officials", "said"], ["Pervaiz", "said"], ["It", "said"], ["speakers", "said"], ["lawyer", "said"], ["general", "said"], ["ADB", "said"], ["It", "said"], ["Riaz", "said"], ["government", "is"], ["purpose", "is"], ["Elahi", "said"], ["Mirza", "said"], ["representation", "is"], ["officials", "said"], ["Bali", "said"], ["Officials", "said"], ["Mehmood", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["insider", "said"], ["spokesperson", "said"], ["general", "said"], ["Khalid", "said"], ["It", "is"], ["sources", "said"], ["Hussain", "said"], ["Shaikh", "said"], ["Marth", "said"], ["parliament", "is"], ["officials", "said"], ["voice", "said"], ["Pakistan", "is"], ["nazim", "said"], ["purpose", "is"], ["statement", "said"], ["officials", "said"], ["effectiveness", "is"], ["it", "is"], ["it", "is"], ["Party", "is"], ["It", "is"], ["commissioner", "said"], ["statement", "said"], ["hailstorm", "is"], ["It", "is"], ["source", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["HRCP", "is"], ["Cat", "is"], ["structure", "is"], ["officials", "said"], ["officials", "said"], ["It", "is"], ["officials", "said"], ["statement", "said"], ["request", "is"], ["who", "involved"], ["Hussain", "said"], ["women", "working"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["government", "working"], ["TTP", "working"], ["We", "working"], ["department", "working"], ["use", "increased"], ["government", "working"], ["women", "working"], ["PTI", "Organization"], ["Dawn", "Person"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["Rawalpindi", "deployed"], ["report", "noted"], ["report", "shows"], ["report", "issued"], ["Ayub", "contributed"], ["report", "says"], ["report", "came"], ["Raza", "contributed"], ["report", "stated"], ["Shahid", "contributed"], ["report", "disposed"], ["Malik", "contributed"], ["Mahmood", "contributed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["staff", "mobilised"], ["business", "started"], ["Punjab", "completed studies"], ["staff", "started"], ["staff", "initiated drive"], ["examinations", "started"], ["staff", "working"], ["Punjab", "captured"], ["they", "started"], ["spell", "started"], ["Islamabad", "consulted Washington"], ["staff", "was"], ["rain", "started"], ["Islamabad", "was place"], ["staff", "started"], ["PTI", "Organization"], ["Dawn", "Person"], ["Karachi", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["official", "wondered"], ["police", "sought remand"], ["official", "explained"], ["police", "announced measures"], ["police", "saying"], ["injured", "shifted"], ["official", "told Dawn"], ["police", "continued"], ["police", "set checkpoints"], ["police", "taken Singh"], ["police", "deployed personnel"], ["police", "registered cases"], ["groups", "clashed"], ["police", "identified deceased"], ["police", "nabbed driver"], ["police", "killing men"], ["police", "picketed road"], ["police", "try"], ["police", "arrested gamblers"], ["groups", "clashed"], ["police", "found"], ["police", "arrested Ahmed"], ["others", "injured"], ["others", "injured"], ["persons", "injured"], ["police", "registered cases"], ["official", "told Dawn"], ["cousin", "injured"], ["police", "arrested lifters"], ["youngsters", "shot dead"], ["Khan", "injured"], ["police", "destroyed hideouts"], ["who", "injured"], ["police", "granted bail"], ["police", "had facilities"], ["man", "injured"], ["official", "told Dawn"], ["four", "injured"], ["police", "linked incident"], ["police", "announced bounty"], ["official", "informed Court"], ["others", "injured"], ["official", "says"], ["groups", "were"], ["police", "arrested youths"], ["official", "laid"], ["official", "confirmed incident"], ["official", "told Dawn"], ["police", "dispatched bodies"], ["official", "martyred"], ["others", "injured"], ["injured", "taken"], ["official", "shared"], ["Khan", "injured"], ["official", "told Dawn"], ["police", "engaged"], ["official", "told Dawn"], ["person", "injured"], ["official", "was acquaintance"], ["police", "conducted raids"], ["others", "injured"], ["official", "told reporters"], ["result", "accepted"], ["friend", "injured"], ["friend", "injured"], ["official", "expressed intention"], ["injured", "identified"], ["Khan", "injured"], ["groups", "attacked other"], ["PTI", "Organization"], ["Dawn", "Person"], ["Karachi", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["government", "providing support"], ["government", "working"], ["incident", "reported"], ["government", "wanted"], ["government", "asked RDA"], ["government", "offer opportunities"], ["government", "handled situation"], ["Times", "reported"], ["accidents", "reported"], ["government", "put"], ["government", "formed"], ["government", "functioned"], ["government", "released Rs19.59bn"], ["APP", "reported"], ["judgement", "reported"], ["government", "decide"], ["government", "remained"], ["government", "cut"], ["government", "solve challenges"], ["government", "made efforts"], ["government", "deputed teams"], ["government", "disallowing millers"], ["government", "wanted"], ["government", "functioned"], ["government", "provide prospects"], ["APP", "reported"], ["government", "announced package"], ["government", "notified transfer"], ["Raid", "show"], ["government", "is"], ["government", "facing crisis"], ["government", "working"], ["documents", "show"], ["production", "decreased"], ["government", "provided billion"], ["government", "fulfilled conditions"], ["PTI", "Organization"], ["Dawn", "Person"], ["Karachi", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["police", "saying"], ["People", "staged protest"], ["People", "thronged shops"], ["security", "remained concern"], ["People", "poured"], ["People", "asked government"], ["teenager", "travelling"], ["List", "showed"], ["commuters", "travelling"], ["PTI", "Organization"], ["Islamabad", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["source", "added"], ["services", "needed"], ["He", "added"], ["official", "added"], ["Minhas", "added"], ["It", "added"], ["Mann", "added"], ["they", "added"], ["it", "added"], ["officials", "added"], ["she", "added"], ["department", "trying"], ["He", "added"], ["department", "was"], ["He", "added"], ["they", "added"], ["department", "issued alert"], ["it", "added"], ["SSP", "added"], ["department", "preparing maps"], ["department", "started procurement"], ["He", "added"], ["he", "added"], ["areas", "affected"], ["He", "added"], ["department", "was"], ["department", "issued alert"], ["department", "working"], ["she", "added"], ["report", "added"], ["system", "affected"], ["It", "added"], ["He", "added"], ["he", "added"], ["he", "added"], ["He", "added"], ["He", "added"], ["they", "added"], ["access", "is lowest"], ["he", "added"], ["by", "affected"], ["He", "added"], ["PTI", "Organization"], ["Islamabad", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["sector", "be sector"], ["sector", "stifled"], ["PTI", "Organization"], ["Islamabad", "Location"], ["Karachi", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["police", "had"], ["that", "left"], ["who", "had"], ["matters", "left"], ["we", "left"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["agency", "said"], ["Review", "said"], ["source", "said"], ["Humayun", "said"], ["Chughtai", "said"], ["sources", "said"], ["boy", "said"], ["Hamdani", "said"], ["It", "said"], ["police", "sought remand"], ["Lal", "said"], ["Magsi", "said"], ["Murad", "said"], ["deceased", "taken"], ["acres", "taken"], ["voice", "said"], ["Minhas", "said"], ["DIG", "said"], ["officials", "said"], ["officials", "said"], ["Dehwar", "said"], ["police", "saying"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["police", "arrested robber"], ["police", "set checkpoints"], ["Wajid", "said"], ["MNA", "said"], ["Kundi", "said"], ["Malaika", "said"], ["police", "taken Singh"], ["police", "took him"], ["Mann", "said"], ["Mir", "said"], ["Asakawa", "said"], ["Jaklenec", "said"], ["police", "deployed personnel"], ["police", "had"], ["police", "registered cases"], ["condition", "stated"], ["tribunal", "said"], ["integrity", "taken"], ["It", "said"], ["approval", "said"], ["people", "said"], ["spokesperson", "said"], ["Zardari", "said"], ["Shaikh", "said"], ["police", "arrested Siddiqullah"], ["sources", "said"], ["Elahi", "said"], ["Lathani", "said"], ["man", "surrender"], ["Irfan", "said"], ["Irfan", "said"], ["Irfan", "said"], ["police", "got off"], ["police", "found"], ["police", "arrested Ahmed"], ["Information", "said"], ["Sanaullah", "said"], ["officials", "said"], ["officials", "said"], ["sources", "said"], ["officials", "said"], ["officials", "said"], ["statement", "said"], ["body", "taken"], ["police", "registered cases"], ["Gandapur", "said"], ["DG", "said"], ["DG", "said"], ["one", "said"], ["police", "found"], ["sources", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Zardari", "said"], ["man", "be"], ["insiders", "said"], ["Hussain", "said"], ["man", "drowned"], ["sources", "said"], ["Mengal", "said"], ["officials", "said"], ["Rana", "said"], ["Kango", "said"], ["spokesperson", "said"], ["police", "were"], ["police", "destroyed hideouts"], ["Zaman", "fired"], ["Fisheries", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["police", "granted bail"], ["body", "taken"], ["sources", "said"], ["police", "had facilities"], ["action", "taken"], ["Mehmood", "said"], ["protester", "said"], ["officials", "said"], ["Mengal", "said"], ["officials", "said"], ["police", "arrested lifters"], ["Taimoor", "said"], ["wing", "said"], ["Ashraf", "said"], ["speaker", "said"], ["Officials", "said"], ["Munir", "said"], ["Residents", "said"], ["services", "taken"], ["statement", "said"], ["statement", "said"], ["Siddiqi", "said"], ["Korai", "said"], ["Relatives", "said"], ["SSP", "said"], ["man", "told journalists"], ["Relatives", "said"], ["police", "cordoned area"], ["Reports", "said"], ["Sarwar", "said"], ["Sarwar", "said"], ["Naqi", "said"], ["Akram", "said"], ["Abbas", "said"], ["Randhawa", "said"], ["police", "impounded van"], ["police", "arrested youths"], ["bureau", "said"], ["Wazir", "said"], ["action", "taken"], ["man", "committed suicide"], ["speakers", "said"], ["speakers", "said"], ["police", "recovered tank"], ["Nawab", "said"], ["Gill", "said"], ["Zardari", "said"], ["Mehmood", "said"], ["officials", "said"], ["Awan", "said"], ["police", "dispatched bodies"], ["Chatta", "said"], ["samples", "said"], ["officials", "said"], ["Sahito", "said"], ["SSP", "said"], ["police", "found body"], ["Wazir", "said"], ["police", "set camps"], ["Zulqarnain", "said"], ["Haq", "said"], ["Sherpao", "said"], ["Officials", "said"], ["officials", "said"], ["It", "said"], ["Haq", "said"], ["Zia", "said"], ["spokesperson", "said"], ["wing", "said"], ["Atlas", "said"], ["team", "said"], ["wing", "said"], ["officials", "said"], ["police", "investigating incident"], ["Pervaiz", "said"], ["action", "taken"], ["commissioner", "said"], ["speakers", "said"], ["lawyer", "said"], ["general", "said"], ["It", "said"], ["Riaz", "said"], ["KARACHI", "said"], ["Elahi", "said"], ["sources", "said"], ["Zaman", "were"], ["officials", "said"], ["Bali", "said"], ["police", "were"], ["man", "killed"], ["Mehmood", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["insider", "said"], ["spokesperson", "said"], ["Khalid", "said"], ["objection", "taken"], ["sources", "said"], ["Hussain", "said"], ["Fahim", "said"], ["sources", "said"], ["Marth", "said"], ["police", "granted bail"], ["man", "killed wife"], ["officials", "said"], ["voice", "said"], ["Hussain", "said"], ["PESHAWAR", "said"], ["sources", "said"], ["it", "taken"], ["that", "taken"], ["commissioner", "said"], ["condition", "been"], ["source", "said"], ["Wahab", "said"], ["wheat", "taken"], ["police", "taken control"], ["Officials", "said"], ["sources", "said"], ["officials", "said"], ["Officials", "said"], ["officials", "said"], ["Hussain", "said"], ["Hussain", "said"], ["man", "stabbed"], ["man", "shot dead"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["water", "flow"], ["increase", "means"], ["water", "leak"], ["increase", "came"], ["demands", "fixing"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["Office", "confirmed"], ["phenomenon", "forecast"], ["Office", "forecast weather"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["statement", "said"], ["statement", "said"], ["statement", "said"], ["statement", "said"], ["statement", "said"], ["statement", "said"], ["role", "is"], ["statement", "said"], ["statement", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["which", "heard"], ["Khan", "heard"], ["NAB", "stated"], ["she", "heard"], ["NAB", "asked"], ["NAB", "finalised reference"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["people", "lost lives"], ["people", "implicated"], ["people", "work"], ["people", "live"], ["people", "shown"], ["people", "turned"], ["people", "secure job"], ["people", "shifted"], ["people", "visited Park"], ["people", "visited Dam"], ["people", "rid"], ["people", "tilted"], ["people", "lost lives"], ["another", "wounded"], ["people", "were"], ["people", "took"], ["people", "belonged"], ["people", "allow"], ["battles", "raged"], ["by", "wounded"], ["people", "punished"], ["by", "wounded"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["Shah", "accompanied minister"], ["she", "brought"], ["bodies", "recovered"], ["body", "brought"], ["Institute", "closed"], ["bodies", "rushed"], ["coffins", "brought"], ["examination", "confirmed"], ["Abdullah", "injured"], ["Abdullah", "quarrelled"], ["Shah", "said factors"], ["Syed", "declared origins"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["agency", "said"], ["Review", "said"], ["source", "said"], ["Humayun", "said"], ["Chughtai", "said"], ["sources", "said"], ["boy", "said"], ["Hamdani", "said"], ["It", "said"], ["Lal", "said"], ["Magsi", "said"], ["Murad", "said"], ["It", "said"], ["voice", "said"], ["Minhas", "said"], ["DIG", "said"], ["officials", "said"], ["officials", "said"], ["Dehwar", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["Wajid", "said"], ["MNA", "said"], ["Kundi", "said"], ["She", "said"], ["Yaqoob", "said"], ["Mann", "said"], ["Mir", "said"], ["Asakawa", "said"], ["Jaklenec", "said"], ["officials", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["people", "said"], ["spokesperson", "said"], ["Zardari", "said"], ["Shaikh", "said"], ["Elahi", "said"], ["officer", "got"], ["Irfan", "said"], ["Irfan", "said"], ["Information", "said"], ["Sanaullah", "said"], ["officials", "said"], ["officials", "said"], ["sources", "said"], ["officials", "said"], ["officials", "said"], ["statement", "said"], ["DG", "said"], ["aggression", "said"], ["one", "said"], ["person", "said"], ["sources", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Zardari", "said"], ["officers", "said"], ["Haq", "said"], ["sources", "said"], ["general", "said"], ["Mengal", "said"], ["statement", "said"], ["Rana", "said"], ["spokesperson", "said"], ["ASP", "said"], ["spokesperson", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["which", "said"], ["Hazrat", "said"], ["adviser", "said"], ["Tanoli", "said"], ["officials", "said"], ["Mengal", "said"], ["general", "said"], ["Taimoor", "said"], ["wing", "said"], ["speaker", "said"], ["Secretariat", "said"], ["Munir", "said"], ["Residents", "said"], ["Wani", "said"], ["officials", "said"], ["sources", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["SSP", "said"], ["Relatives", "said"], ["SSP", "said"], ["Reports", "said"], ["Sarwar", "said"], ["Sarwar", "said"], ["Naqi", "said"], ["participants", "said"], ["Nasir", "said"], ["Abbas", "said"], ["Randhawa", "said"], ["sources", "said"], ["Kamal", "said"], ["Fawad", "said"], ["Wazir", "said"], ["speakers", "said"], ["petitioner", "said"], ["elders", "said"], ["DPO", "said"], ["Nawab", "said"], ["Gill", "said"], ["Zardari", "said"], ["Mehmood", "said"], ["officials", "said"], ["Naek", "said"], ["officials", "said"], ["Chatta", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Khuhro", "said"], ["Kandhro", "said"], ["woman", "found dead"], ["SSP", "said"], ["He", "got"], ["Wazir", "said"], ["spokesperson", "said"], ["Zulqarnain", "said"], ["Haq", "said"], ["Sherpao", "said"], ["DIG", "said"], ["It", "said"], ["Durrani", "said"], ["Haq", "said"], ["Zia", "said"], ["Officials", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["Chaudhry", "said"], ["Atlas", "said"], ["Chaudhry", "said"], ["premier", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["officials", "said"], ["Pervaiz", "said"], ["It", "said"], ["people", "said"], ["speakers", "said"], ["speaker", "said"], ["ADB", "said"], ["Saddal", "said"], ["KARACHI", "said"], ["Elahi", "said"], ["sources", "said"], ["officials", "said"], ["Bali", "said"], ["Officials", "said"], ["Mehmood", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["insider", "said"], ["spokesperson", "said"], ["Abbasi", "said"], ["Abbasi", "said"], ["Hussain", "said"], ["She", "said"], ["Shaikh", "said"], ["She", "said"], ["Marth", "said"], ["She", "said"], ["officials", "said"], ["voice", "said"], ["She", "said"], ["she", "said"], ["Hussain", "said"], ["PESHAWAR", "said"], ["sources", "said"], ["officials", "said"], ["Chaudhry", "said"], ["statement", "said"], ["source", "said"], ["She", "said"], ["spokesperson", "said"], ["Durrani", "said"], ["spokesperson", "said"], ["Officials", "said"], ["sources", "said"], ["officials", "said"], ["Officials", "said"], ["he", "said"], ["he", "said"], ["Hussain", "said"], ["he", "said"], ["sources", "said"], ["he", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["number", "possess land"], ["people", "implicated"], ["people", "counted"], ["people", "work"], ["number", "is"], ["people", "live"], ["number", "jumped"], ["people", "study"], ["people", "switched"], ["people", "evacuated"], ["people", "visited Museum"], ["people", "visited Rukh"], ["people", "said"], ["people", "tilted"], ["people", "announced"], ["people", "left Khartoum"], ["people", "conspired"], ["people", "prepared"], ["number", "remain"], ["people", "suffered injuries"], ["number", "reported"], ["people", "counted"], ["people", "injured"], ["number", "continues"], ["number", "staged march"], ["rally", "participated"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["explosion", "occurred"], ["incidents", "recorded"], ["blasts", "occurred"], ["tragedy", "occurred"], ["acts", "occurred"], ["area", "involved provinces"], ["area", "comprises Pindigheb"], ["deaths", "occurred"], ["area", "comprises Pindigheb"], ["blasts", "occurred"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["Polls", "scheduled"], ["ruling", "given"], ["meeting", "scheduled"], ["CM", "urged government"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["ECP", "Organization"], ["Sudan", "Location"], ["agency", "said"], ["he", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["Chughtai", "said"], ["sources", "said"], ["boy", "said"], ["he", "said"], ["he", "said"], ["Hamdani", "said"], ["It", "said"], ["he", "said"], ["women", "were"], ["Magsi", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["she", "said"], ["she", "said"], ["Minhas", "said"], ["DIG", "said"], ["officials", "said"], ["officials", "said"], ["he", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["he", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["Wajid", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Yaqoob", "said"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["sources", "said"], ["Langer", "said"], ["DeSimone", "said"], ["Khalid", "said"], ["he", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["people", "said"], ["spokesperson", "said"], ["he", "said"], ["women", "died"], ["Shaikh", "said"], ["workers", "fired"], ["sources", "said"], ["Elahi", "said"], ["he", "said"], ["Irfan", "said"], ["he", "said"], ["Munir", "said"], ["She", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["officials", "said"], ["officials", "said"], ["Officials", "said"], ["officials", "said"], ["statement", "said"], ["Gandapur", "said"], ["he", "said"], ["he", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["women", "heard"], ["Rahim", "said"], ["Gul", "said"], ["sources", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Zardari", "said"], ["officers", "said"], ["Haq", "said"], ["sources", "said"], ["he", "said"], ["Mengal", "said"], ["Mengal", "said"], ["statement", "said"], ["Rana", "said"], ["he", "said"], ["spokesperson", "said"], ["ASP", "said"], ["he", "said"], ["he", "said"], ["spokesperson", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["which", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["general", "said"], ["Taimoor", "said"], ["wing", "said"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["Secretariat", "said"], ["Munir", "said"], ["Residents", "said"], ["he", "said"], ["Wani", "said"], ["statement", "said"], ["statement", "said"], ["he", "said"], ["he", "said"], ["Korai", "said"], ["Relatives", "said"], ["SSP", "said"], ["father", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["Sarwar", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["participants", "said"], ["Nasir", "said"], ["Abbas", "said"], ["Randhawa", "said"], ["he", "said"], ["bureau", "said"], ["Kamal", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Mughal", "said"], ["he", "said"], ["speakers", "said"], ["leaders", "said"], ["speakers", "said"], ["Raees", "said"], ["statement", "said"], ["Kose", "said"], ["speaker", "said"], ["he", "said"], ["Shehbaz", "said"], ["Mehmood", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["officials", "said"], ["professionals", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["he", "said"], ["resident", "said"], ["Sahito", "said"], ["Jamali", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["Shahnaz", "said"], ["Haq", "said"], ["Haq", "said"], ["Tohidi", "said"], ["Sherpao", "said"], ["he", "said"], ["he", "said"], ["DIG", "said"], ["officials", "said"], ["It", "said"], ["workers", "provided woman"], ["Zia", "said"], ["Zia", "said"], ["Officials", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["Rela\u00adtions", "said"], ["he", "said"], ["Atlas", "said"], ["he", "said"], ["Chaudhry", "said"], ["premier", "said"], ["wing", "said"], ["She", "said"], ["spokesperson", "said"], ["Nawaz", "said"], ["Hussain", "said"], ["MNA", "said"], ["he", "said"], ["It", "said"], ["he", "said"], ["speakers", "said"], ["lawyer", "said"], ["he", "said"], ["Bakhtawari", "said"], ["general", "said"], ["It", "said"], ["he", "said"], ["he", "said"], ["KARACHI", "said"], ["Moonis", "said"], ["He", "said"], ["He", "said"], ["Mirza", "said"], ["Liu", "said"], ["he", "said"], ["Director", "said"], ["officials", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["Officials", "said"], ["He", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["he", "said"], ["insider", "said"], ["source", "said"], ["spokesperson", "said"], ["Abbasi", "said"], ["Khalid", "said"], ["He", "said"], ["sources", "said"], ["Hussain", "said"], ["She", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["sources", "said"], ["sources", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["Officials", "said"], ["officials", "said"], ["voice", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["PESHAWAR", "said"], ["statement", "said"], ["Patel", "said"], ["he", "said"], ["Chaudhry", "said"], ["commissioner", "said"], ["He", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["workers", "have access"], ["he", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["officials", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Hussain", "said"], ["He", "said"], ["women", "working"], ["He", "said"], ["He", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["workers", "contribute"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["court", "help"], ["youth", "burnt alive"], ["youth", "having year"], ["youth", "read narratives"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["he", "shifted"], ["hospital", "had units"], ["injured", "shifted"], ["he", "shifted"], ["44", "shifted"], ["Bibi", "drowned"], ["wife", "gone"], ["wife", "died"], ["injured", "shifted"], ["Huzaifa", "shifted"], ["Muhammad", "was one"], ["three", "shifted"], ["Bibi", "jumped"], ["Bibi", "gave birth"], ["old", "shifted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["agency", "said"], ["he", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["CPO", "said"], ["He", "said"], ["Haque", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Satti", "said"], ["DIG", "said"], ["officials", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["police", "announced measures"], ["he", "said"], ["Gondal", "said"], ["he", "said"], ["arrest", "came"], ["He", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["police", "continued"], ["Sher", "said"], ["police", "set checkpoints"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["police", "taken Singh"], ["police", "took him"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["Asakawa", "said"], ["Jaklenec", "said"], ["police", "reached spot"], ["officials", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["police", "registered cases"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["sources", "said"], ["He", "said"], ["Elahi", "said"], ["He", "said"], ["police", "burnt house"], ["He", "said"], ["police", "killing men"], ["police", "picketed road"], ["police", "opened fire"], ["police", "try"], ["police", "registered case"], ["He", "said"], ["He", "said"], ["police", "arrested gamblers"], ["police", "found"], ["police", "said"], ["Munir", "said"], ["She", "said"], ["He", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["officials", "said"], ["officials", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["resident", "said"], ["statement", "said"], ["They", "said"], ["police", "registered cases"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["one", "said"], ["Rahim", "said"], ["police", "found"], ["sources", "said"], ["sources", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Zardari", "said"], ["He", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["he", "said"], ["officials", "said"], ["Rana", "said"], ["he", "said"], ["police", "said"], ["Kango", "said"], ["spokesperson", "said"], ["police", "said"], ["police", "were"], ["he", "said"], ["He", "said"], ["police", "destroyed hideouts"], ["he", "said"], ["he", "said"], ["He", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["police", "conducted raids"], ["They", "said"], ["sources", "said"], ["police", "had facilities"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["police", "arrested lifters"], ["Taimoor", "said"], ["wing", "said"], ["They", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["police", "announced bounty"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["SSP", "said"], ["Syed", "said"], ["He", "said"], ["father", "said"], ["He", "said"], ["SSP", "said"], ["police", "collecting details"], ["he", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["participants", "said"], ["He", "said"], ["police", "registered case"], ["Abbas", "said"], ["Randhawa", "said"], ["police", "impounded van"], ["he", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["speakers", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["police", "registered case"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["auditors", "said"], ["Gill", "said"], ["Zardari", "said"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["he", "said"], ["resident", "said"], ["He", "said"], ["Khuhro", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["He", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["police", "found body"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["Tohidi", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["Wazir", "suspects"], ["he", "said"], ["DIG", "said"], ["officials", "said"], ["It", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["He", "said"], ["official", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["Rela\u00adtions", "said"], ["he", "said"], ["Atlas", "said"], ["he", "said"], ["He", "said"], ["police", "failed"], ["premier", "said"], ["Relations", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["officials", "said"], ["police", "investigating incident"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["It", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["It", "said"], ["Saddal", "said"], ["he", "said"], ["Riaz", "said"], ["KARACHI", "said"], ["He", "said"], ["He", "said"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Mirza", "said"], ["He", "said"], ["suspects", "killed"], ["police", "registered case"], ["sources", "said"], ["official", "said"], ["police", "engaged"], ["police", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["He", "said"], ["Officials", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["Mehmood", "said"], ["Mehmood", "said"], ["Sherpao", "said"], ["He", "said"], ["commission", "said"], ["He", "said"], ["He", "said"], ["They", "said"], ["Abbasi", "said"], ["Khalid", "said"], ["Abbasi", "said"], ["He", "said"], ["sources", "said"], ["Hussain", "said"], ["He", "said"], ["police", "registered case"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Sharma", "said"], ["sources", "said"], ["Ikram", "said"], ["sources", "said"], ["police", "conducted raids"], ["He", "said"], ["he", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["He", "said"], ["police", "registered case"], ["She", "said"], ["he", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["statement", "said"], ["Patel", "said"], ["he", "said"], ["Chaudhry", "said"], ["commissioner", "said"], ["He", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["source", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["Kamal", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["officials", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Hussain", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["police", "said"], ["police", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["suspects", "committing crimes"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["India", "Location"], ["Khan", "Person"], ["PML", "Organization"], ["SC", "Organization"], ["workers", "taken"], ["election", "go"], ["ruling", "given"], ["Saanjh", "called"], ["labourers", "freed"], ["parliament", "stood"], ["treatment", "given"], ["system", "choked"], ["system", "affected"], ["that", "called"], ["system", "is"], ["parliament", "is"], ["workers", "are"], ["system", "devised"], ["by", "given"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["hospital", "had units"], ["personnel", "rushed"], ["attack", "highlighted shift"], ["police", "rushed"], ["total", "collected"], ["injured", "rushed"], ["attack", "came"], ["scores", "surrounded"], ["Abbas", "rushed"], ["she", "rushed"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["India", "Location"], ["Khan", "Person"], ["PML", "Organization"], ["SC", "Organization"], ["Balochistan", "is society"], ["mills", "working"], ["Bibi", "\u2019s"], ["by", "shut"], ["it", "\u2019s"], ["Balochistan", "came"], ["mills", "turning"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["India", "Location"], ["Khan", "Person"], ["PML", "Organization"], ["SC", "Organization"], ["official", "said"], ["Organisation", "said"], ["Review", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["Haque", "said"], ["Lal", "said"], ["Magsi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["people", "lost lives"], ["He", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Dehwar", "said"], ["people", "counted"], ["he", "said"], ["He", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["people", "work"], ["people", "deserved assistance"], ["He", "said"], ["He", "said"], ["he", "said"], ["people", "migrate"], ["He", "said"], ["Kundi", "said"], ["people", "shown"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["people", "turned"], ["Bangle", "said"], ["Malaika", "said"], ["Yaqoob", "said"], ["police", "said"], ["Mann", "said"], ["people", "switched"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["Langer", "said"], ["DeSimone", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["They", "said"], ["people", "visited Park"], ["people", "visited Dam"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["people", "rid"], ["He", "said"], ["Zardari", "said"], ["he", "said"], ["Shaikh", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["he", "said"], ["He", "said"], ["people", "suffered injuries"], ["Munir", "said"], ["Information", "said"], ["She", "said"], ["He", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["statement", "said"], ["Gohati", "said"], ["He", "said"], ["Gandapur", "said"], ["he", "said"], ["Chaudhry", "said"], ["He", "said"], ["DG", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["he", "said"], ["person", "said"], ["sources", "said"], ["sources", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Zardari", "said"], ["official", "said"], ["people", "left Khartoum"], ["official", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["sources", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["Mengal", "said"], ["statement", "said"], ["Rana", "said"], ["he", "said"], ["police", "said"], ["Kango", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["Saeed", "said"], ["he", "said"], ["spokesperson", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["which", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["Chapman", "thinking"], ["Babar", "said"], ["wing", "said"], ["They", "said"], ["orders", "allocate"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["people", "belonged"], ["He", "said"], ["father", "said"], ["He", "said"], ["SSP", "said"], ["he", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["participants", "said"], ["He", "said"], ["Najmi", "said"], ["source", "said"], ["He", "said"], ["Hussain", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["speakers", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["people", "allow"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Nawab", "said"], ["statement", "said"], ["Kose", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["Talib", "said"], ["he", "said"], ["Naek", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["She", "said"], ["Bareech", "said"], ["Kasi", "said"], ["he", "said"], ["resident", "said"], ["official", "said"], ["IGP", "said"], ["He", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["reports", "said"], ["SSP", "said"], ["Sharif", "said"], ["Sharif", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["adding", "had say"], ["He", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["It", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["people", "counted"], ["wing", "said"], ["Chaudhry", "said"], ["statement", "said"], ["he", "said"], ["stance", "said"], ["Chaudhry", "said"], ["premier", "said"], ["wing", "said"], ["She", "said"], ["spokesperson", "said"], ["Nawaz", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["It", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["It", "said"], ["Saddal", "said"], ["he", "said"], ["Riaz", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Mirza", "said"], ["Liu", "said"], ["They", "said"], ["official", "said"], ["people", "killed"], ["people", "injured"], ["police", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["Sherpao", "said"], ["He", "said"], ["commission", "said"], ["He", "said"], ["He", "said"], ["spokesperson", "said"], ["They", "said"], ["general", "said"], ["he", "said"], ["Abbasi", "said"], ["He", "said"], ["police", "said"], ["Hussain", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["She", "said"], ["Ikram", "said"], ["sources", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["He", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["mafia", "was"], ["he", "said"], ["officials", "said"], ["he", "said"], ["Chaudhry", "said"], ["commissioner", "said"], ["He", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["source", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["spokesperson", "said"], ["official", "said"], ["he", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["people", "informed service"], ["They", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Hussain", "said"], ["He", "said"], ["He", "said"], ["official", "said"], ["Hussain", "said"], ["official", "said"], ["sources", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["They", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["Hussain", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["who", "thinking"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Balochistan", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["SC", "Organization"], ["PML", "Organization"], ["PTI", "constituted committees"], ["Sharif", "said"], ["people", "killed"], ["people", "lost lives"], ["She", "claimed"], ["people", "call"], ["people", "work"], ["Sadiq", "claimed"], ["people", "live"], ["people", "shown"], ["people", "flooded markets"], ["people", "switched"], ["countries", "navigate impacts"], ["people", "shifted"], ["people", "visited Park"], ["people", "visited Dam"], ["people", "rid"], ["Police", "claimed"], ["PTI", "stands"], ["people", "announced"], ["PTI", "renews call"], ["PTI", "renewed calls"], ["people", "killed"], ["PTI", "dismissed"], ["PTI", "posted"], ["chairman", "gave presentation"], ["people", "martyred"], ["Chaudhry", "claimed"], ["government", "goes"], ["people", "died"], ["people", "were"], ["Imran", "accept results"], ["people", "took"], ["people", "killed"], ["Sharif", "reiterated"], ["PTI", "exploited situation"], ["people", "prepared"], ["people", "avoid travel"], ["PTI", "was"], ["PTI", "wanted elections"], ["people", "enumerated"], ["people", "belonged"], ["PTI", "made mistakes"], ["people", "killed"], ["people", "tolerate activities"], ["PTI", "invited"], ["countries", "are Afghanistan"], ["Shehbaz", "said"], ["PTI", "is"], ["people", "killed"], ["PTI", "believed that"], ["people", "killed"], ["people", "raised funds"], ["Sharif", "said"], ["Sharif", "said"], ["people", "counted"], ["Imran", "says need"], ["PTI", "represented"], ["people", "said"], ["people", "killed"], ["people", "injured"], ["Imran", "died"], ["PTI", "announces intention"], ["PTI", "approach court"], ["PTI", "rejected attempts"], ["people", "killed"], ["people", "become citizens"], ["people", "punished"], ["people", "injured"], ["Imran", "said"], ["PTI", "knows"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["Balochistan", "was"], ["Office", "anno\u00adunced"], ["Office", "cautioned tourists"], ["districts", "affected"], ["Balochistan", "came"], ["Office", "forecast weather"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["Nawaz", "criticised judge"], ["official", "said"], ["Organisation", "said"], ["Review", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["Haque", "said"], ["Lal", "said"], ["Magsi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Satti", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["she", "said"], ["Dehwar", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Yaqoob", "said"], ["police", "said"], ["Mann", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["Jaklenec", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["he", "said"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Gandapur", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["DG", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["he", "said"], ["person", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["he", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["They", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["Babar", "said"], ["wing", "said"], ["They", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["He", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["Najmi", "said"], ["source", "said"], ["He", "said"], ["he", "said"], ["bureau", "said"], ["Kamal", "said"], ["Chaudhry", "said"], ["Fawad", "said"], ["He", "said"], ["He", "said"], ["Mughal", "said"], ["They", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["He", "said"], ["auditors", "said"], ["Gill", "said"], ["Zardari", "said"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["resident", "said"], ["official", "said"], ["IGP", "said"], ["He", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["judge", "said"], ["He", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["It", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["He", "said"], ["official", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["he", "said"], ["stance", "said"], ["He", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["She", "said"], ["spokesperson", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["It", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["It", "said"], ["Saddal", "said"], ["he", "said"], ["minister", "said"], ["KARACHI", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Liu", "said"], ["sources", "said"], ["official", "said"], ["he", "said"], ["Director", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["country", "going"], ["he", "said"], ["Khalid", "said"], ["He", "said"], ["police", "said"], ["sources", "said"], ["Khan", "said"], ["Hussain", "said"], ["She", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Sharma", "said"], ["sources", "said"], ["Marth", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["He", "said"], ["She", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["sources", "said"], ["he", "said"], ["officials", "said"], ["General", "said"], ["minister", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["He", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["country", "faced"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["Kamal", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesperson", "said"], ["official", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["officials", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["He", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["He", "said"], ["UN", "said"], ["He", "said"], ["He", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["chief", "said"], ["Hussain", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["he", "said"], ["she", "said"], ["Nawaz", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["Khan", "killed"], ["militants", "had"], ["man", "killed"], ["Amritpal", "arrested"], ["hundreds", "killed"], ["Khan", "killed"], ["man", "killed"], ["people", "killed"], ["who", "arrested"], ["people", "killed"], ["man", "killed"], ["outlaws", "arrested"], ["child", "killed"], ["son", "killed"], ["militants", "carried attack"], ["who", "killed"], ["TOBA", "killed"], ["accused", "arrested"], ["militants", "killed"], ["people", "killed"], ["Gandapur", "arrested"], ["criminals", "arrested"], ["militants", "killed"], ["she", "killed"], ["by", "killed"], ["by", "killed"], ["accused", "arrested"], ["people", "killed"], ["persons", "killed"], ["man", "killed"], ["people", "killed"], ["persons", "killed"], ["persons", "arrested"], ["militants", "killed"], ["man", "killed"], ["robbers", "killed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["statement", "said"], ["operation", "launched"], ["operation", "initiated"], ["She", "claimed"], ["Sadiq", "claimed"], ["support", "hyped"], ["reports", "claimed"], ["operation", "initiated"], ["Police", "claimed"], ["statement", "said"], ["statement", "said"], ["He", "assured"], ["operation", "was"], ["operation", "conducted operation"], ["operation", "launched"], ["operation", "launched"], ["operation", "conducted operation"], ["statement", "quoted her"], ["statement", "said"], ["statement", "said"], ["operation", "initiated"], ["statement", "read"], ["Wazir", "claimed"], ["statement", "said"], ["terrorism", "resurfaced"], ["Insaf", "claimed"], ["official", "claimed"], ["They", "claimed"], ["statement", "said"], ["operation", "launched"], ["statement", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["government", "is"], ["cent", "handed"], ["government", "face"], ["government", "wanted"], ["government", "asked RDA"], ["government", "offer opportunities"], ["customers", "increasing"], ["government", "handled situation"], ["cent", "decreased"], ["government", "considering idea"], ["government", "put"], ["government", "formed"], ["government", "release funds"], ["government", "misleading public"], ["government", "goes"], ["government", "implicated"], ["government", "ended lockdown"], ["sector", "be sector"], ["diseases", "increasing"], ["he", "called"], ["sector", "be sector"], ["government", "solve challenges"], ["government", "made efforts"], ["He", "called"], ["government", "disallowing millers"], ["government", "assured party"], ["government", "initiate inquiry"], ["workers", "called"], ["government", "allowed imp\u00adort"], ["inflation", "was level"], ["brigades", "called"], ["government", "agree"], ["government", "announced package"], ["government", "notified transfer"], ["government", "claiming"], ["by", "called"], ["that", "called"], ["government", "facing crisis"], ["government", "continue"], ["sector", "extends assistance"], ["Billoo", "called"], ["government", "allocated million"], ["government", "rejected allegations"], ["wages", "fixed"], ["Bibi", "called"], ["sector", "stifled"], ["government", "agree"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["government", "providing support"], ["government", "face"], ["government", "decided"], ["government", "rid it"], ["government", "striving"], ["government", "cleared dues"], ["government", "slashed Programme"], ["government", "considering idea"], ["government", "put"], ["government", "formed"], ["government", "release funds"], ["government", "misleading public"], ["government", "empanelled hospitals"], ["Constitution", "imposed restrictions"], ["government", "goes"], ["government", "implicated"], ["government", "ended lockdown"], ["administration", "hired official"], ["administration", "indicated"], ["government", "bring"], ["government", "wanted"], ["government", "using tactics"], ["government", "disallowing millers"], ["government", "assured party"], ["Constitution", "mandated"], ["government", "functioned"], ["government", "allo\u00adwed imports"], ["government", "provide prospects"], ["government", "asked Unit"], ["administration", "recovered bags"], ["government", "announced package"], ["government", "claiming"], ["government", "is"], ["government", "decided"], ["government", "facing crisis"], ["government", "stick"], ["administration", "reached area"], ["government", "working"], ["administration", "told countries"], ["government", "provided billion"], ["administration", "done nothing"], ["government", "fulfilled conditions"], ["government", "reclaim billions"], ["government", "construct houses"], ["universities", "entrusted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["police", "said"], ["police", "sought remand"], ["police", "announced measures"], ["police", "saying"], ["police", "continued"], ["police", "set checkpoints"], ["police", "claimed"], ["police", "said"], ["police", "deployed personnel"], ["police", "registered cases"], ["police", "said"], ["police", "said"], ["police", "arrested Siddiqullah"], ["police", "registered case"], ["police", "burnt house"], ["police", "picketed road"], ["police", "opened fire"], ["police", "registered case"], ["police", "claimed"], ["police", "got off"], ["police", "shifted him"], ["police", "arrested Ahmed"], ["police", "arrested persons"], ["police", "registered cases"], ["police", "found"], ["police", "failed"], ["police", "rushed"], ["police", "were"], ["police", "participate"], ["police", "conducted raids"], ["police", "had facilities"], ["police", "continue"], ["police", "linked incident"], ["police", "said"], ["police", "said"], ["friends", "laid"], ["police", "cordoned area"], ["police", "registered case"], ["police", "arrested youths"], ["police", "registered case"], ["police", "recovered tank"], ["police", "dispatched bodies"], ["IGP", "said"], ["police", "said"], ["police", "solved case"], ["police", "arrested Usman"], ["IGP", "told conference"], ["IGP", "said"], ["police", "begun search"], ["police", "failed"], ["police", "said"], ["police", "visited spot"], ["police", "registered case"], ["police", "engaged"], ["police", "said"], ["police", "said"], ["by", "laid"], ["police", "arrested youth"], ["police", "arrested suspect"], ["police", "conducted raids"], ["police", "arrested youth"], ["police", "said"], ["IGP", "said"], ["IGP", "said"], ["police", "claimed"], ["police", "said"], ["police", "said"], ["police", "said"], ["police", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["official", "said"], ["Organisation", "said"], ["Review", "said"], ["cent", "handed"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["patients", "suffering"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["Haque", "said"], ["Lal", "said"], ["Magsi", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["she", "said"], ["Dehwar", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["PC-2", "sent"], ["residents", "said"], ["It", "said"], ["They", "said"], ["Khan", "said"], ["Sher", "said"], ["official", "said"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["who", "sent"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["PC", "sent"], ["sources", "said"], ["Khan", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["minister", "said"], ["leader", "admitted"], ["he", "said"], ["They", "said"], ["sources", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["injured", "admitted"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["IGP", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["Khan", "said"], ["Gul", "said"], ["They", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["police", "said"], ["Kango", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["spokesperson", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["he", "said"], ["general", "said"], ["He", "said"], ["Taimoor", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["official", "said"], ["IO", "admitted"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["SSP", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["Najmi", "said"], ["source", "said"], ["He", "said"], ["Hussain", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["Nawab", "said"], ["statement", "said"], ["Kose", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["minister", "said"], ["reports", "said"], ["SSP", "said"], ["Sharif", "said"], ["Sharif", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["judge", "said"], ["He", "said"], ["report", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["Saad", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["It", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["team", "said"], ["Relations", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["It", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["ADB", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["Riaz", "said"], ["KARACHI", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["sources", "said"], ["official", "said"], ["districts", "affected"], ["police", "said"], ["Director", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["Abbasi", "said"], ["Imran", "said"], ["Abbasi", "said"], ["He", "said"], ["Imran", "said"], ["spokesman", "said"], ["they", "said"], ["Hussain", "said"], ["by", "admitted"], ["He", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["She", "said"], ["sources", "said"], ["Marth", "said"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["He", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["statement", "said"], ["he", "said"], ["samples", "sent"], ["General", "said"], ["minister", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["He", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["spokesman", "said"], ["He", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["Officials", "said"], ["sources", "said"], ["he", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["Hussain", "said"], ["Hussain", "said"], ["he", "said"], ["spokesman", "said"], ["official", "said"], ["Hussain", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["police", "said"], ["police", "said"], ["Khan", "said"], ["They", "said"], ["he", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["he", "said"], ["Hussain", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["he", "said"], ["she", "said"], ["Nawaz", "said"], ["report", "said"], ["speakers", "said"], ["They", "said"], ["He", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["official", "said"], ["agency", "said"], ["he", "said"], ["report", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Gondal", "said"], ["Police", "said"], ["He", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Sher", "said"], ["official", "said"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["police", "said"], ["Mann", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["He", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["section", "started"], ["police", "said"], ["Information", "said"], ["She", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["IGP", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["police", "found"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["implementation", "found"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["section", "rescued cat"], ["Police", "said"], ["sources", "said"], ["He", "said"], ["flyover", "found"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["officials", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["Taimoor", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["Hussain", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["Nawab", "said"], ["auditors", "said"], ["Saad", "said"], ["Gill", "said"], ["Zardari", "said"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["Police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["he", "said"], ["officials", "said"], ["It", "said"], ["Durrani", "said"], ["police", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["he", "said"], ["stance", "said"], ["He", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["It", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["ADB", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["Riaz", "said"], ["officer", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["sources", "said"], ["official", "said"], ["he", "said"], ["Nasar", "said"], ["police", "said"], ["Director", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["Abbasi", "said"], ["Imran", "said"], ["Abbasi", "said"], ["He", "said"], ["Imran", "said"], ["spokesman", "said"], ["they", "said"], ["Hussain", "said"], ["She", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Sharma", "said"], ["they", "said"], ["Ikram", "said"], ["sources", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["officials", "said"], ["voice", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["sources", "said"], ["he", "said"], ["officials", "said"], ["minister", "said"], ["he", "said"], ["Chaudhry", "said"], ["minister", "said"], ["officer", "said"], ["He", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["Kamal", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["nurses", "found"], ["He", "said"], ["government", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["officials", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["He", "said"], ["UN", "said"], ["He", "said"], ["He", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["he", "said"], ["Khan", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["order", "violated"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["he", "said"], ["she", "said"], ["Nawaz", "said"], ["report", "said"], ["speakers", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["Khan", "written letters"], ["Khan", "was"], ["Khan", "awarded ticket"], ["Ismail", "confirmed"], ["Khan", "said"], ["Khan", "attended meeting"], ["Khan", "told police"], ["Khan", "said"], ["Khan", "was"], ["Khan", "killed"], ["Khan", "revealed"], ["Khan", "allotted ticket"], ["Khan", "said"], ["Khan", "was leader"], ["Khan", "said"], ["Khan", "drowned"], ["Khan", "said"], ["Khan", "said"], ["Khan", "said"], ["Khan", "injured"], ["Khan", "told police"], ["Khan", "told Dawn"], ["Khan", "heard"], ["province", "know"], ["Khan", "said"], ["Khan", "told Dawn"], ["province", "produced grain"], ["Khan", "is Minister"], ["Khan", "moved Court"], ["Khan", "said"], ["Khan", "told Dawn"], ["Khan", "directed"], ["Khan", "transferred"], ["Khan", "used language"], ["Khan", "examined area"], ["Khan", "said"], ["districts", "include Dadu"], ["districts", "affected"], ["Khan", "said"], ["Khan", "expressed disconcertment"], ["Khan", "said"], ["Khan", "briefed"], ["Khan", "said"], ["Khan", "vying"], ["evening", "organised"], ["Khan", "vying"], ["rallies", "organised"], ["Khan", "injured"], ["Khan", "said"], ["Khan", "said"], ["Khan", "said"], ["rally", "organised"], ["Khan", "re"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["department", "probe issue"], ["officials", "assigned duties"], ["officials", "said"], ["officials", "said"], ["TMA", "had policy"], ["department", "wanted"], ["officials", "shifted bags"], ["officials", "said"], ["officials", "said"], ["officials", "shifted injured"], ["officials", "said"], ["department", "trying"], ["officials", "said"], ["department", "issued alert"], ["officials", "said"], ["officials", "visiting areas"], ["comments", "filed"], ["department", "is"], ["department", "wanted"], ["department", "stood"], ["officials", "told media"], ["officials", "said"], ["department", "issued alert"], ["officials", "said"], ["comments", "are"], ["officials", "searched house"], ["officials", "build houses"], ["officials", "said"], ["department", "launched inquiry"], ["officials", "said"], ["department", "take measures"], ["department", "constituted committee"], ["officials", "said"], ["officials", "said"], ["officials", "said"], ["comments", "misinterpreted"], ["department", "organised conference"], ["comments", "came"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["funds", "released"], ["official", "said"], ["Organisation", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Gondal", "said"], ["Police", "said"], ["He", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Sher", "said"], ["official", "said"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["police", "said"], ["Mann", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["premier", "plans"], ["FO", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["They", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Mohammad", "said"], ["IGP", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["Khan", "said"], ["Gul", "said"], ["They", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["Hussain", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["statement", "said"], ["report", "said"], ["Gill", "said"], ["Zardari", "said"], ["development", "came"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["SSP", "said"], ["province", "produced grain"], ["Sharif", "said"], ["Sharif", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["judge", "said"], ["He", "said"], ["plans", "moved"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["he", "said"], ["officials", "said"], ["It", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["SHO", "said"], ["He", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["he", "said"], ["stance", "said"], ["He", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["It", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["ADB", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Liu", "said"], ["They", "said"], ["Rafique", "said"], ["bench", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["Abbasi", "said"], ["Imran", "said"], ["Abbasi", "said"], ["He", "said"], ["funds", "invested"], ["sources", "said"], ["Khan", "said"], ["Hussain", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["Sharma", "said"], ["they", "said"], ["Ikram", "said"], ["sources", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["officials", "said"], ["act", "have"], ["She", "said"], ["he", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["statement", "said"], ["Patel", "said"], ["General", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["province", "reject result"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["spokesman", "said"], ["He", "said"], ["government", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["Usman", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["He", "said"], ["UN", "said"], ["He", "said"], ["He", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["he", "said"], ["Khan", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Nawaz", "said"], ["You", "have"], ["he", "said"], ["she", "said"], ["Nawaz", "said"], ["report", "said"], ["speakers", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["SC", "Organization"], ["Sudan", "Location"], ["official", "said"], ["Organisation", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["she", "said"], ["Dehwar", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["FO", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["They", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Mohammad", "said"], ["IGP", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["chief", "said"], ["Mengal", "said"], ["statement", "said"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["he", "said"], ["general", "said"], ["He", "said"], ["Taimoor", "said"], ["Chapman", "said"], ["Babar", "said"], ["wing", "said"], ["They", "said"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["Shehbaz", "said"], ["Talks", "said"], ["he", "said"], ["He", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["Hussain", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["statement", "said"], ["report", "said"], ["Kose", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["minister", "said"], ["reports", "said"], ["SSP", "said"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["he", "said"], ["officials", "said"], ["It", "said"], ["PDMA", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["who", "suspected"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["team", "said"], ["Relations", "said"], ["ISPR", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["It", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["ADB", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Liu", "said"], ["They", "said"], ["Rafique", "said"], ["bench", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["Abbasi", "said"], ["Imran", "said"], ["Abbasi", "said"], ["He", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["Shehzad", "said"], ["Hussain", "said"], ["She", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["She", "said"], ["sources", "said"], ["Marth", "said"], ["by", "booked"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["He", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["statement", "said"], ["Patel", "said"], ["General", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["Ali", "suspected"], ["Khan", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Ali", "suspected"], ["source", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["spokesman", "said"], ["He", "said"], ["government", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["he", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["police", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["Hussain", "said"], ["Hussain", "said"], ["he", "said"], ["spokesman", "said"], ["official", "said"], ["Hussain", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["police", "said"], ["police", "said"], ["Khan", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["he", "said"], ["Khan", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["minister", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["They", "said"], ["he", "said"], ["minister", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["police", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["SC", "Organization"], ["members", "opposed"], ["members", "taken"], ["members", "died"], ["members", "injured"], ["members", "spoke"], ["meeting", "attended"], ["community", "comprises Pakistanis"], ["members", "making mockery"], ["by", "attended"], ["by", "attended"], ["that", "attended"], ["by", "attended"], ["by", "attended"], ["members", "questioned logic"], ["members", "holed"], ["community", "came"], ["members", "injured"], ["members", "risen"], ["media", "was source"], ["community", "cover government"], ["members", "bombarded him"], ["ceremony", "attended"], ["by", "attended"], ["by", "attended"], ["members", "hold walks"], ["by", "attended"], ["by", "attended"], ["by", "attended"], ["by", "attended"], ["by", "attended"], ["that", "attended"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["minister", "considered"], ["role", "defined"], ["minister", "visited district"], ["revolution", "continue"], ["minister", "said"], ["minister", "asked CBA"], ["minister", "said"], ["minister", "maintained"], ["actors", "continue"], ["people", "martyred"], ["minister", "said"], ["minister", "expressed dissatisfaction"], ["Wahab", "martyred"], ["minister", "emphasised importance"], ["minister", "said"], ["minister", "talking"], ["charges", "perform"], ["development", "came"], ["minister", "said"], ["official", "martyred"], ["minister", "plans"], ["General", "continue"], ["minister", "said"], ["negotiations", "continue"], ["role", "is"], ["minister", "retired"], ["minister", "said"], ["minister", "took note"], ["constable", "martyred"], ["minister", "said"], ["minister", "said"], ["journalists", "are"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["SC", "Organization"], ["some", "registered"], ["police", "said"], ["FIR", "registered"], ["police", "sought remand"], ["police", "announced measures"], ["police", "saying"], ["police", "continued"], ["police", "set checkpoints"], ["themselves", "registered"], ["police", "claimed"], ["police", "said"], ["case", "registered"], ["police", "had"], ["by", "registered"], ["police", "registered cases"], ["police", "said"], ["police", "said"], ["police", "arrested Siddiqullah"], ["police", "registered case"], ["FIRs", "registered"], ["police", "killing men"], ["police", "failed"], ["police", "try"], ["police", "registered case"], ["police", "arrested gamblers"], ["police", "killed man"], ["police", "shifted him"], ["police", "arrested Ahmed"], ["police", "arrested persons"], ["by", "registered"], ["police", "registered cases"], ["police", "found"], ["police", "failed"], ["police", "said"], ["police", "said"], ["police", "destroyed hideouts"], ["case", "reported"], ["by", "registered"], ["police", "had facilities"], ["police", "arrested lifters"], ["police", "said"], ["police", "announced bounty"], ["police", "said"], ["entries", "registered"], ["police", "claimed"], ["police", "collecting details"], ["police", "impounded van"], ["police", "said"], ["police", "collected evidence"], ["police", "recovered tank"], ["police", "dispatched bodies"], ["police", "said"], ["copies", "registered"], ["police", "used force"], ["police", "solved case"], ["police", "arrested Usman"], ["FIR", "registered"], ["police", "said"], ["police", "failed"], ["police", "said"], ["police", "visited spot"], ["case", "instituted"], ["case", "made"], ["police", "registered case"], ["FIR", "registered"], ["police", "said"], ["by", "registered"], ["police", "were"], ["case", "registered"], ["police", "registered case"], ["police", "arrested youth"], ["case", "transferred"], ["police", "granted bail"], ["police", "conducted raids"], ["police", "arrested youth"], ["police", "said"], ["police", "arrested suspects"], ["FIR", "registered"], ["police", "claimed"], ["police", "intensified security"], ["police", "arrested suspects"], ["FIR", "registered"], ["by", "registered"], ["police", "said"], ["police", "said"], ["police", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["PML", "Organization"], ["ECP", "Organization"], ["official", "said"], ["Organisation", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["Police", "said"], ["He", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Sher", "said"], ["official", "said"], ["things", "remain"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Khan", "said"], ["FO", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["He", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["police", "said"], ["Information", "said"], ["She", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["statement", "denied"], ["They", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "added"], ["statement", "added"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["DG", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["Khan", "said"], ["Gul", "said"], ["They", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["chief", "said"], ["Mengal", "said"], ["statement", "said"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["statement", "quoted her"], ["He", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["Hussain", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["statement", "said"], ["report", "said"], ["Kose", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["mandate", "stolen"], ["He", "said"], ["Sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["minister", "said"], ["reports", "said"], ["SSP", "said"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["Sherpao", "said"], ["Saad", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["team", "said"], ["Relations", "said"], ["ISPR", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["ADB", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Liu", "said"], ["They", "said"], ["Rafique", "said"], ["bench", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["official", "said"], ["he", "said"], ["Saeed", "said"], ["Officials", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["He", "said"], ["chief", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["They", "said"], ["general", "said"], ["Abbasi", "said"], ["Imran", "said"], ["Abbasi", "said"], ["He", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Hussain", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["nothing", "said"], ["Sharma", "said"], ["they", "said"], ["Ikram", "said"], ["sources", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["He", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Party", "said"], ["He", "said"], ["he", "said"], ["Sources", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["statement", "said"], ["Patel", "said"], ["General", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["Kamal", "said"], ["Sattar", "said"], ["Kaira", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["Officials", "said"], ["sources", "said"], ["Khattak", "said"], ["he", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["police", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["Hussain", "said"], ["Hussain", "said"], ["he", "said"], ["spokesman", "said"], ["official", "said"], ["Hussain", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["police", "said"], ["police", "said"], ["Khan", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["he", "said"], ["Khan", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["he", "said"], ["she", "said"], ["Nawaz", "said"], ["report", "said"], ["ISPR", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["minister", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["police", "said"], ["he", "said"], ["She", "said"], ["Ashraf", "said"], ["Gohati", "said"], ["Hussain", "said"], ["Hussain", "said"], ["It", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["SC", "Organization"], ["Scores", "attended Jalsa"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["SC", "Organization"], ["team", "informed premier"], ["Lahore", "named"], ["Lahore", "is one"], ["Authority", "set"], ["by", "set"], ["team", "managed"], ["team", "draw series"], ["ticket", "withdrawn"], ["team", "head"], ["by", "set"], ["team", "participate"], ["team", "used vehicle"], ["team", "refused"], ["it", "set"], ["which", "set"], ["event", "arranged"], ["team", "meet team"], ["bridge", "collapsed"], ["Islamabad", "avoid"], ["by", "set"], ["Islamabad", "city"], ["Islamabad", "city"], ["team", "taking suspects"], ["event", "organised"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["PML", "Organization"], ["ECP", "Organization"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["India", "Location"], ["SC", "Organization"], ["government", "face"], ["time", "was hour"], ["Pakistan", "had"], ["police", "had"], ["hospitals", "had"], ["by", "provided"], ["Peira", "had"], ["soldiers", "martyred"], ["soldiers", "martyred"], ["by", "provided"], ["Pakistan", "had"], ["he", "had"], ["land", "provided"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["India", "Location"], ["Khan", "Person"], ["SC", "Organization"], ["Sharif", "said"], ["projects", "made"], ["project", "initiated"], ["projects", "are"], ["Nisar", "played role"], ["CJP", "questioned authenticity"], ["Nisar", "termed leak"], ["main", "accused"], ["Shehbaz", "said"], ["accused", "arrested"], ["Shehbaz", "greeted Ahmed"], ["Shehbaz", "said"], ["Sharif", "stated"], ["CJP", "tried"], ["operation", "initiated"], ["Sharif", "said"], ["accused", "arrested"], ["CJP", "said"], ["Sharif", "was"], ["Sharif", "ordered departments"], ["Nisar", "was part"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Dawn", "Person"], ["Balochistan", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["ECP", "Organization"], ["government", "allocated billion"], ["official", "said"], ["Organisation", "said"], ["Review", "said"], ["report", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["government", "keeping eye"], ["government", "working"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Tahir", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["government", "striving"], ["Sher", "said"], ["official", "said"], ["Wajid", "said"], ["government", "approved funds"], ["government", "cleared dues"], ["Kundi", "said"], ["He", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["police", "said"], ["government", "handled situation"], ["Mir", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Asakawa", "said"], ["FO", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["government", "setting parks"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["minister", "said"], ["government", "considering idea"], ["government", "put"], ["government", "formed"], ["government", "formed"], ["Police", "said"], ["sources", "said"], ["government", "released Rs19.59bn"], ["Hussain", "were"], ["Elahi", "said"], ["Hussain", "offered prayers"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["police", "said"], ["Hussain", "told correspondent"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["They", "said"], ["government", "empanelled hospitals"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["government", "formed committee"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["Kamal", "said"], ["government", "goes"], ["government", "decide"], ["Tarar", "said"], ["he", "said"], ["government", "implicated"], ["Khan", "said"], ["minister", "said"], ["government", "remained"], ["He", "said"], ["official", "said"], ["officers", "said"], ["government", "ended lockdown"], ["They", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["spokesperson", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["government", "bring"], ["premier", "said"], ["government", "solve challenges"], ["he", "said"], ["he", "said"], ["He", "said"], ["government", "using tactics"], ["He", "said"], ["he", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["government", "deputed teams"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["government", "continues"], ["he", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Fawad", "said"], ["He", "said"], ["He", "said"], ["Mughal", "said"], ["They", "said"], ["Shah", "said"], ["They", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["government", "allowed imp\u00adort"], ["statement", "said"], ["government", "provide prospects"], ["Gill", "said"], ["Zardari", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["Police", "said"], ["police", "said"], ["officials", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["government", "agree"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["Hussain", "filed FIR"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["petitioners", "said"], ["government", "announced package"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["government", "accepted proposals"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Chaudhry", "said"], ["he", "said"], ["Hussain", "transferred"], ["Ltd", "said"], ["government", "claiming"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["team", "said"], ["Relations", "said"], ["ISPR", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["He", "said"], ["Pervaiz", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["It", "said"], ["commissioner", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["ADB", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["government", "is"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["complainant", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["government", "decided"], ["he", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Bacha", "said"], ["He", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["Khattak", "said"], ["he", "said"], ["Khalid", "said"], ["He", "said"], ["police", "said"], ["sources", "said"], ["Khan", "said"], ["Sources", "said"], ["Shehzad", "said"], ["Hussain", "said"], ["government", "announced Conferment"], ["Nayyar", "said"], ["Fahim", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["government", "pointed"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["She", "said"], ["they", "said"], ["Ikram", "said"], ["sources", "said"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["officials", "said"], ["He", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Party", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["sources", "said"], ["he", "said"], ["Patel", "said"], ["officials", "said"], ["General", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["government", "expressed concerns"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["government", "constructed complex"], ["Malik", "said"], ["he", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["government", "rejected allegations"], ["He", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["Sources", "said"], ["He", "said"], ["Siddiqui", "said"], ["Kaira", "said"], ["government", "plunged Pakistan"], ["He", "said"], ["He", "said"], ["minister", "said"], ["government", "fulfilled conditions"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["Officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["Usman", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["Hussain", "told Dawn"], ["Hussain", "told Dawn"], ["chief", "said"], ["He", "said"], ["Hussain", "injured"], ["spokesman", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["Nayyer", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["Haq", "said"], ["government", "address concerns"], ["chief", "said"], ["Hussain", "said"], ["Sumbal", "said"], ["Khan", "said"], ["police", "said"], ["government", "construct houses"], ["He", "said"], ["government", "agree"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["he", "said"], ["she", "said"], ["Nawaz", "said"], ["report", "said"], ["ISPR", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["minister", "said"], ["Minister", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["government", "publish Paper"], ["Sharif", "said"], ["FO", "said"], ["he", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["owner", "run"], ["that", "run"], ["they", "run"], ["it", "filed"], ["Mehrunnissa", "filed"], ["by", "filed"], ["all", "run"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["officers", "posted"], ["year", "open"], ["duty", "takes precedence"], ["Latif", "posted"], ["collection", "was million"], ["duty", "fell"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["official", "said"], ["agency", "said"], ["he", "said"], ["report", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["letter", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["Police", "said"], ["He", "said"], ["official", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["economy", "is"], ["he", "said"], ["Jalbani", "said"], ["investment", "needs"], ["needs", "become"], ["Khan", "said"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["They", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Mohammad", "said"], ["IGP", "said"], ["release", "said"], ["he", "said"], ["he", "said"], ["DG", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["Minister", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["he", "said"], ["general", "said"], ["He", "said"], ["Taimoor", "said"], ["Chapman", "said"], ["Babar", "said"], ["wing", "said"], ["They", "said"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["Shehbaz", "said"], ["Talks", "said"], ["he", "said"], ["He", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["he", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["auditors", "said"], ["Saad", "said"], ["report", "said"], ["Kose", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["Police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sammo", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["secretary", "said"], ["He", "said"], ["reports", "said"], ["SSP", "said"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["lot", "needs"], ["report", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["Saad", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["team", "said"], ["Relations", "said"], ["ISPR", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["It", "said"], ["commissioner", "said"], ["He", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["he", "said"], ["Riaz", "said"], ["officer", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Liu", "said"], ["sources", "said"], ["official", "said"], ["he", "said"], ["bench", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["official", "said"], ["he", "said"], ["dealer", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["He", "said"], ["chief", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["They", "said"], ["general", "said"], ["Abbasi", "said"], ["Imran", "said"], ["Abbasi", "said"], ["doctor", "said"], ["He", "said"], ["police", "said"], ["sources", "said"], ["Khan", "said"], ["Sources", "said"], ["Shehzad", "said"], ["Hussain", "said"], ["embassy", "said"], ["Nayyar", "said"], ["Fahim", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["She", "said"], ["sources", "said"], ["Marth", "said"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["officials", "said"], ["He", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Party", "said"], ["He", "said"], ["he", "said"], ["Sources", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["statement", "said"], ["Spektor", "said"], ["Shah", "said"], ["officials", "said"], ["Iqbal", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["he", "said"], ["Jappa", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["Siddiqui", "said"], ["He", "said"], ["Siddiqui", "said"], ["Kaira", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["Officials", "said"], ["sources", "said"], ["Khattak", "said"], ["he", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["he", "said"], ["spokesman", "said"], ["UN", "said"], ["Farhan", "said"], ["Hussain", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Khan", "said"], ["They", "said"], ["They", "said"], ["Sources", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Hussain", "said"], ["Sumbal", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["minister", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["Minister", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["they", "said"], ["Sharif", "said"], ["FO", "said"], ["he", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Balochistan", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["PTI", "constituted committees"], ["members", "opposed"], ["PTI", "stands"], ["PTI", "is"], ["PTI", "seeks investigation"], ["PTI", "requested SC"], ["PTI", "dissolve assemblies"], ["PTI", "disputed reports"], ["party", "compromise"], ["Asif", "attend meeting"], ["PTI", "made efforts"], ["PTI", "was"], ["PTI", "move court"], ["PTI", "made mistakes"], ["PTI", "invited"], ["Asif", "clarified"], ["PTI", "believed that"], ["party", "is"], ["Latif", "posted"], ["PTI", "represented"], ["party", "established platform"], ["PTI", "ruled Pakhtunkhwa"], ["PTI", "go"], ["PTI", "rejected attempts"], ["dialogue", "stands"], ["party", "decided"], ["Asif", "see outcome"], ["party", "rejected census"], ["PTI", "presented agenda"], ["PTI", "was"], ["Asif", "said"], ["Asif", "criticised minister"], ["PTI", "conducted rally"], ["PTI", "be loser"], ["PTI", "was"], ["PTI", "wanted elections"], ["PTI", "wants elections"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["India", "Location"], ["Khan", "Person"], ["Sudan", "Location"], ["congregations", "held"], ["meeting", "held"], ["bench", "held"], ["funeral", "held"], ["speaker", "asked head"], ["inquiry", "held"], ["speaker", "wrote"], ["speaker", "said"], ["sitting", "began"], ["parliament", "has objections"], ["prayer", "held"], ["parliament", "stood"], ["parliament", "rejected decision"], ["negotiations", "held"], ["speaker", "said"], ["encounter", "held"], ["polls", "held"], ["parliament", "is"], ["meeting", "held"], ["people", "sitting"], ["parliament", "surrender"], ["NA", "meet"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["candidates", "have"], ["officials", "directed"], ["court", "suspended operation"], ["court", "direct FBR"], ["court", "directed superintendent"], ["ex", "questioned authenticity"], ["court", "used"], ["percent", "have"], ["court", "functioning"], ["court", "restrain respondents"], ["court", "wanted"], ["court", "do justice"], ["court", "granted bail"], ["court", "ordered investigation"], ["court", "was"], ["court", "closed proceedings"], ["PM", "ordered Authority"], ["cabinet", "told"], ["court", "is"], ["Khan", "directed"], ["court", "extended bail"], ["by", "directed"], ["documents", "sought"], ["moot", "told"], ["court", "forwarded application"], ["court", "restrain respondents"], ["act", "have"], ["PTI", "have"], ["You", "have"], ["journalists", "have"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["official", "said"], ["agency", "said"], ["he", "said"], ["report", "said"], ["source", "said"], ["Chaudhry", "said"], ["minister", "considered"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["Haque", "said"], ["Lal", "said"], ["Magsi", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["Iqbal", "said"], ["he", "said"], ["Tahir", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["minister", "visited district"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Khan", "said"], ["minister", "thanked governments"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Zardari", "said"], ["minister", "said"], ["minister", "talked"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["minister", "came"], ["He", "said"], ["he", "said"], ["police", "said"], ["Information", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["They", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Mohammad", "said"], ["IGP", "said"], ["minister", "extended support"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["Constitution", "imposed restrictions"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["Asif", "said"], ["Khan", "said"], ["Gul", "said"], ["They", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["he", "said"], ["general", "said"], ["He", "said"], ["Taimoor", "said"], ["Chapman", "said"], ["Babar", "said"], ["wing", "said"], ["They", "said"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["judiciary", "ridiculing Assembly"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["Shehbaz", "said"], ["Talks", "said"], ["he", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["statement", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["minister", "informed meeting"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["he", "said"], ["minister", "said judiciary"], ["bureau", "said"], ["Kamal", "said"], ["Chaudhry", "said"], ["minister", "talking"], ["Fawad", "said"], ["He", "said"], ["He", "said"], ["Mughal", "said"], ["They", "said"], ["Shah", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["statement", "said"], ["Saad", "said"], ["report", "said"], ["Kose", "said"], ["Zardari", "said"], ["minister", "been"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["Sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["minister", "taken vote"], ["he", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["minister", "plans"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["minister", "called what"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["Baloch", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["Afridi", "said"], ["spokesman", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["Pervaiz", "said"], ["who", "said"], ["He", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["Chattha", "said"], ["He", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["Bank", "said"], ["It", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Liu", "said"], ["sources", "said"], ["official", "said"], ["he", "said"], ["bench", "said"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["he", "said"], ["dealer", "said"], ["president", "said"], ["Officials", "said"], ["He", "said"], ["police", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["he", "said"], ["Khalid", "said"], ["Abbasi", "said"], ["doctor", "said"], ["He", "said"], ["police", "said"], ["sources", "said"], ["Khan", "said"], ["Sources", "said"], ["they", "said"], ["Hussain", "said"], ["He", "said"], ["She", "said"], ["he", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["He", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["nothing", "said"], ["Sharma", "said"], ["they", "said"], ["Ikram", "said"], ["sources", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["minister", "retired"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["statement", "said"], ["Spektor", "said"], ["Shah", "said"], ["officials", "said"], ["Iqbal", "said"], ["minister", "said"], ["Kaira", "said"], ["Constitution", "considered"], ["he", "said"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["Malik", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Sources", "said"], ["source", "said"], ["Shaheen", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["Sources", "said"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Asif", "said"], ["he", "said"], ["minister", "said"], ["spokesman", "said"], ["He", "said"], ["government", "said"], ["he", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["he", "said"], ["He", "said"], ["coalition", "said"], ["UN", "said"], ["Farhan", "said"], ["Hussain", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Mansoor", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Hussain", "said"], ["Sumbal", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Nawaz", "said"], ["report", "said"], ["ISPR", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["doctor", "said"], ["Khattak", "said"], ["he", "said"], ["Minister", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["police", "said"], ["he", "said"], ["She", "said"], ["Ashraf", "said"], ["Gohati", "said"], ["Hussain", "said"], ["Hussain", "said"], ["who", "said"], ["he", "said"], ["Sharif", "said"], ["FO", "said"], ["he", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["Khan", "said"], ["he", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["authorities", "sought measures"], ["situation", "serve"], ["Sadiq", "claimed"], ["police", "claimed"], ["situation", "induced Cabinet"], ["situation", "getting"], ["authorities", "continue work"], ["authorities", "suggested"], ["Police", "claimed"], ["police", "claimed"], ["authorities", "step efforts"], ["situation", "was"], ["authority", "claimed"], ["authorities", "admit"], ["situation", "tackled"], ["He", "claimed"], ["This", "claimed"], ["situation", "was"], ["situation", "was"], ["MD", "claimed"], ["Wazir", "claimed"], ["He", "claimed"], ["they", "claimed"], ["authorities", "screened passenegrs"], ["that", "claimed"], ["They", "claimed"], ["patient", "claimed"], ["Akbar", "contesting"], ["situation", "prompt labourers"], ["Siddiqui", "claimed"], ["Khan", "claimed"], ["police", "claimed"], ["leader", "claimed"], ["by", "claimed"], ["Akbar", "appeared"], ["Amin", "claimed"], ["Khan", "claimed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["PPP", "play role"], ["PPP", "supported cause"], ["candidate", "complained"], ["Sadia", "returned"], ["PPP", "is architect"], ["PPP", "treat Karachi"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["court", "suspended operation"], ["tenure", "extended"], ["court", "compelled"], ["court", "used"], ["court", "help"], ["court", "was"], ["court", "rejected petition"], ["court", "wanted"], ["court", "provided opportunity"], ["bail", "extended"], ["court", "sent judge"], ["court", "acquitted accused"], ["court", "ordered investigation"], ["court", "directed parties"], ["court", "is"], ["bail", "taken"], ["court", "extended bail"], ["May", "fixed"], ["court", "held"], ["court", "forwarded application"], ["court", "restrain respondents"], ["practice", "extended"], ["court", "ruled"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["He", "added"], ["they", "added"], ["anonymity", "added"], ["He", "added"], ["They", "added"], ["he", "added"], ["Langer", "added"], ["it", "added"], ["he", "added"], ["he", "added"], ["she", "added"], ["Officials", "added"], ["statement", "added"], ["they", "added"], ["He", "added"], ["they", "added"], ["he", "added"], ["spokesman", "added"], ["he", "added"], ["SSP", "added"], ["Sarwar", "added"], ["He", "added"], ["he", "added"], ["He", "added"], ["Maulana", "added"], ["they", "added"], ["He", "added"], ["it", "added"], ["general", "added"], ["they", "added"], ["he", "added"], ["Ishaq", "added"], ["He", "added"], ["he", "added"], ["Nawaz", "added"], ["he", "added"], ["letter", "added"], ["They", "added"], ["he", "added"], ["they", "added"], ["they", "added"], ["Lucman", "added"], ["he", "added"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["Haque", "said"], ["Lal", "said"], ["Magsi", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["Police", "said"], ["He", "said"], ["official", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Khan", "said"], ["it", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["vehicles", "allowed"], ["mafia", "dealt"], ["police", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["he", "said"], ["Shaikh", "said"], ["minister", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["police", "said"], ["Information", "said"], ["She", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["area", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["spokesperson", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["He", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["he", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["area", "began"], ["They", "said"], ["Shah", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["statement", "said"], ["Saad", "said"], ["report", "said"], ["Kose", "said"], ["Zardari", "said"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["Sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["vehicles", "allowed"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["judge", "said"], ["He", "said"], ["report", "said"], ["petitioners", "said"], ["boards", "allowed"], ["He", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["ECC", "allowed"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["Baloch", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["Afridi", "said"], ["spokesman", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["Pervaiz", "said"], ["who", "said"], ["He", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["Chattha", "said"], ["He", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["Bank", "said"], ["It", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["area", "involved provinces"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["complainant", "said"], ["They", "said"], ["Rafique", "said"], ["it", "said"], ["Nasar", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["He", "said"], ["chief", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["Qureshi", "said"], ["They", "said"], ["president", "said"], ["Khattak", "said"], ["Abbasi", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["area", "has heavyweights"], ["they", "said"], ["Hussain", "said"], ["He", "said"], ["She", "said"], ["he", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["She", "said"], ["sources", "said"], ["Marth", "said"], ["counsel", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["area", "has heavyweights"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["sources", "said"], ["he", "said"], ["Patel", "said"], ["doctor", "said"], ["manufacturing", "growing"], ["General", "said"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["area", "falls"], ["Malik", "said"], ["he", "said"], ["He", "said"], ["Yaseen", "said"], ["Yaseen", "said"], ["he", "said"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["sellers", "allowed"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["Sources", "said"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Asif", "said"], ["Asif", "said"], ["He", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["three", "allowed"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["coalition", "said"], ["UN", "said"], ["Farhan", "said"], ["Hussain", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Mansoor", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["cars", "allowed"], ["Khan", "said"], ["secretary", "said"], ["complainant", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["president", "said"], ["Nawaz", "said"], ["he", "said"], ["she", "said"], ["minister", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["notification", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["police", "said"], ["he", "said"], ["She", "said"], ["Ashraf", "said"], ["Gohati", "said"], ["Hussain", "said"], ["Hussain", "said"], ["who", "said"], ["he", "said"], ["statement", "said"], ["He", "said"], ["by", "allowed"], ["he", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["counsel", "said"], ["Khan", "said"], ["he", "said"], ["official", "said"], ["Sources", "said"], ["officials", "said"], ["Nawaz", "said"], ["She", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["committee", "issued direction"], ["report", "said"], ["report", "needs"], ["committee", "hold meeting"], ["report", "says"], ["report", "shows"], ["committee", "comprises secretary"], ["committee", "selected plan"], ["report", "issued"], ["committee", "observed"], ["issue", "becoming reason"], ["report", "offers recommendations"], ["report", "came"], ["that", "committee"], ["report", "prepared"], ["report", "said"], ["report", "estimated"], ["report", "disposed"], ["committee", "submits report"], ["report", "claimed"], ["report", "said"], ["report", "completed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["meeting", "decided"], ["meeting", "take stock"], ["programme", "approved"], ["meeting", "looked"], ["meeting", "lend strength"], ["meeting", "discuss possibility"], ["meeting", "learnt"], ["meeting", "decided"], ["meeting", "approved appointment"], ["meeting", "apprised"], ["by", "approved"], ["meeting", "appreciated role"], ["by", "approved"], ["meeting", "deliberated improvements"], ["meeting", "is"], ["that", "approved"], ["leaders", "meeting"], ["meeting", "attended"], ["meeting", "decided"], ["meeting", "called"], ["meeting", "decided"], ["meeting", "attended"], ["meeting", "preside"], ["It", "mentioned"], ["IPPs", "operating"], ["KE", "operating"], ["meeting", "held"], ["trial", "targeting strain"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["turns", "established"], ["team", "established"], ["plans", "moved"], ["unit", "established"], ["rooms", "established"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["CDA", "going"], ["CDA", "allotted plots"], ["work", "launched"], ["work", "is"], ["work", "is"], ["CDA", "initiated number"], ["development", "came"], ["agency", "start"], ["CDA", "going"], ["planning", "pursued"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["PPP", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["Pakistan", "exported tonnes"], ["Pakistan", "stepped efforts"], ["by", "brought"], ["militants", "had"], ["Pakistan", "moving"], ["Pakistan", "had"], ["Pakistan", "bound"], ["number", "returned"], ["Pakistan", "appears ninth"], ["body", "brought"], ["by", "brought"], ["notice", "said"], ["Pakistan", "faced"], ["Peira", "had"], ["Pakistan", "purchase oil"], ["Pakistan", "buy fuels"], ["coffins", "brought"], ["he", "had"], ["Pakistan", "play dayer"], ["minister", "returned"], ["Akhtar", "had"], ["Pakistan", "dealing"], ["Pakistan", "facing"], ["who", "had"], ["Pakistan", "made progress"], ["Pakistan", "provided authorities"], ["bench", "had"], ["Pakistan", "need training"], ["Pakistan", "was"], ["Pakistan", "was"], ["Pakistan", "had position"], ["Pakistan", "maintains policy"], ["Pakistan", "ended ceasefire"], ["Pakistan", "was market"], ["Pakistan", "had"], ["Pakistan", "trying"], ["notice", "taken"], ["Pakistan", "was state"], ["Pakistan", "was"], ["Pakistan", "try"], ["Pakistan", "has ability"], ["Pakistan", "was"], ["Pakistan", "is member"], ["trial", "had"], ["he", "had"], ["Karachi", "brought"], ["story", "brought"], ["Pakistan", "winds"], ["it", "had"], ["notice", "reads"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["police", "said"], ["police", "sought remand"], ["police", "announced measures"], ["police", "saying"], ["police", "continued"], ["police", "set checkpoints"], ["police", "taken Singh"], ["police", "took him"], ["police", "reached spot"], ["police", "deployed personnel"], ["case", "registered"], ["police", "registered cases"], ["police", "said"], ["police", "claimed"], ["tenure", "extended"], ["police", "identified deceased"], ["police", "nabbed driver"], ["police", "killing men"], ["police", "failed"], ["police", "try"], ["police", "registered case"], ["police", "arrested gamblers"], ["police", "killed man"], ["police", "shifted him"], ["police", "arrested Ahmed"], ["coverage", "extended"], ["police", "arrested persons"], ["police", "registered cases"], ["police", "found"], ["timeline", "extended"], ["UN", "warned"], ["police", "failed"], ["police", "said"], ["police", "said"], ["police", "destroyed hideouts"], ["case", "reported"], ["police", "granted bail"], ["system", "extended"], ["police", "continue"], ["police", "linked incident"], ["police", "said"], ["incentives", "extended"], ["police", "said"], ["police", "cordoned area"], ["bail", "extended"], ["police", "impounded van"], ["police", "said"], ["police", "collected evidence"], ["police", "recovered tank"], ["police", "said"], ["police", "said"], ["police", "said"], ["police", "used force"], ["police", "solved case"], ["police", "arrested Usman"], ["PDMA", "warned"], ["police", "said"], ["police", "arrested two"], ["leader", "warned"], ["police", "violated sanctity"], ["police", "said"], ["police", "visited spot"], ["police", "said"], ["case", "made"], ["police", "arrested suspect"], ["police", "said"], ["police", "were"], ["protesters", "warned"], ["police", "said"], ["police", "identified rickshaw"], ["police", "registered case"], ["police", "arrested suspect"], ["police", "conducted raids"], ["Sindhu", "warned"], ["police", "registered case"], ["police", "said"], ["police", "rounded persons"], ["He", "warned"], ["police", "claimed"], ["police", "taken control"], ["police", "said"], ["police", "rounded persons"], ["police", "said"], ["police", "said"], ["They", "warned"], ["police", "said"], ["he", "warned"], ["police", "said"], ["police", "registered case"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["by", "registered"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["It", "said"], ["letter", "said"], ["Haque", "said"], ["police", "sought remand"], ["Lal", "said"], ["Magsi", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["police", "announced measures"], ["she", "said"], ["Dehwar", "said"], ["case", "is phenomenon"], ["police", "saying"], ["police", "saying"], ["He", "said"], ["He", "said"], ["official", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["police", "continued"], ["police", "arrested robber"], ["He", "said"], ["police", "set checkpoints"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["themselves", "registered"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["Wire", "said"], ["police", "took him"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Khan", "said"], ["it", "said"], ["Jaklenec", "said"], ["they", "said"], ["they", "said"], ["police", "deployed personnel"], ["police", "had"], ["he", "said"], ["he", "said"], ["case", "registered"], ["by", "registered"], ["police", "registered cases"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["police", "claimed"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["chairman", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["police", "arrested Siddiqullah"], ["They", "said"], ["sources", "said"], ["police", "nabbed driver"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["he", "said"], ["police", "failed"], ["police", "opened fire"], ["police", "try"], ["police", "registered case"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["police", "arrested gamblers"], ["police", "killed man"], ["police", "shifted him"], ["police", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["police", "arrested persons"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["by", "registered"], ["police", "registered cases"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["Khan", "said"], ["Gul", "said"], ["They", "said"], ["PBS", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["police", "arrested lifters"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["police", "failed"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["police", "rushed"], ["KARACHI", "said"], ["They", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["He", "said"], ["police", "participate"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["spokesperson", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["counsel", "said"], ["police", "conducted raids"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["police", "continue"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["he", "said"], ["general", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["police", "linked incident"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["Qureshi", "said"], ["Aslam", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["FIR", "registered"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["by", "registered"], ["police", "claimed"], ["He", "said"], ["police", "cordoned area"], ["police", "collecting details"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["police", "registered case"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["police", "impounded van"], ["he", "said"], ["police", "arrested youths"], ["bureau", "said"], ["Kamal", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["Shah", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["police", "collected evidence"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["police", "recovered tank"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["auditors", "said"], ["Sabih", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["police", "offered information"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["NIH", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["reports", "said"], ["SSP", "said"], ["police", "used force"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["police", "solved case"], ["police", "arrested Usman"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["FIR", "registered"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["police", "arrested two"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["police", "failed"], ["Establish\u00adment", "said"], ["premier", "said"], ["Relations", "said"], ["ISPR", "said"], ["Baloch", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["Afridi", "said"], ["spokesman", "said"], ["officials", "said"], ["police", "investigating incident"], ["He", "said"], ["Hussain", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["Chattha", "said"], ["He", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["Bank", "said"], ["It", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["police", "visited spot"], ["Police", "said"], ["KARACHI", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["Moonis", "said"], ["by", "registered"], ["by", "registered"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Liu", "said"], ["complainant", "said"], ["sources", "said"], ["FIR", "registered"], ["Rafique", "said"], ["it", "said"], ["bench", "said"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["by", "registered"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["he", "said"], ["dealer", "said"], ["president", "said"], ["police", "were"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["chairman", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["Qureshi", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["police", "said"], ["sources", "said"], ["Khan", "said"], ["Sources", "said"], ["police", "registered case"], ["police", "identified rickshaw"], ["Hussain", "said"], ["He", "said"], ["She", "said"], ["police", "registered case"], ["he", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["Sharma", "said"], ["they", "said"], ["police", "arrested suspect"], ["Ikram", "said"], ["sources", "said"], ["counsel", "said"], ["police", "conducted raids"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["police", "registered case"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Hussain", "said"], ["nazim", "said"], ["He", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["sources", "said"], ["he", "said"], ["Patel", "said"], ["doctor", "said"], ["General", "said"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["chairman", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["police", "rounded persons"], ["he", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["he", "said"], ["Jappa", "said"], ["He", "said"], ["he", "said"], ["percent", "registered"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["police", "seeking help"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Asif", "said"], ["he", "said"], ["minister", "said"], ["spokesman", "said"], ["police", "claimed"], ["spokesperson", "said"], ["official", "said"], ["police", "intensified security"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["police", "rounded persons"], ["FIR", "registered"], ["officer", "said"], ["Office", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["coalition", "said"], ["UN", "said"], ["Farhan", "said"], ["Hussain", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Nayyer", "said"], ["Khan", "said"], ["They", "said"], ["They", "said"], ["Sources", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["he", "said"], ["Khan", "said"], ["secretary", "said"], ["complainant", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["president", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Nawaz", "said"], ["report", "said"], ["ISPR", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["doctor", "said"], ["Khattak", "said"], ["he", "said"], ["Minister", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["veterans", "said"], ["he", "said"], ["statement", "said"], ["He", "said"], ["Qureshi", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["police", "registered case"], ["He", "said"], ["CJP", "said"], ["minister", "said"], ["He", "said"], ["police", "registered case"], ["officials", "said"], ["Nawaz", "said"], ["She", "said"], ["official", "said"], ["leader", "said"], ["it", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["PPP", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["minister", "noted"], ["minister", "said"], ["minister", "announces nominees"], ["minister", "expressed confidence"], ["minister", "said"], ["minister", "asked CBA"], ["minister", "came"], ["minister", "said"], ["minister", "said"], ["minister", "expressed dissatisfaction"], ["minister", "gave overview"], ["minister", "emphasised importance"], ["minister", "pointed"], ["minister", "informed meeting"], ["minister", "talking"], ["minister", "returned"], ["minister", "said"], ["President", "confirmed involvement"], ["minister", "called what"], ["Group", "met"], ["minister", "warned"], ["minister", "pointed"], ["half", "met"], ["minister", "said"], ["minister", "said"], ["minister", "said"], ["minister", "present perspective"], ["minister", "said"], ["minister", "said"], ["minister", "expressed gratitude"], ["minister", "said"], ["minister", "shared progress"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["PPP", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["people", "sitting"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["list", "had exceptions"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["Haque", "said"], ["Lal", "said"], ["Magsi", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Sher", "said"], ["official", "said"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["police", "said"], ["Mann", "said"], ["Jat", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["FO", "said"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["He", "said"], ["CM", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["PBS", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["area", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["plan", "finalised"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["Qureshi", "said"], ["leader", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["Hussain", "said"], ["Minister", "said"], ["bureau", "said"], ["Kamal", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["auditors", "said"], ["Sabih", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["Police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["NIH", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["judge", "said"], ["He", "said"], ["report", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["Saad", "said"], ["president", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["he", "said"], ["officials", "said"], ["It", "said"], ["PDMA", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["SHO", "said"], ["He", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Bureau", "decided"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["military", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["lawmaker", "said"], ["who", "said"], ["He", "said"], ["chairman", "said"], ["he", "said"], ["It", "said"], ["commissioner", "said"], ["Chattha", "said"], ["Chattha", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shah", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["he", "said"], ["Riaz", "said"], ["officer", "said"], ["CM", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["Shah", "said"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Chauhan", "said"], ["Liu", "said"], ["sources", "said"], ["official", "said"], ["he", "said"], ["bench", "said"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["he", "said"], ["dealer", "said"], ["president", "said"], ["Officials", "said"], ["He", "said"], ["police", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["He", "said"], ["chief", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["Qureshi", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Hussain", "said"], ["Hussaini", "said"], ["embassy", "said"], ["Nayyar", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["nothing", "said"], ["Sharma", "said"], ["they", "said"], ["Ikram", "said"], ["sources", "said"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["officials", "said"], ["ACS", "said"], ["voice", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Party", "said"], ["He", "said"], ["nazim", "said"], ["He", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["sources", "said"], ["he", "said"], ["Patel", "said"], ["doctor", "said"], ["General", "said"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["chairman", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["he", "said"], ["Jappa", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["Bureau", "held seminar"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["Sources", "said"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Asif", "said"], ["he", "said"], ["leader", "said"], ["He", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["Muqam", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["office", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["He", "said"], ["He", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["police", "said"], ["police", "said"], ["Call", "said"], ["Shabbar", "said"], ["Mansoor", "said"], ["Sarfaraz", "said"], ["Bureau", "extended date"], ["They", "said"], ["Sources", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["he", "said"], ["Hussain", "said"], ["Sumbal", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["Nawaz", "said"], ["leader", "said"], ["he", "said"], ["she", "said"], ["minister", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["notification", "said"], ["Shinwari", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["veterans", "said"], ["he", "said"], ["statement", "said"], ["He", "said"], ["Qureshi", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["He", "said"], ["CJP", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["resident", "said"], ["They", "said"], ["spokesman", "said"], ["release", "said"], ["He", "said"], ["police", "said"], ["Shah", "said"], ["He", "said"], ["minister", "said"], ["list", "finalised"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["performance", "dictated"], ["police", "said"], ["plan", "come"], ["police", "announced measures"], ["police", "saying"], ["police", "continued"], ["police", "set checkpoints"], ["police", "claimed"], ["police", "said"], ["police", "deployed personnel"], ["police", "registered cases"], ["police", "said"], ["police", "said"], ["police", "arrested Siddiqullah"], ["police", "registered case"], ["police", "burnt house"], ["police", "picketed road"], ["police", "opened fire"], ["police", "registered case"], ["police", "claimed"], ["police", "got off"], ["police", "found"], ["police", "murdered Akbar"], ["police", "arrested Ahmed"], ["police", "arrested persons"], ["police", "registered cases"], ["police", "arrested lifters"], ["police", "said"], ["police", "said"], ["police", "destroyed hideouts"], ["WHO", "come"], ["police", "conducted raids"], ["police", "continue"], ["police", "linked incident"], ["police", "said"], ["police", "announced bounty"], ["police", "said"], ["police", "claimed"], ["police", "collecting details"], ["police", "impounded van"], ["police", "said"], ["police", "registered case"], ["Talpur", "come"], ["police", "said"], ["police", "said"], ["police", "said"], ["police", "used force"], ["police", "found body"], ["police", "arrested Usman"], ["police", "begun search"], ["police", "arrested two"], ["police", "violated sanctity"], ["police", "said"], ["police", "identified her"], ["police", "waiting"], ["police", "registered case"], ["police", "engaged"], ["police", "said"], ["police", "said"], ["police", "registered case"], ["police", "arrested youth"], ["police", "arrested suspect"], ["police", "granted bail"], ["police", "said"], ["police", "registered case"], ["police", "said"], ["war", "come"], ["police", "rounded persons"], ["police", "seeking help"], ["police", "claimed"], ["police", "intensified security"], ["police", "arrested suspects"], ["police", "asked"], ["police", "said"], ["police", "said"], ["police", "stopping vehicles"], ["police", "said"], ["police", "foiled attempt"], ["PTI", "come"], ["police", "registered case"], ["police", "said"], ["gangs", "range"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Sindh", "Location"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["government", "is"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["report", "said"], ["official", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["Sharif", "said"], ["statement", "said"], ["government", "was"], ["government", "face"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["Iqbal", "said"], ["he", "said"], ["Tahir", "said"], ["Pakistan", "moving"], ["Police", "said"], ["government", "wanted"], ["government", "decided"], ["official", "said"], ["government", "asked RDA"], ["He", "said"], ["He", "said"], ["government", "rid it"], ["government", "offer opportunities"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Wajid", "said"], ["government", "approved funds"], ["government", "cleared dues"], ["Kundi", "said"], ["He", "said"], ["lawmaker", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mann", "said"], ["crisis", "is programmes"], ["Pakistan", "had"], ["Jat", "said"], ["he", "said"], ["official", "said"], ["government", "slashed Programme"], ["Khan", "said"], ["Pakistan", "bound"], ["Langer", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["government", "setting parks"], ["He", "said"], ["He", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["government", "put"], ["government", "continued"], ["government", "formed"], ["government", "formed"], ["Police", "said"], ["sources", "said"], ["government", "released Rs19.59bn"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["Pakistan", "appears ninth"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["chairman", "said"], ["Khan", "said"], ["They", "said"], ["government", "empanelled hospitals"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Mohammad", "said"], ["IGP", "said"], ["release", "said"], ["he", "said"], ["he", "said"], ["DG", "said"], ["government", "empowered"], ["he", "said"], ["DG", "said"], ["He", "said"], ["Pakistan", "cooperated"], ["one", "said"], ["Rahim", "said"], ["Asif", "said"], ["government", "formed committee"], ["minister", "said"], ["sources", "said"], ["government", "was"], ["PBS", "said"], ["Kamal", "said"], ["government", "goes"], ["government", "decide"], ["Tarar", "said"], ["he", "said"], ["government", "implicated"], ["Khan", "said"], ["minister", "said"], ["government", "remained"], ["He", "said"], ["official", "said"], ["officers", "said"], ["government", "ended lockdown"], ["They", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["Pakistan", "remain"], ["Pakistan", "faced"], ["Baloch", "said"], ["he", "said"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["spokesperson", "said"], ["Pakistan", "accepted"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Pakistan", "placed order"], ["Pakistan", "purchase oil"], ["Pakistan", "buy fuels"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["government", "bring"], ["premier", "said"], ["government", "solve challenges"], ["he", "said"], ["he", "said"], ["Pakistan", "be"], ["Qureshi", "said"], ["leader", "said"], ["He", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["government", "fixed Rs3,900"], ["government", "continues"], ["he", "said"], ["Pakistan", "considering"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["government", "initiate inquiry"], ["Saeed", "said"], ["he", "said"], ["government", "functioned"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["government", "allo\u00adwed imports"], ["Pakistan", "carried trade"], ["statement", "said"], ["Sabih", "said"], ["Pakistan", "is"], ["government", "provide prospects"], ["Gill", "said"], ["Blackman", "said"], ["government", "decided"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["Sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["government", "asked Unit"], ["professionals", "said"], ["he", "said"], ["Pakistan", "dealing"], ["NIH", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sammo", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["secretary", "said"], ["government", "agree"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["Pakistan", "made progress"], ["report", "said"], ["Pakistan", "provided authorities"], ["Pakistan", "overcome challenge"], ["petitioners", "said"], ["government", "announced package"], ["He", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["government", "let"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["government", "accepted proposals"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["Fakhar", "said"], ["He", "said"], ["government", "patronised game"], ["he", "said"], ["Pakistan", "was"], ["she", "said"], ["Baloch", "said"], ["Pakistan", "participating"], ["she", "said"], ["Pakistan", "wishes"], ["she", "said"], ["she", "said"], ["Pakistan", "had ties"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Chaudhry", "said"], ["he", "said"], ["government", "procure tonnes"], ["statement", "said"], ["Ltd", "said"], ["customers", "required"], ["government", "claiming"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Establish\u00adment", "said"], ["Elahi", "required"], ["Relations", "said"], ["Pakistan", "claimed responsibility"], ["military", "said"], ["Baloch", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["Afridi", "said"], ["government", "overlooked incidents"], ["Khan", "said"], ["police", "said"], ["Pakistan", "had children"], ["He", "said"], ["Pervaiz", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["government", "released amount"], ["Chattha", "said"], ["Chattha", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shah", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Pakistan", "was market"], ["Bank", "said"], ["It", "said"], ["They", "said"], ["Saddal", "said"], ["Pakistan", "had"], ["Pakistan", "has deaths"], ["he", "said"], ["Riaz", "said"], ["officer", "said"], ["CM", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["government", "is"], ["it", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["Pakistan", "trying"], ["Liu", "said"], ["sources", "said"], ["government", "transferred Muzaffar"], ["Rafique", "said"], ["it", "said"], ["government", "decided"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Bacha", "said"], ["He", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["He", "said"], ["Mehmood", "said"], ["government", "develop it"], ["Sherpao", "said"], ["chairman", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["Qureshi", "said"], ["government", "continue"], ["They", "said"], ["president", "said"], ["Khattak", "said"], ["Abbasi", "said"], ["he", "said"], ["Khalid", "said"], ["Abbasi", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Hussain", "said"], ["Pakistan", "had ties"], ["He", "said"], ["embassy", "said"], ["Nayyar", "said"], ["Council", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["Pakistan", "was state"], ["he", "said"], ["government", "set centres"], ["Billoo", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["Sharma", "said"], ["Detho", "said"], ["they", "said"], ["Ikram", "said"], ["Marth", "said"], ["counsel", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["voice", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Pakistan", "is"], ["Party", "said"], ["He", "said"], ["nazim", "said"], ["He", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["sources", "said"], ["Pakistan", "distancing themselves"], ["Pakistan", "is"], ["Pakistan", "placed order"], ["Spektor", "said"], ["Patel", "said"], ["doctor", "said"], ["Pakistan", "aimed"], ["Pakistan", "is member"], ["Iqbal", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["government", "expressed concerns"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["chairman", "said"], ["government", "allocated million"], ["He", "said"], ["government", "taking steps"], ["He", "said"], ["Yaseen", "said"], ["Yaseen", "said"], ["he", "said"], ["government", "take initiative"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Sources", "said"], ["source", "said"], ["Pakistan", "has children"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["government", "rejected allegations"], ["He", "said"], ["Asim", "said"], ["government", "knew it"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["government", "extending support"], ["Sources", "said"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Pakistan", "power"], ["Asif", "said"], ["he", "said"], ["leader", "said"], ["He", "said"], ["spokesman", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["Muqam", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["Farhan", "said"], ["Pakistan", "is"], ["Hussain", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["government", "stand"], ["official", "said"], ["police", "said"], ["police", "said"], ["Call", "said"], ["Shabbar", "said"], ["Mansoor", "said"], ["Sarfaraz", "said"], ["They", "said"], ["government", "wants"], ["Sources", "said"], ["he", "said"], ["Haq", "said"], ["government", "address concerns"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["secretary", "said"], ["complainant", "said"], ["He", "said"], ["officials", "said"], ["by", "faced"], ["government", "agree"], ["minister", "said"], ["he", "said"], ["by", "faced"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Pakistan", "aligned"], ["minister", "said"], ["Nawaz", "said"], ["report", "said"], ["ISPR", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["doctor", "said"], ["Khattak", "said"], ["he", "said"], ["Minister", "said"], ["Shinwari", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["things", "going"], ["veterans", "said"], ["government", "publish Paper"], ["he", "said"], ["statement", "said"], ["FO", "said"], ["he", "said"], ["Qureshi", "said"], ["he", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["counsel", "said"], ["Khan", "said"], ["he", "said"], ["official", "said"], ["Sources", "said"], ["officials", "said"], ["Nawaz", "said"], ["She", "said"], ["authority", "said"], ["release", "said"], ["He", "said"], ["police", "said"], ["Pakistan", "is"], ["CM", "said"], ["he", "said"], ["He", "said"], ["DIG", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["he", "shifted"], ["case", "entertained"], ["injured", "shifted"], ["he", "shifted"], ["people", "shifted"], ["victims", "shifted"], ["location", "starting"], ["suspect", "wanted"], ["investigation", "initiated"], ["body", "shifted"], ["case", "registered"], ["injured", "shifted"], ["case", "is trial"], ["Huzaifa", "shifted"], ["case", "reported"], ["suspect", "charged"], ["People", "shifted"], ["case", "come"], ["case", "defined"], ["case", "instituted"], ["body", "shifted"], ["body", "shifted"], ["suspect", "was acquaintance"], ["case", "transferred"], ["suspect", "claimed"], ["body", "shifted"], ["case", "sent"], ["case", "was trial"], ["registration", "was"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["report", "accompanied"], ["report", "needs"], ["report", "estimated support"], ["fire", "erupted"], ["report", "says"], ["report", "based"], ["report", "said"], ["report", "notes uptick"], ["Rescue", "shifted Minahil"], ["report", "offers recommendations"], ["report", "said"], ["report", "identified circuits"], ["report", "prepared"], ["report", "said"], ["report", "estimated"], ["by", "caused"], ["report", "confirmed"], ["report", "added"], ["report", "identified lapses"], ["by", "caused"], ["Rescue", "shifted boy"], ["by", "caused"], ["report", "celebrated"], ["report", "quantified access"], ["report", "said"], ["report", "said"], ["leak", "affected scores"], ["report", "added"], ["report", "said"], ["Rescue", "shifted him"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["by", "registered"], ["police", "said"], ["FIR", "registered"], ["police", "sought remand"], ["police", "announced measures"], ["police", "saying"], ["police", "arrested two"], ["police", "arrested robber"], ["which", "registered"], ["police", "taken Singh"], ["police", "took him"], ["police", "reached spot"], ["police", "deployed personnel"], ["case", "registered"], ["by", "registered"], ["police", "registered cases"], ["police", "said"], ["police", "claimed"], ["police", "identified deceased"], ["police", "nabbed driver"], ["police", "burnt house"], ["suspect", "wanted"], ["police", "failed"], ["police", "try"], ["police", "registered case"], ["police", "arrested gamblers"], ["police", "killed man"], ["police", "shifted him"], ["police", "said"], ["police", "said"], ["case", "registered"], ["by", "registered"], ["police", "registered cases"], ["police", "arrested lifters"], ["police", "failed"], ["police", "said"], ["police", "said"], ["police", "destroyed hideouts"], ["case", "reported"], ["police", "granted bail"], ["police", "conducted raids"], ["police", "continue"], ["police", "linked incident"], ["police", "said"], ["police", "said"], ["FIR", "registered"], ["by", "registered"], ["police", "cordoned area"], ["police", "registered case"], ["police", "arrested youths"], ["suspect", "charged"], ["suspect", "stated"], ["police", "registered case"], ["police", "foiled attempt"], ["police", "said"], ["police", "said"], ["police", "said"], ["police", "used force"], ["case", "reported"], ["police", "found body"], ["police", "arrested Usman"], ["FIR", "registered"], ["police", "begun search"], ["police", "arrested two"], ["police", "failed"], ["police", "said"], ["case", "defined"], ["police", "visited spot"], ["police", "said"], ["by", "registered"], ["by", "registered"], ["police", "arrested suspect"], ["police", "engaged"], ["FIR", "registered"], ["police", "said"], ["police", "said"], ["police", "said"], ["police", "identified rickshaw"], ["suspect", "was acquaintance"], ["police", "arrested youth"], ["case", "was trial"], ["police", "arrested suspect"], ["case", "lodged"], ["police", "granted bail"], ["police", "launched operation"], ["police", "said"], ["suspect", "claimed"], ["police", "registered case"], ["police", "said"], ["police", "arrested suspects"], ["FIR", "registered"], ["police", "picked women"], ["FIR", "registered"], ["police", "claimed"], ["police", "intensified security"], ["police", "arrested suspects"], ["FIR", "registered"], ["by", "registered"], ["police", "asked"], ["suspect", "stabbed Inam"], ["police", "said"], ["case", "was trial"], ["police", "said"], ["police", "said"], ["police", "foiled attempt"], ["police", "foiled attempt"], ["FIR", "registered"], ["police", "said"], ["police", "registered case"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["government", "face"], ["crisis", "paralyse it"], ["operations", "conducted"], ["country", "going"], ["province", "know"], ["shortage", "aggravates"], ["province", "produced grain"], ["country", "shareddeep Pakistan"], ["province", "reject result"], ["shortage", "keep visitors"], ["crisis", "emerging"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["that", "formed"], ["Khan", "was"], ["Khan", "awarded ticket"], ["team", "informed premier"], ["team", "taken acres"], ["Khan", "killed"], ["Police", "said"], ["Khan", "said"], ["Khan", "performed groundbreaking"], ["it", "formed"], ["Khan", "was"], ["Police", "said"], ["Khan", "got assemblies"], ["government", "formed"], ["Police", "said"], ["Rehman", "was earnest"], ["Khan", "refused"], ["Khan", "revealed"], ["Khan", "allotted ticket"], ["Khan", "said"], ["Khan", "was leader"], ["Khan", "said"], ["Khan", "drowned"], ["Khan", "said"], ["Khan", "said"], ["Khan", "said"], ["Khan", "drowned"], ["team", "managed"], ["Rana", "said"], ["Police", "said"], ["Khan", "directed Ministry"], ["Police", "said"], ["Khan", "ordered restoration"], ["Khan", "given award"], ["team", "managed"], ["team", "take learning"], ["Rehman", "advised provinces"], ["Rehman", "announced show"], ["Police", "recovered pistols"], ["Khan", "said"], ["Khan", "said"], ["Police", "registered case"], ["team", "stopped motorcyclist"], ["Khan", "said"], ["team", "head"], ["team", "be"], ["Police", "said"], ["team", "visited Wah"], ["team", "made"], ["Khan", "is Minister"], ["Khan", "moved Court"], ["Khan", "said"], ["Khan", "told Dawn"], ["team", "participate"], ["Khan", "transferred"], ["Khan", "transferred"], ["team", "visited institution"], ["Khan", "used language"], ["team", "used vehicle"], ["team", "refused"], ["Khan", "tweeted"], ["team", "worked"], ["Khan", "said"], ["Police", "said"], ["Khan", "distributed tickets"], ["Police", "said"], ["Khan", "said"], ["team", "meet team"], ["Khan", "expressed disconcertment"], ["Khan", "said"], ["Khan", "briefed"], ["Khan", "had dispute"], ["Khan", "decided"], ["by", "formed"], ["Khan", "appeared"], ["Khan", "started"], ["Khan", "vying"], ["Khan", "is"], ["Tahir", "thanked Malik"], ["Rehman", "threw challenge"], ["Khan", "deployed"], ["Khan", "said"], ["Khan", "said"], ["Police", "took bodies"], ["Khan", "said"], ["Khan", "said"], ["team", "taking suspects"], ["team", "ask rulers"], ["Rehman", "said"], ["Khan", "said"], ["Khan", "hailing"], ["team", "came"], ["Khan", "claimed"], ["Khan", "visited centres"], ["formed", "have demographer"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["project", "initiated"], ["CM", "said"], ["investigation", "initiated"], ["operation", "initiated"], ["inquiries", "linked blaze"], ["inquiries", "indicated"], ["by", "initiated"], ["inquiries", "pending"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["cases", "were"], ["Aurangzeb", "confirmed"], ["cases", "handled"], ["by", "confirmed"], ["cases", "remained"], ["examination", "confirmed"], ["report", "confirmed"], ["cases", "concentrated"], ["deaths", "confirmed"], ["cases", "reported"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Chaudhry", "expressed reservations"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["police", "sought remand"], ["Lal", "said"], ["Magsi", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["police", "announced measures"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["he", "said"], ["Police", "said"], ["police", "arrested two"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Khan", "said"], ["DSP", "shared video"], ["He", "said"], ["police", "set checkpoints"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["lawmaker", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["police", "taken Singh"], ["police", "claimed"], ["police", "said"], ["Mann", "said"], ["Jat", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["FO", "said"], ["Langer", "said"], ["Jaklenec", "said"], ["they", "said"], ["they", "said"], ["officials", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["police", "registered cases"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["police", "claimed"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["chairman", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["police", "arrested Siddiqullah"], ["They", "said"], ["sources", "said"], ["police", "nabbed driver"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["police", "burnt house"], ["He", "said"], ["police", "killing men"], ["police", "picketed road"], ["Irfan", "said"], ["Irfan", "said"], ["Irfan", "said"], ["police", "registered case"], ["minister", "said"], ["he", "said"], ["He", "said"], ["investigation", "initiated"], ["police", "claimed"], ["police", "got off"], ["police", "found"], ["police", "murdered Akbar"], ["police", "arrested Ahmed"], ["Information", "said"], ["She", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["police", "arrested persons"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["body", "found"], ["They", "said"], ["police", "registered cases"], ["Mohammad", "said"], ["IGP", "said"], ["release", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["Asif", "said"], ["police", "found"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["source", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["body", "found"], ["sources", "said"], ["He", "said"], ["flyover", "found"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["police", "rushed"], ["KARACHI", "said"], ["They", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["He", "said"], ["police", "participate"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["spokesperson", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["police", "granted bail"], ["police", "launched operation"], ["Police", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["he", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["police", "linked incident"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["Qureshi", "said"], ["leader", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["police", "claimed"], ["He", "said"], ["police", "cordoned area"], ["police", "collecting details"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["police", "registered case"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["police", "impounded van"], ["Hussain", "said"], ["Minister", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Qureshi", "said"], ["Fawad", "said"], ["He", "said"], ["He", "said"], ["Mughal", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["police", "collected evidence"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["police", "recovered tank"], ["police", "foiled attempt"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["statement", "said"], ["Saad", "said"], ["report", "said"], ["Kose", "said"], ["Zardari", "said"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["Sources", "said"], ["officials", "said"], ["he", "said"], ["Chaudhry", "opposed idea"], ["Awan", "said"], ["police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["NIH", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["secretary", "said"], ["He", "said"], ["reports", "said"], ["SSP", "said"], ["police", "used force"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["police", "found body"], ["police", "arrested Usman"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["police", "set camps"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["Saad", "said"], ["president", "said"], ["he", "said"], ["he", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["police", "arrested two"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Chaudhry", "said"], ["he", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["stance", "said"], ["He", "said"], ["police", "failed"], ["Establish\u00adment", "said"], ["premier", "said"], ["police", "violated sanctity"], ["wing", "said"], ["military", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["He", "said"], ["Pervaiz", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["commissioner", "said"], ["Chattha", "said"], ["Chattha", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shah", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["he", "said"], ["police", "identified her"], ["police", "visited spot"], ["Police", "said"], ["KARACHI", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["He", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Chauhan", "said"], ["Liu", "said"], ["police", "registered case"], ["police", "arrested suspect"], ["They", "said"], ["Rafique", "said"], ["investigation", "blamed incident"], ["police", "engaged"], ["police", "launched operation"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Officials", "said"], ["He", "said"], ["police", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["He", "said"], ["chief", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["Qureshi", "said"], ["spokesperson", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["Abbasi", "said"], ["doctor", "said"], ["He", "said"], ["DSP", "sustained injuries"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Shehzad", "said"], ["Hussain", "said"], ["Hussaini", "said"], ["embassy", "said"], ["police", "arrested youth"], ["Nayyar", "said"], ["Council", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["Sharma", "said"], ["Detho", "said"], ["sources", "said"], ["police", "taking him"], ["DC", "said"], ["Marth", "said"], ["police", "granted bail"], ["police", "launched operation"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["police", "registered case"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Hussain", "said"], ["leader", "said"], ["he", "said"], ["Sources", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["Altaf", "said"], ["he", "said"], ["Patel", "said"], ["doctor", "said"], ["General", "said"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["Chaudhry", "called"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["Malik", "said"], ["he", "said"], ["police", "spotted car"], ["He", "said"], ["police", "rounded persons"], ["he", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["he", "said"], ["Jappa", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["police", "picked women"], ["police", "seeking help"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Asif", "said"], ["he", "said"], ["leader", "said"], ["He", "said"], ["nurses", "found"], ["police", "claimed"], ["spokesperson", "said"], ["official", "said"], ["police", "intensified security"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["police", "rounded persons"], ["he", "said"], ["Muqam", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["coalition", "said"], ["UN", "said"], ["Farhan", "said"], ["Hussain", "said"], ["He", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Nayyer", "said"], ["Khan", "said"], ["They", "said"], ["They", "said"], ["Sources", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["he", "said"], ["Hussain", "said"], ["Sumbal", "said"], ["Khan", "said"], ["police", "said"], ["suspects", "committing crimes"], ["police", "stopping vehicles"], ["official", "said"], ["minister", "said"], ["he", "said"], ["View", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["notification", "said"], ["Shinwari", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Mohammad", "said"], ["He", "said"], ["police", "signaled car"], ["Hussain", "said"], ["who", "said"], ["they", "said"], ["Sharif", "said"], ["FO", "said"], ["he", "said"], ["he", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["counsel", "said"], ["He", "said"], ["CJP", "said"], ["minister", "said"], ["He", "said"], ["Ali", "said"], ["Khan", "said"], ["resident", "said"], ["They", "said"], ["spokesman", "said"], ["official", "said"], ["leader", "said"], ["it", "said"], ["police", "said"], ["Shah", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["DIG", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["police", "registered case"], ["police", "recovered bodies"], ["Akram", "said"], ["Chaudhry", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["action", "taken"], ["police", "said"], ["police", "sought remand"], ["police", "said"], ["police", "announced measures"], ["police", "saying"], ["policemen", "tasked"], ["police", "arrested robber"], ["police", "taken Singh"], ["police", "took him"], ["police", "reached spot"], ["police", "had"], ["police", "registered cases"], ["police", "said"], ["police", "claimed"], ["police", "arrested Siddiqullah"], ["police", "registered case"], ["police", "burnt house"], ["police", "picketed road"], ["police", "opened fire"], ["police", "registered case"], ["policemen", "included Hussain"], ["police", "claimed"], ["police", "got off"], ["police", "found"], ["police", "murdered Akbar"], ["police", "arrested Ahmed"], ["who", "involved"], ["police", "said"], ["police", "registered cases"], ["policemen", "paid"], ["police", "arrested lifters"], ["police", "said"], ["police", "said"], ["police", "destroyed hideouts"], ["police", "granted bail"], ["police", "conducted raids"], ["action", "taken"], ["police", "arrested lifters"], ["police", "said"], ["gangs", "involved"], ["police", "said"], ["police", "claimed"], ["police", "collecting details"], ["police", "impounded van"], ["action", "taken"], ["police", "said"], ["police", "registered case"], ["police", "foiled attempt"], ["police", "said"], ["police", "said"], ["police", "said"], ["police", "used force"], ["police", "solved case"], ["police", "received lead"], ["police", "set camps"], ["police", "begun search"], ["police", "arrested two"], ["police", "violated sanctity"], ["police", "investigating incident"], ["police", "identified her"], ["police", "waiting"], ["police", "said"], ["police", "registered case"], ["police", "engaged"], ["police", "said"], ["police", "registered FIR"], ["police", "said"], ["police", "registered case"], ["police", "arrested youth"], ["police", "arrested suspect"], ["police", "granted bail"], ["police", "conducted raids"], ["police", "arrested youth"], ["police", "said"], ["police", "spotted car"], ["police", "arrested man"], ["who", "involved"], ["police", "seeking help"], ["police", "claimed"], ["police", "taken control"], ["action", "allowed"], ["police", "intensified crackdown"], ["police", "arrested man"], ["who", "involved"], ["action", "allowed"], ["police", "said"], ["police", "said"], ["police", "said"], ["police", "stopping vehicles"], ["police", "said"], ["police", "signaled car"], ["police", "registered case"], ["police", "said"], ["police", "registered case"], ["police", "claimed"], ["police", "used force"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["India", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["SC", "take"], ["Department", "confiscated bags"], ["torture", "amounted"], ["US", "expressed concern"], ["Department", "provided digest"], ["Department", "claimed"], ["Department", "arrested militant"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["ministry", "dated"], ["efforts", "made"], ["efforts", "aimed"], ["efforts", "were"], ["ministry", "announced"], ["evacuation", "continues"], ["ministry", "facing shortage"], ["efforts", "paid"], ["efforts", "made"], ["Pakistanis", "returned"], ["efforts", "led"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["Dawn", "understands"], ["Dawn", "learnt"], ["cabinet", "told"], ["moot", "told"], ["he", "told"], ["meeting", "told"], ["tankers", "reached Chaman"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["city", "been"], ["blasts", "caused"], ["city", "endured week"], ["areas", "affected"], ["by", "caused"], ["commissioner", "caused"], ["Islamabad", "city"], ["by", "caused"], ["Islamabad", "city"], ["by", "caused"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["funds", "released"], ["government", "allocated billion"], ["losses", "become"], ["government", "keeping eye"], ["government", "working"], ["government", "transferred Muzaffar"], ["work", "given hope"], ["government", "decided"], ["government", "asked RDA"], ["government", "rid people"], ["government", "striving"], ["government", "approved funds"], ["government", "handled situation"], ["work", "is"], ["government", "considering idea"], ["government", "put"], ["government", "formed"], ["government", "functioned"], ["government", "released Rs19.59bn"], ["Wahab", "demanded"], ["government", "empanelled hospitals"], ["government", "empowered"], ["government", "was"], ["government", "decide"], ["government", "implicated"], ["government", "slashed funding"], ["work", "was"], ["work", "is"], ["government", "given hand"], ["PAC", "demanded"], ["government", "allowed export"], ["government", "solve challenges"], ["government", "made efforts"], ["work", "is"], ["government", "fixed Rs3,900"], ["government", "continues"], ["government", "fulfil promises"], ["government", "initiate inquiry"], ["government", "allo\u00adwed imports"], ["government", "allowed imp\u00adort"], ["government", "decided"], ["circles", "demanded"], ["government", "approved it"], ["government", "represented"], ["institutions", "work"], ["government", "accepted proposals"], ["She", "demanded"], ["government", "procure tonnes"], ["government", "took power"], ["government", "overlooked incidents"], ["government", "stated"], ["government", "transferred Muzaffar"], ["work", "helped"], ["government", "facing crisis"], ["government", "develop it"], ["government", "took step"], ["government", "wants"], ["institutions", "work"], ["funds", "invested"], ["government", "pointed"], ["funds", "transferred"], ["government", "working"], ["government", "was"], ["government", "expressed concerns"], ["government", "constructed complex"], ["government", "taking steps"], ["work", "disturb traffic"], ["government", "was"], ["government", "rejected allegations"], ["government", "extending support"], ["government", "plunged Pakistan"], ["government", "set target"], ["government", "provided relief"], ["government", "bearing expenses"], ["government", "stand"], ["government", "wants"], ["government", "construct houses"], ["leaders", "demanded"], ["government", "publish Paper"], ["government", "wanted elections"], ["university", "established"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["letter", "stated"], ["study", "found"], ["operation", "carried"], ["It", "stated"], ["Irfan", "stated"], ["condition", "stated"], ["operation", "carried"], ["Nimra", "found"], ["Chaudhry", "stated"], ["police", "found"], ["implementation", "found"], ["body", "found"], ["It", "stated"], ["Wadhwani", "stated"], ["acts", "carried"], ["body", "found"], ["judgement", "stated"], ["He", "stated"], ["secretary", "stated"], ["suspect", "stated"], ["Sharif", "stated"], ["areas", "affected"], ["NAB", "stated"], ["letter", "stated"], ["He", "stated"], ["ISPR", "said"], ["ISPR", "said"], ["ADB", "stated"], ["government", "stated"], ["Department", "stated"], ["Jameel", "stated"], ["department", "stated"], ["letter", "stated"], ["Ali", "stated"], ["evidence", "found"], ["investigation", "found"], ["nurses", "found"], ["Awan", "stated"], ["who", "stated"], ["areas", "included Hadeed"], ["ISPR", "said"], ["They", "stated"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["SC", "Organization"], ["They", "claimed"], ["Sadiq", "claimed"], ["police", "claimed"], ["Mann", "claimed"], ["police", "claimed"], ["Lathani", "denied"], ["suspect", "wanted"], ["He", "claimed"], ["statement", "denied"], ["Chaudhry", "claimed"], ["suspect", "is"], ["He", "claimed"], ["authority", "claimed"], ["police", "claimed"], ["He", "claimed"], ["Wazir", "claimed"], ["suspect", "stated"], ["by", "claimed"], ["management", "claimed"], ["MD", "claimed"], ["Wazir", "claimed"], ["He", "claimed"], ["they", "claimed"], ["husband", "claimed"], ["that", "claimed"], ["official", "claimed"], ["They", "claimed"], ["patient", "claimed"], ["suspect", "was acquaintance"], ["Department", "claimed"], ["suspect", "claimed"], ["property", "caused explosions"], ["He", "claimed"], ["police", "claimed"], ["allegations", "were"], ["allegations", "needed probe"], ["suspect", "stabbed Inam"], ["report", "claimed"], ["Amin", "claimed"], ["wing", "claimed"], ["Khan", "claimed"], ["police", "claimed"], ["who", "claimed"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["FIR", "Organization"], ["activists", "assert"], ["police", "saying"], ["people", "turned"], ["leaders", "curb theft"], ["parties", "shown inclination"], ["parties", "authorised speaker"], ["leaders", "demanded"], ["motion", "turned"], ["leaders", "meeting"], ["by", "published"], ["leaders", "are"], ["activists", "promote culture"], ["parties", "organised events"], ["procession", "turned"], ["story", "brought"], ["parties", "endeavour"], ["parties", "criticised government"], ["report", "published"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["SC", "Organization"], ["Wahab", "announced"], ["people", "announced"], ["Maulana", "announced"], ["Road", "corridor"], ["Road", "corridor"], ["Road", "be accessroadwhich"], ["employees", "go"], ["Road", "blocked"], ["government", "announced"], ["protest", "held"], ["employees", "faced"], ["directorate", "arranged festivals"], ["employees", "paid cent"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["SC", "Organization"], ["patients", "suffer"], ["congregations", "held"], ["prayers", "held"], ["dastarbandi", "held"], ["Competencies", "help"], ["meeting", "take stock"], ["bench", "held"], ["mediation", "help"], ["meeting", "held"], ["funeral", "held"], ["chief", "extended wishes"], ["chief", "said"], ["meeting", "appreciated role"], ["chief", "decided"], ["patients", "shifted"], ["chief", "said"], ["jirga", "held"], ["bench", "issue"], ["inquiry", "held"], ["chief", "said"], ["meeting", "attended"], ["meeting", "approved proposal"], ["meeting", "ratified decisions"], ["polls", "held"], ["meeting", "apprised"], ["prayers", "held"], ["issue", "becoming reason"], ["chief", "claimed"], ["meeting", "lend strength"], ["polls", "held"], ["issue", "settled"], ["ceremony", "held"], ["meeting", "addressed"], ["meeting", "is"], ["chief", "said"], ["negotiations", "held"], ["it", "help"], ["meeting", "held"], ["encounter", "held"], ["court", "held"], ["meeting", "decided"], ["chief", "was"], ["meeting", "called"], ["chief", "said"], ["chief", "asked judges"], ["meeting", "decided"], ["meeting", "decided"], ["meeting", "attended"], ["meeting", "held"], ["meeting", "convened"], ["meeting", "held"], ["meeting", "highlights quandary"], ["meeting", "convened"], ["patients", "have"], ["inquiries", "held"], ["round", "held"], ["chief", "reached court"], ["chief", "tender apology"], ["meeting", "told"], ["patients", "undergoing dialysis"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["SC", "Organization"], ["judge", "remanded him"], ["judge", "asked Ali"], ["judge", "appointed"], ["judge", "said"], ["judge", "confirmed bail"], ["judge", "turned request"], ["by", "accompanied"], ["district", "remains graveyard"], ["by", "accompanied"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["operation", "launched"], ["He", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["letter", "said"], ["Haque", "said"], ["Lal", "said"], ["Magsi", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["operation", "launched"], ["officials", "said"], ["he", "said"], ["He", "said"], ["Iqbal", "said"], ["he", "said"], ["Tahir", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["official", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["police", "said"], ["Mann", "said"], ["by", "launched"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Khan", "said"], ["FM", "quoted"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["He", "said"], ["CM", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["crackdown", "launched"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["spokesperson", "said"], ["police", "said"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["He", "said"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["spokesperson", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["counsel", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["E-12", "launched"], ["he", "said"], ["general", "said"], ["He", "said"], ["Taimoor", "said"], ["Chapman", "said"], ["Babar", "said"], ["wing", "said"], ["They", "said"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["Qureshi", "said"], ["leader", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["Hussain", "said"], ["Minister", "said"], ["bureau", "said"], ["Kamal", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["auditors", "said"], ["Sabih", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["Police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["NIH", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["judge", "said"], ["He", "said"], ["report", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["Saad", "said"], ["president", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["he", "said"], ["officials", "said"], ["It", "said"], ["PDMA", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["SHO", "said"], ["He", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["he", "said"], ["stance", "said"], ["He", "said"], ["who", "said"], ["team", "said"], ["Relations", "said"], ["ISPR", "said"], ["Baloch", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["Afridi", "said"], ["spokesman", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["Pervaiz", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["commissioner", "said"], ["Chattha", "said"], ["Chattha", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shah", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["he", "said"], ["Riaz", "said"], ["officer", "said"], ["CM", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["He", "said"], ["complainant", "said"], ["They", "said"], ["Rafique", "said"], ["it", "said"], ["Nasar", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["chairman", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["Qureshi", "said"], ["leader", "said"], ["Malekzadh", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Hussain", "said"], ["Hussaini", "said"], ["embassy", "said"], ["study", "launched"], ["he", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["book", "launched"], ["book", "launched"], ["Hoodbhoy", "said"], ["he", "said"], ["nothing", "said"], ["Detho", "said"], ["She", "said"], ["they", "said"], ["Ikram", "said"], ["DC", "said"], ["sources", "said"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["activities", "launched"], ["Sindhu", "said"], ["ACS", "said"], ["voice", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Party", "said"], ["He", "said"], ["nazim", "said"], ["he", "said"], ["Sources", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["Altaf", "said"], ["he", "said"], ["Patel", "said"], ["doctor", "said"], ["by", "launched"], ["Iqbal", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["Malik", "said"], ["he", "said"], ["He", "said"], ["Yaseen", "said"], ["Yaseen", "said"], ["he", "said"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["rights", "implemented"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["project", "launched"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["Asim", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["operation", "launched"], ["IGP", "said"], ["IGP", "said"], ["Sources", "said"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Asif", "said"], ["he", "said"], ["leader", "said"], ["He", "said"], ["DC", "said"], ["He", "said"], ["government", "said"], ["he", "said"], ["Grounds", "said"], ["letter", "said"], ["Officials", "said"], ["sources", "said"], ["Khattak", "said"], ["he", "said"], ["officials", "said"], ["statement", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["he", "said"], ["Muqam", "said"], ["Hussain", "said"], ["chief", "said"], ["He", "said"], ["office", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["He", "said"], ["laws", "said"], ["Ali", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["police", "said"], ["police", "said"], ["Call", "said"], ["Shabbar", "said"], ["Mansoor", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["secretary", "said"], ["complainant", "said"], ["Adnan", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["View", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["notification", "said"], ["Shinwari", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gohati", "said"], ["Hussain", "said"], ["Hussain", "said"], ["Pawar", "said"], ["veterans", "said"], ["he", "said"], ["Sharif", "said"], ["FO", "said"], ["he", "said"], ["filing", "said"], ["he", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["counsel", "said"], ["Khan", "said"], ["he", "said"], ["official", "said"], ["Sources", "said"], ["Khan", "said"], ["Hasnain", "said"], ["resident", "said"], ["They", "said"], ["spokesman", "said"], ["official", "said"], ["leader", "said"], ["it", "said"], ["report", "said"], ["CM", "said"], ["he", "said"], ["He", "said"], ["DIG", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Shehzad", "said"], ["Akram", "said"], ["Chaudhry", "said"], ["View", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Sharif", "said"], ["He", "said"], ["Khan", "said"], ["VC", "said"], ["he", "said"], ["Momand", "said"], ["Shah", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["SC", "Organization"], ["they", "identified"], ["deceased", "identified"], ["injured", "identified"], ["they", "identified"], ["victim", "identified"], ["they", "identified"], ["deceased", "identified"], ["suspects", "identified"], ["census", "identified"], ["They", "identified"], ["village", "ignored"], ["deceased", "identified"], ["deceased", "identified"], ["Mohammad", "posted"], ["Hassan", "taking suspect"], ["deceased", "identified"], ["deceased", "identified"], ["households", "identified"], ["Mohammad", "said"], ["Mohammad", "said"], ["Hassan", "confirmed outbreak"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["scores", "drown Indus"], ["scores", "surrounded"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["population", "reduced"], ["BAHAWALPUR", "reduced"], ["risk", "reduced"], ["payments", "made"], ["shedding", "remained factor"], ["PTI", "Organization"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["Sudan", "Location"], ["SC", "Organization"], ["PTI", "constituted committees"], ["order", "remain"], ["SHOs", "directed"], ["Wida", "observed"], ["jams", "observed"], ["chairman", "said"], ["PTI", "stands"], ["PTI", "renews call"], ["PTI", "renewed calls"], ["PTI", "dismissed"], ["PTI", "dissolve assemblies"], ["PTI", "disputed reports"], ["chairman", "gave presentation"], ["person", "said"], ["committee", "observed"], ["person", "injured"], ["PTI", "exploited situation"], ["utilities", "directed"], ["PTI", "was"], ["PTI", "move court"], ["PTI", "made mistakes"], ["PTI", "invited"], ["order", "awaited"], ["PTI", "believed that"], ["chairman", "sees crisis"], ["bench", "observed"], ["order", "withdrawn"], ["PTI", "insisted"], ["Farooq", "directed Khan"], ["PTI", "condemned raid"], ["chairman", "said"], ["Raza", "observed"], ["Raza", "observed"], ["order", "held"], ["person", "injured"], ["chairman", "said"], ["PTI", "announces intention"], ["PTI", "approach court"], ["chairman", "was"], ["person", "arrived"], ["person", "came"], ["PTI", "have"], ["PTI", "wants success"], ["chairman", "said"], ["PTI", "was"], ["PTI", "announced rallies"], ["order", "violated"], ["PTI", "approach Court"], ["PTI", "protesting"], ["PTI", "was"], ["Day", "observed"], ["PTI", "wanted elections"], ["PTI", "wants elections"], ["PTI", "come"], ["PTI", "decided"], ["chairman", "given undertaking"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["the Supreme Court", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["petition", "alleged"], ["petition", "said"], ["Szuromi", "emphasised"], ["petition", "dismissed"], ["exercise", "began"], ["petition", "drafted"], ["petition", "termed it"], ["changing", "was domain"], ["petition", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["it", "include"], ["it", "expanded"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["Punjab", "has history"], ["Punjab", "consider"], ["Court", "held"], ["Court", "take notice"], ["Court", "take notice"], ["Court", "comprised justice"], ["Assembly", "feels"], ["elections", "take place"], ["Assembly", "dealt"], ["Assembly", "demanded decrease"], ["Court", "issued notices"], ["Court", "pushing anyone"], ["Court", "directed watchdog"], ["mosques", "used"], ["bearing", "was one"], ["Assembly", "disbanded"], ["land", "used"], ["elections", "held"], ["Punjab", "destined"], ["Punjab", "had cadre"], ["Punjab", "wanted"], ["Punjab", "assemblies"], ["Court", "granted bail"], ["stalwarts", "used"], ["elections", "held"], ["Court", "ordered taxpayers"], ["Court", "sought record"], ["Assembly", "adopted resolution"], ["elections", "held"], ["Court", "taken exercise"], ["elections", "held"], ["agreement", "arrived"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["We", "demand"], ["NA", "meet"], ["demand", "was"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["Pakistan", "exported tonnes"], ["Pakistan", "exported rice"], ["source", "said"], ["Chaudhry", "said"], ["Khan", "was"], ["Khan", "facilitated leaders"], ["Pakistan", "stepped efforts"], ["statement", "said"], ["Khan", "held meeting"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["Iqbal", "said"], ["he", "said"], ["Tahir", "said"], ["work", "given hope"], ["he", "said"], ["He", "said"], ["He", "said"], ["official", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["statement", "said"], ["He", "said"], ["Sher", "said"], ["He", "said"], ["official", "said"], ["things", "remain"], ["Khan", "performed groundbreaking"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["lawmaker", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["Pakistan", "had"], ["Jat", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["FO", "said"], ["it", "said"], ["Jaklenec", "said"], ["work", "is"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["chairman", "said"], ["Zardari", "said"], ["minister", "said"], ["Khan", "got assemblies"], ["he", "said"], ["Khan", "killed"], ["sources", "said"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["Khan", "revealed"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["police", "said"], ["Information", "said"], ["She", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["Pakistan", "appears ninth"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["chairman", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["Khan", "drowned"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["Pakistan", "cooperated"], ["one", "said"], ["Rahim", "said"], ["Asif", "said"], ["Khan", "told reporters"], ["minister", "said"], ["Gul", "said"], ["They", "said"], ["PBS", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["area", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["Baloch", "said"], ["He", "said"], ["Khan", "were"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Imran", "is conspiracy"], ["Fisheries", "said"], ["study", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["which", "said"], ["counsel", "said"], ["Khan", "told police"], ["Khan", "ordered restoration"], ["They", "said"], ["Hazrat", "said"], ["Khan", "told Dawn"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["Taimoor", "said"], ["Chapman", "said"], ["Babar", "said"], ["wing", "said"], ["They", "said"], ["Patel", "said"], ["Pakistan", "placed order"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["official", "said"], ["He", "said"], ["Aslam", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["Khan", "reviewed decision"], ["Khan", "stated"], ["Khan", "is"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["he", "said"], ["Pakistan", "considering"], ["bureau", "said"], ["Kamal", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Khan", "informed Rescue"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["auditors", "said"], ["Pakistan", "play dayer"], ["Saad", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["Khan", "told Dawn"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["he", "said"], ["Pakistan", "dealing"], ["NIH", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sammo", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["secretary", "said"], ["He", "said"], ["work", "gets"], ["SSP", "said"], ["She", "said"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["Khan", "received gifts"], ["judge", "said"], ["He", "said"], ["Pakistan", "amending laws"], ["report", "said"], ["Khan", "died"], ["Pakistan", "overcome challenge"], ["They", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["he", "said"], ["Khan", "moved Court"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Khan", "committed suicide"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["Khan", "told Dawn"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["Fakhar", "said"], ["He", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["Pakistan", "was itself"], ["Pakistan", "is member"], ["Pakistan", "was"], ["she", "said"], ["Pakistan", "had position"], ["She", "said"], ["she", "said"], ["Pakistan", "maintains policy"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["Khan", "transferred"], ["Khan", "transferred"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["things", "derail"], ["Khan", "said"], ["Chaudhry", "said"], ["Khan", "appeared"], ["Establish\u00adment", "said"], ["Khan", "is"], ["premier", "said"], ["Relations", "said"], ["Pakistan", "claimed responsibility"], ["military", "said"], ["Pakistan", "ended ceasefire"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["Pakistan", "had children"], ["He", "said"], ["Pervaiz", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["commissioner", "said"], ["Chattha", "said"], ["Chattha", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shah", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Pakistan", "was market"], ["Bank", "said"], ["It", "said"], ["They", "said"], ["he", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["officer", "said"], ["CM", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["Shah", "said"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["Khan", "distributed tickets"], ["spokesman", "said"], ["Mirza", "said"], ["Pakistan", "trying"], ["Liu", "said"], ["sources", "said"], ["official", "said"], ["he", "said"], ["bench", "said"], ["Khan", "taken oath"], ["Jameel", "said"], ["police", "said"], ["Police", "said"], ["Director", "said"], ["work", "helped"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["chairman", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "expressed disconcertment"], ["Khan", "said"], ["Khan", "said"], ["Qureshi", "said"], ["leader", "said"], ["spokesperson", "said"], ["They", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["Imran", "said"], ["Khan", "had dispute"], ["Khan", "said"], ["Sources", "said"], ["Khan", "vying"], ["Shehzad", "said"], ["Hussain", "said"], ["Hussaini", "said"], ["embassy", "said"], ["Nayyar", "said"], ["Council", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["Pakistan", "was state"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["Sharma", "said"], ["Detho", "said"], ["sources", "said"], ["DC", "said"], ["Marth", "said"], ["Khan", "appeared"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["Khan", "reviewed"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["Pakistan", "was"], ["she", "said"], ["Party", "said"], ["He", "said"], ["nazim", "said"], ["he", "said"], ["Sources", "said"], ["Khan", "vying"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["Khan", "visited centres"], ["Altaf", "said"], ["Pakistan", "distancing themselves"], ["Pakistan", "is"], ["Pakistan", "placed order"], ["Spektor", "said"], ["Patel", "said"], ["doctor", "said"], ["Pakistan", "aimed"], ["Pakistan", "has 5.4pc"], ["Imran", "be loser"], ["Khan", "is"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["chairman", "said"], ["He", "said"], ["statement", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["Pakistan", "struggling"], ["majority", "said"], ["He", "said"], ["he", "said"], ["Jappa", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Sources", "said"], ["Shaheen", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["Asim", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["Pakistan", "alleged"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Murtaza", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["spokesman", "said"], ["Khan", "claimed"], ["He", "said"], ["government", "said"], ["he", "said"], ["Grounds", "said"], ["letter", "said"], ["Officials", "said"], ["sources", "said"], ["Khattak", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["He", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "was brother"], ["he", "said"], ["Muqam", "said"], ["Hussain", "said"], ["Half", "work"], ["Hussain", "said"], ["he", "said"], ["office", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["He", "said"], ["Pakistan", "is"], ["laws", "said"], ["Ali", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["Pakistan", "affected"], ["Anwar", "said"], ["police", "said"], ["Call", "said"], ["Shabbar", "said"], ["Mansoor", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["secretary", "said"], ["Khan", "says"], ["police", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["Khan", "pointed"], ["president", "said"], ["Khan", "was hurdle"], ["Nawaz", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["notification", "said"], ["Shinwari", "said"], ["Khan", "addressed event"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gohati", "said"], ["Hussain", "said"], ["Hussain", "said"], ["It", "said"], ["Pakistan", "are"], ["Pakistan", "adapting"], ["who", "said"], ["they", "said"], ["he", "said"], ["Sharif", "said"], ["Pakistan", "winds"], ["Khan", "specified"], ["he", "said"], ["Pakistan", "facing shortage"], ["reporter", "said"], ["work", "needs"], ["he", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["Khan", "claimed"], ["He", "said"], ["CJP", "said"], ["minister", "said"], ["He", "said"], ["Ali", "said"], ["Khan", "said"], ["Imran", "told Dawn"], ["Hasnain", "said"], ["Nawaz", "said"], ["She", "said"], ["authority", "said"], ["release", "said"], ["He", "said"], ["police", "said"], ["Pakistan", "is"], ["Shah", "said"], ["He", "said"], ["resolution", "said"], ["He", "said"], ["DIG", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Pakistan", "faced crisis"], ["They", "said"], ["Shehzad", "said"], ["Akram", "said"], ["Chaudhry", "said"], ["View", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["official", "said"], ["He", "said"], ["he", "said"], ["Khan", "said"], ["Relations", "said"], ["he", "said"], ["things", "were"], ["They", "said"], ["They", "said"], ["Khan", "directed officials"], ["officials", "said"], ["Hussain", "said"], ["Pakistan", "lost wickets"], ["He", "said"], ["he", "said"], ["He", "said"], ["petition", "said"], ["he", "said"], ["report", "said"], ["it", "said"], ["he", "said"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["official", "said"], ["Organisation", "said"], ["Bank", "said"], ["report", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["Iqbal", "said"], ["he", "said"], ["Tahir", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Sher", "said"], ["official", "said"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["lawmaker", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Asakawa", "said"], ["FO", "said"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["He", "said"], ["CM", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["area", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["spokesperson", "said"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["counsel", "said"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["Adviser", "said"], ["Mehmood", "said"], ["Tanoli", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["he", "said"], ["general", "said"], ["He", "said"], ["Taimoor", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["View", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["Shehbaz", "said"], ["Talks", "said"], ["he", "said"], ["official", "said"], ["He", "said"], ["Aslam", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["Relatives", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["He", "said"], ["Tunio", "said"], ["he", "said"], ["Sarwar", "said"], ["Khan", "said"], ["Sarwar", "said"], ["He", "said"], ["Naqi", "said"], ["She", "said"], ["minister", "said"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["he", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Qureshi", "said"], ["Fawad", "said"], ["He", "said"], ["He", "said"], ["Mughal", "said"], ["They", "said"], ["Shah", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["leaders", "said"], ["speakers", "said"], ["official", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Zada", "said"], ["statement", "said"], ["Saad", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["officials", "said"], ["he", "said"], ["Naek", "said"], ["Police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["NIH", "said"], ["Bareech", "said"], ["level", "subsided"], ["officials", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sammo", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["secretary", "said"], ["He", "said"], ["reports", "said"], ["SSP", "said"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["PDMA", "said"], ["It", "said"], ["authorityalso", "said"], ["He", "said"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["official", "said"], ["Police", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["military", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["lawmaker", "said"], ["who", "said"], ["He", "said"], ["chairman", "said"], ["he", "said"], ["It", "said"], ["DC", "said"], ["Chattha", "said"], ["He", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["Bakhtawari", "said"], ["he", "said"], ["Bank", "said"], ["It", "said"], ["They", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["He", "said"], ["complainant", "said"], ["They", "said"], ["Rafique", "said"], ["it", "said"], ["Nasar", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["chairman", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["Qureshi", "said"], ["leader", "said"], ["Malekzadh", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Hussain", "said"], ["Hussaini", "said"], ["embassy", "said"], ["Nayyar", "said"], ["Council", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["Sharma", "said"], ["Detho", "said"], ["sources", "said"], ["DC", "said"], ["Marth", "said"], ["counsel", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Party", "said"], ["He", "said"], ["nazim", "said"], ["he", "said"], ["Sources", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["sources", "said"], ["statement", "said"], ["Spektor", "said"], ["Shah", "said"], ["officials", "said"], ["Iqbal", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["Malik", "said"], ["he", "said"], ["He", "said"], ["Yaseen", "said"], ["Yaseen", "said"], ["he", "said"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Sources", "said"], ["source", "said"], ["Shaheen", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["Asim", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["Siddiqui", "said"], ["He", "said"], ["Siddiqui", "said"], ["Kaira", "said"], ["He", "said"], ["He", "said"], ["Murtaza", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["spokesman", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["Naqvi", "said"], ["Officials", "said"], ["sources", "said"], ["Khattak", "said"], ["he", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["MPA", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Naurang", "said"], ["Naurang", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["Naqvi", "said"], ["office", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["Farhan", "said"], ["Anwar", "said"], ["laws", "said"], ["Ali", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["police", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Nayyer", "said"], ["Khan", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["secretary", "said"], ["complainant", "said"], ["Adnan", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["View", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["Qaiser", "said"], ["Minister", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["police", "said"], ["he", "said"], ["She", "said"], ["Ashraf", "said"], ["Bizenjo", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["who", "said"], ["they", "said"], ["Pawar", "said"], ["statement", "said"], ["He", "said"], ["filing", "said"], ["reporter", "said"], ["Qureshi", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["Safdar", "said"], ["Khan", "said"], ["he", "said"], ["official", "said"], ["Ghani", "said"], ["Sources", "said"], ["Khan", "said"], ["Hasnain", "said"], ["resident", "said"], ["They", "said"], ["spokesman", "said"], ["authority", "said"], ["release", "said"], ["He", "said"], ["police", "said"], ["Shah", "said"], ["He", "said"], ["resolution", "said"], ["minister", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Shehzad", "said"], ["Akram", "said"], ["Chaudhry", "said"], ["View", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Sharif", "said"], ["He", "said"], ["Khan", "said"], ["VC", "said"], ["he", "said"], ["Momand", "said"], ["Shah", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["Khan", "said"], ["officers", "said"], ["he", "said"], ["He", "said"], ["ECP", "said"], ["petition", "said"], ["he", "said"], ["report", "said"], ["it", "said"], ["he", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["exports", "stood"], ["SHOs", "directed"], ["cases", "reported"], ["cases", "reported"], ["which", "stood"], ["cases", "were result"], ["cases", "handled"], ["Naqvi", "directed"], ["value", "stood"], ["cases", "remained"], ["cases", "reported"], ["department", "stood"], ["by", "directed"], ["part", "is"], ["Khan", "directed"], ["cases", "reported"], ["part", "includes rules"], ["someone", "stood"], ["cases", "reported"], ["cases", "registered"], ["cases", "restored"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["people", "killed"], ["people", "lost lives"], ["people", "counted"], ["people", "work"], ["people", "migrate"], ["people", "allow"], ["people", "study"], ["people", "turned"], ["people", "secure job"], ["people", "evacuated"], ["people", "shifted"], ["people", "visited Gardens"], ["people", "visited Rukh"], ["people", "said"], ["people", "tilted"], ["people", "announced"], ["people", "injured"], ["people", "martyred"], ["people", "left Khartoum"], ["people", "killed"], ["people", "were"], ["people", "conspired"], ["people", "took"], ["participants", "are Ijaz"], ["people", "avoid travel"], ["people", "enumerated"], ["people", "belonged"], ["people", "be"], ["people", "killed"], ["people", "tolerate activities"], ["participants", "pointed inconsistency"], ["people", "killed"], ["people", "raised funds"], ["people", "died"], ["issue", "raised"], ["people", "counted"], ["participants", "passed resolution"], ["people", "killed"], ["It", "agreed"], ["people", "injured"], ["people", "coming"], ["people", "tested positive"], ["rally", "held"], ["people", "arrested"], ["people", "arrested"], ["people", "hospitalised"], ["people", "forgive any"], ["people", "injured"], ["people", "sitting"], ["rally", "participated"], ["participants", "raised slogans"], ["rally", "started"], ["people", "tolerate mafia"], ["participants", "selected"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["PPP", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["Shah", "fired 69"], ["Shah", "said"], ["Shah", "arrived"], ["Ahmad", "appeared"], ["Mir", "said"], ["PPP", "play role"], ["Shah", "appeared"], ["PPP", "wanted end"], ["Shah", "told police"], ["Shah", "indu\u00adcted"], ["Shah", "said"], ["Khuhro", "recalled"], ["PPP", "is"], ["Shah", "told reporters"], ["Mir", "said what"], ["Shah", "said"], ["Shah", "said"], ["PPP", "mobilising workers"], ["president", "said"], ["president", "said"], ["Ahmad", "served"], ["Shah", "was"], ["Shah", "said"], ["PPP", "treat Karachi"], ["Mir", "termed allegations"], ["Shah", "said"], ["PPP", "held meeting"], ["Shah", "said"], ["Shah", "said"], ["president", "pointed"], ["Shah", "accompanied minister"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["Sharif", "said"], ["He", "said"], ["Chughtai", "said"], ["sources", "said"], ["Rasheed", "said"], ["Ashraf", "said"], ["Khan", "said"], ["he", "said"], ["he", "said"], ["they", "said"], ["spokesman", "said"], ["CPO", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["family", "was"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["justice", "was"], ["He", "said"], ["Iqbal", "said"], ["he", "said"], ["case", "looked"], ["Tahir", "said"], ["Gondal", "said"], ["Police", "said"], ["He", "said"], ["official", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["family", "was"], ["Kundi", "said"], ["He", "said"], ["lawmaker", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["decision", "taken"], ["police", "said"], ["Mann", "said"], ["Jat", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["FO", "said"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["case", "registered"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["police", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["family", "belonged"], ["He", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["family", "going"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["police", "said"], ["Information", "said"], ["She", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["chairman", "said"], ["Khan", "said"], ["They", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["report", "said"], ["police", "said"], ["Kango", "said"], ["spokesperson", "said"], ["police", "said"], ["jirga", "imposed total"], ["ASP", "said"], ["He", "said"], ["Baloch", "said"], ["Baloch", "said"], ["he", "said"], ["Urging", "said"], ["He", "said"], ["Saeed", "said"], ["alerts", "said"], ["case", "reported"], ["case", "reported"], ["They", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["speakers", "said"], ["petition", "said"], ["which", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["decision", "was cause"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["Qureshi", "said"], ["leader", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["Hussain", "said"], ["Minister", "said"], ["bureau", "said"], ["Kamal", "said"], ["Qu\u00ad\u00adr\u00adeshi", "said"], ["Qureshi", "said"], ["Fawad", "said"], ["He", "said"], ["He", "said"], ["Mughal", "said"], ["They", "said"], ["Shah", "said"], ["They", "said"], ["Saeed", "said"], ["he", "said"], ["He", "said"], ["official", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["jirga", "passed resolution"], ["statement", "said"], ["Saad", "said"], ["report", "said"], ["Kose", "said"], ["Zardari", "said"], ["Shehbaz", "said"], ["he", "said"], ["Shehbaz", "said"], ["he", "said"], ["He", "said"], ["Sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sammo", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["family", "rushed"], ["secretary", "said"], ["petitioner", "asked SHC"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["case", "reported"], ["investigation", "revealed"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["justice", "put ball"], ["judge", "said"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["Sherpao", "said"], ["Saad", "said"], ["president", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["he", "said"], ["officials", "said"], ["It", "said"], ["PDMA", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["SHO", "said"], ["He", "said"], ["They", "said"], ["decision", "taken"], ["He", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["She", "said"], ["she", "said"], ["She", "said"], ["They", "said"], ["chief", "said"], ["ISPR", "said"], ["Khan", "said"], ["statement", "said"], ["Atlas", "said"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["military", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["investigation", "revealed"], ["officials", "said"], ["family", "going"], ["He", "said"], ["Hussain", "said"], ["lawmaker", "said"], ["who", "said"], ["He", "said"], ["chairman", "said"], ["he", "said"], ["It", "said"], ["DC", "said"], ["Chattha", "said"], ["He", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["justice", "take notice"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["Raza", "said"], ["minister", "said"], ["Police", "said"], ["KARACHI", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["Moonis", "said"], ["case", "made"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["He", "said"], ["complainant", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["it", "said"], ["decision", "came"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["he", "said"], ["dealer", "said"], ["president", "said"], ["Officials", "said"], ["He", "said"], ["police", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["He", "said"], ["chief", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["Qureshi", "said"], ["spokesperson", "said"], ["They", "said"], ["president", "said"], ["Khattak", "said"], ["Abbasi", "said"], ["he", "said"], ["Khalid", "said"], ["Abbasi", "said"], ["doctor", "said"], ["He", "said"], ["case", "registered"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Hussain", "said"], ["Hussaini", "said"], ["embassy", "said"], ["Nayyar", "said"], ["Council", "said"], ["Dashti", "said"], ["Michael", "said"], ["Michael", "said"], ["he", "said"], ["he", "said"], ["Batool", "said"], ["he", "said"], ["he", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["case", "transferred"], ["Sharma", "said"], ["Detho", "said"], ["sources", "said"], ["case", "lodged"], ["DC", "said"], ["case", "lodged"], ["counsel", "said"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["decision", "made"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Party", "said"], ["He", "said"], ["nazim", "said"], ["he", "said"], ["Sources", "said"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["sources", "said"], ["statement", "said"], ["Spektor", "said"], ["Shah", "said"], ["officials", "said"], ["Iqbal", "said"], ["minister", "said"], ["Kaira", "said"], ["Chaudhry", "said"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["Malik", "said"], ["he", "said"], ["family", "got"], ["He", "said"], ["he", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["he", "said"], ["Jappa", "said"], ["He", "said"], ["he", "said"], ["source", "said"], ["Sources", "said"], ["Baloch", "said"], ["official", "said"], ["She", "said"], ["he", "said"], ["Palijo", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["Asim", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["IGP", "said"], ["He", "said"], ["He", "said"], ["Siddiqui", "said"], ["He", "said"], ["Siddiqui", "said"], ["Kaira", "said"], ["He", "said"], ["He", "said"], ["Murtaza", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["spokesman", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["Naqvi", "said"], ["Officials", "said"], ["sources", "said"], ["Khattak", "said"], ["he", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["He", "said"], ["MPA", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Naurang", "said"], ["Naurang", "said"], ["Mohammad", "said"], ["Iqbal", "said"], ["Khan", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["Naqvi", "said"], ["office", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["official", "said"], ["Anwar", "said"], ["police", "said"], ["Call", "said"], ["Shabbar", "said"], ["Mansoor", "said"], ["Ghani", "said"], ["They", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["secretary", "said"], ["complainant", "said"], ["Adnan", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["View", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["Qaiser", "said"], ["Minister", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["police", "said"], ["he", "said"], ["She", "said"], ["Ashraf", "said"], ["Bizenjo", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["who", "said"], ["they", "said"], ["Pawar", "said"], ["justice", "took"], ["statement", "said"], ["He", "said"], ["filing", "said"], ["filing", "said"], ["reporter", "said"], ["Qureshi", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["Safdar", "said"], ["Khan", "said"], ["he", "said"], ["minister", "said"], ["He", "said"], ["Ghani", "said"], ["Ali", "said"], ["officials", "said"], ["Hasnain", "said"], ["Nawaz", "said"], ["Ramchand", "said"], ["Ramchand", "said"], ["Hashmi", "said"], ["official", "said"], ["Umar", "pleaded"], ["He", "said"], ["jirga", "heard arguments"], ["report", "said"], ["CM", "said"], ["vote", "said"], ["resolution", "said"], ["decision", "taken"], ["He", "said"], ["DIG", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Palijo", "said"], ["They", "said"], ["It", "said"], ["Akram", "said"], ["Chaudhry", "said"], ["View", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Sharif", "said"], ["He", "said"], ["Khan", "said"], ["VC", "said"], ["he", "said"], ["Momand", "said"], ["Shah", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["Khan", "said"], ["officers", "said"], ["he", "said"], ["He", "said"], ["ECP", "said"], ["petition", "said"], ["Cohen", "said"], ["decision", "implemented"], ["report", "said"], ["it", "said"], ["he", "said"], ["He", "said"], ["resident", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["decision", "caused disintegration"], ["he", "said"], ["bench", "said"], ["jirga", "asked petitioner"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["We", "demanded"], ["areas", "missed"], ["census", "damaged interests"], ["tenure", "extended"], ["encounters", "stopped"], ["Wahab", "demanded"], ["coverage", "extended"], ["voice", "believed"], ["timeline", "extended"], ["general", "demanded"], ["census", "identified"], ["they", "believed"], ["system", "extended"], ["they", "stopped"], ["bail", "extended"], ["They", "demanded"], ["which", "stopped"], ["circles", "demanded"], ["process", "was"], ["She", "demanded"], ["Qila", "demanded"], ["census", "carried"], ["census", "carried"], ["areas", "fed"], ["areas", "included Hadeed"], ["practice", "extended"], ["by", "extended"], ["census", "was subject"], ["services", "extended"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["official", "said"], ["Organisation", "said"], ["Bank", "said"], ["report", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["they", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["he", "said"], ["He", "said"], ["Iqbal", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["Police", "said"], ["He", "said"], ["official", "said"], ["Jappa", "said"], ["he", "said"], ["He", "said"], ["residents", "said"], ["It", "said"], ["They", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MNA", "said"], ["Kundi", "said"], ["Kundi", "said"], ["He", "said"], ["he", "said"], ["Bibi", "said"], ["She", "said"], ["she", "said"], ["Yaqoob", "said"], ["police", "said"], ["Mann", "said"], ["Jat", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["FO", "said"], ["Langer", "said"], ["DeSimone", "said"], ["they", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["Police", "said"], ["people", "said"], ["spokesperson", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Shaikh", "said"], ["Shaikh", "said"], ["he", "said"], ["They", "said"], ["officials", "added"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["dacoits", "arrived"], ["Irfan", "said"], ["minister", "said"], ["he", "said"], ["He", "said"], ["spokesman", "said"], ["Munir", "said"], ["officials", "told correspondent"], ["minister", "said"], ["He", "said"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["chairman", "said"], ["Khan", "said"], ["They", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["official", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["minister", "said"], ["sources", "said"], ["sources", "said"], ["source", "said"], ["Kamal", "said"], ["Tarar", "said"], ["he", "said"], ["He", "said"], ["Zardari", "said"], ["Zardari", "said"], ["He", "said"], ["official", "said"], ["officers", "said"], ["They", "said"], ["Haq", "said"], ["He", "said"], ["sources", "said"], ["Police", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["area", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["officials", "issuing statements"], ["he", "said"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["Ashraf", "said"], ["speaker", "said"], ["View", "said"], ["Secretariat", "said"], ["police", "said"], ["Munir", "said"], ["Munir", "said"], ["Shehbaz", "said"], ["Talks", "said"], ["he", "said"], ["official", "said"], ["He", "said"], ["Aslam", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["Najmi", "said"], ["Sanwal", "said"], ["Randhawa", "said"], ["Hussain", "said"], ["Minister", "said"], ["bureau", "said"], ["Kamal", "said"], ["Qu\u00ad\u00adr\u00adeshi", "said"], ["Qureshi", "said"], ["Fawad", "said"], ["He", "said"], ["He", "said"], ["Mughal", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["auditors", "said"], ["Sabih", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["officials", "said"], ["officials", "told media"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["NIH", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["minister", "said"], ["Das", "said"], ["SSP", "said"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gilani", "said"], ["He", "said"], ["Haq", "said"], ["Haq", "said"], ["adding", "had say"], ["Tohidi", "said"], ["report", "said"], ["He", "said"], ["They", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Bacha", "said"], ["Officials", "said"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["officials", "said"], ["It", "said"], ["PDMA", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["SHO", "said"], ["He", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["activities", "suspended"], ["he", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["officials", "searched house"], ["Establish\u00adment", "said"], ["premier", "said"], ["wing", "said"], ["military", "said"], ["she", "said"], ["She", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["Nawaz", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Hussain", "said"], ["lawmaker", "said"], ["who", "said"], ["He", "said"], ["chairman", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["commissioner", "said"], ["Chattha", "said"], ["Chattha", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shah", "said"], ["speaker", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["he", "said"], ["Riaz", "said"], ["officer", "said"], ["CM", "said"], ["He", "said"], ["Channa", "said"], ["They", "said"], ["Shah", "said"], ["it", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["He", "said"], ["complainant", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["bench", "said"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["Bali", "said"], ["he", "said"], ["dealer", "said"], ["president", "said"], ["Officials", "said"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["chairman", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["Qureshi", "said"], ["leader", "said"], ["Malekzadh", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["police", "said"], ["sources", "said"], ["Khan", "said"], ["Sources", "said"], ["area", "comprises Pindigheb"], ["Shehzad", "said"], ["Hussain", "said"], ["He", "said"], ["She", "said"], ["he", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["nothing", "said"], ["Detho", "said"], ["She", "said"], ["they", "said"], ["Ikram", "said"], ["DC", "said"], ["sources", "said"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["activities", "launched"], ["Sindhu", "said"], ["He", "said"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Party", "said"], ["He", "said"], ["nazim", "said"], ["he", "said"], ["Sources", "said"], ["area", "comprises Pindigheb"], ["They", "said"], ["police", "said"], ["CJ", "said"], ["They", "said"], ["sources", "said"], ["statement", "said"], ["Spektor", "said"], ["Shah", "said"], ["officials", "said"], ["General", "said"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["area", "falls"], ["Malik", "said"], ["he", "said"], ["He", "said"], ["Yaseen", "said"], ["Yaseen", "said"], ["he", "said"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Sources", "said"], ["source", "said"], ["Shaheen", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["Palijo", "said"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["Asim", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["dacoits", "killed"], ["IGP", "said"], ["IGP", "said"], ["Sources", "said"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["officials", "assist him"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["spokesman", "said"], ["spokesperson", "said"], ["official", "said"], ["Saeed", "said"], ["Khawar", "said"], ["letter", "said"], ["Naqvi", "said"], ["Officials", "said"], ["sources", "said"], ["Khattak", "said"], ["he", "said"], ["officials", "said"], ["statement", "said"], ["Officials", "said"], ["officials", "approach police"], ["officials", "suspend supply"], ["officials", "came"], ["MPA", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["officials", "told Dawn"], ["They", "said"], ["He", "said"], ["Rabi", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["Naqvi", "said"], ["office", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["officials", "pay visits"], ["police", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Nayyer", "said"], ["Khan", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["secretary", "said"], ["complainant", "said"], ["Adnan", "said"], ["officials", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["View", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["Qaiser", "said"], ["notification", "said"], ["Shinwari", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gohati", "said"], ["Hussain", "said"], ["Hussain", "said"], ["It", "said"], ["who", "said"], ["they", "said"], ["Pawar", "said"], ["ministry", "said"], ["FO", "said"], ["he", "said"], ["Paracha", "said"], ["reporter", "said"], ["reporter", "said"], ["Qureshi", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["Safdar", "said"], ["Khan", "said"], ["he", "said"], ["official", "said"], ["Ghani", "said"], ["Sources", "said"], ["Khan", "said"], ["Hasnain", "said"], ["resident", "said"], ["They", "said"], ["She", "said"], ["spokesman", "said"], ["authority", "said"], ["release", "said"], ["leader", "said"], ["it", "said"], ["report", "said"], ["CM", "said"], ["vote", "said"], ["resolution", "said"], ["minister", "said"], ["dacoits", "killed"], ["DIG", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Palijo", "said"], ["officials", "claimed"], ["officials", "seizing stocks"], ["It", "said"], ["official", "said"], ["They", "said"], ["Chaudhry", "said"], ["leader", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["official", "said"], ["He", "said"], ["he", "said"], ["Khan", "said"], ["Relations", "said"], ["he", "said"], ["officials", "told Dawn"], ["They", "said"], ["They", "said"], ["official", "said"], ["Khan", "said"], ["officers", "said"], ["he", "said"], ["He", "said"], ["ECP", "said"], ["petition", "said"], ["Cohen", "said"], ["report", "said"], ["report", "said"], ["Limited", "said"], ["organisers", "said"], ["ambassador", "said"], ["stream", "said"], ["DPO", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["bench", "said"], ["sources", "said"], ["He", "said"], ["officials", "said"], ["dacoits", "shot man"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Sindh", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["action", "taken"], ["deceased", "taken"], ["motu", "taken"], ["decision", "taken"], ["Ali", "inquires"], ["decision", "taken"], ["colleagues", "taken"], ["by", "taken"], ["They", "taken"], ["members", "taken"], ["Ali", "shot"], ["action", "taken"], ["body", "taken"], ["by", "taken"], ["They", "taken"], ["acts", "carried"], ["body", "taken"], ["Ali", "joined department"], ["Ali", "injured"], ["services", "taken"], ["bodies", "taken"], ["Javed", "taken"], ["action", "taken"], ["by", "carried"], ["doctors", "declared"], ["he", "taken"], ["Ali", "suffered injuries"], ["decision", "taken"], ["remarks", "taken"], ["bail", "taken"], ["injured", "taken"], ["action", "taken"], ["by", "taken"], ["College", "aims"], ["by", "carried"], ["doctors", "confirmed death"], ["Processions", "taken"], ["notice", "taken"], ["child", "taken"], ["Ali", "allotted symbol"], ["by", "taken"], ["operations", "carried"], ["Ali", "suspected"], ["Ali", "suspected"], ["census", "carried"], ["by", "carried"], ["by", "taken"], ["by", "taken"], ["by", "taken"], ["raid", "carried"], ["wheat", "taken"], ["doctors", "referred her"], ["actions", "taken"], ["doctors", "declared"], ["news", "carried"], ["decision", "taken"], ["by", "carried"], ["Hassan", "confirmed outbreak"], ["he", "taken"], ["decision", "taken"], ["action", "taken"], ["by", "carried"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["petition", "says"], ["Malik", "says"], ["Dehwar", "been"], ["Naveed", "says"], ["he", "says"], ["Gul", "says"], ["Elahi", "says"], ["report", "says"], ["efforts", "says"], ["Nisar", "says"], ["ex", "says"], ["person", "says"], ["country", "going"], ["official", "says"], ["report", "says"], ["minister", "says"], ["Expert", "says"], ["expert", "says"], ["Nations", "says"], ["Abbas", "says"], ["Imran", "says"], ["advisory", "says"], ["Islamabad", "consulted Washington"], ["Islamabad", "city"], ["secretary", "says"], ["Islamabad", "was place"], ["MPA", "said"], ["Salman", "says"], ["spox", "says"], ["country", "established ties"], ["he", "says"], ["Khan", "says"], ["report", "says"], ["Bashir", "says"], ["Dehwar", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["police", "said"], ["police", "sought remand"], ["police", "announced measures"], ["police", "saying"], ["police", "continued"], ["Wida", "observed"], ["Ahmad", "appeared"], ["police", "claimed"], ["police", "said"], ["police", "deployed personnel"], ["police", "had"], ["police", "registered cases"], ["police", "said"], ["police", "claimed"], ["police", "identified deceased"], ["police", "nabbed driver"], ["police", "killing men"], ["police", "arrested man"], ["police", "opened fire"], ["police", "registered case"], ["police", "claimed"], ["police", "got off"], ["police", "found"], ["police", "murdered Akbar"], ["police", "arrested Ahmed"], ["police", "arrested persons"], ["police", "registered cases"], ["police", "arrested lifters"], ["police", "said"], ["police", "said"], ["police", "destroyed hideouts"], ["committee", "observed"], ["police", "launched operation"], ["police", "had facilities"], ["police", "arrested lifters"], ["police", "said"], ["police", "announced bounty"], ["police", "said"], ["police", "claimed"], ["police", "collecting details"], ["police", "impounded van"], ["police", "arrested youths"], ["police", "said"], ["police", "collected evidence"], ["police", "recovered tank"], ["police", "offered information"], ["police", "said"], ["police", "said"], ["police", "said"], ["he", "observed"], ["police", "used force"], ["police", "found body"], ["police", "arrested Usman"], ["Khan", "observed"], ["bench", "observed"], ["police", "begun search"], ["police", "arrested two"], ["they", "required"], ["Elahi", "required"], ["police", "said"], ["police", "identified her"], ["police", "waiting"], ["Raza", "observed"], ["police", "registered case"], ["police", "engaged"], ["Ahmad", "observed"], ["police", "said"], ["Justice", "visited Swabi"], ["police", "said"], ["Justice", "issued order"], ["police", "identified rickshaw"], ["Ahmad", "visited centres"], ["police", "registered case"], ["police", "taking him"], ["police", "launched operation"], ["police", "said"], ["police", "arrested youth"], ["police", "said"], ["police", "spotted car"], ["police", "arrested suspects"], ["police", "rounded persons"], ["He", "observed"], ["police", "seeking help"], ["police", "claimed"], ["police", "taken control"], ["police", "said"], ["police", "arrested suspects"], ["police", "rounded persons"], ["police", "said"], ["police", "said"], ["leaders", "observed"], ["police", "stopping vehicles"], ["police", "said"], ["police", "foiled attempt"], ["police", "foiled attempt"], ["Neelum", "observed"], ["petitioner", "was"], ["CJP", "observed"], ["police", "registered case"], ["police", "registered cases"], ["police", "recovered bodies"], ["police", "claimed"], ["police", "were"], ["police", "claimed"], ["petitioner", "was"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Lahore", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["India", "appears"], ["States", "launched operations"], ["States", "left door"], ["it", "include"], ["candidates", "include"], ["India", "have 79.88pc"], ["Bangladesh", "were 166"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["patients", "suffering"], ["people", "killed"], ["people", "lost lives"], ["people", "counted increase"], ["people", "call"], ["people", "deserved assistance"], ["people", "live"], ["people", "shown"], ["people", "flooded markets"], ["people", "switched"], ["agriculture", "suffering"], ["people", "hold custodian"], ["Quint", "reported"], ["people", "shifted"], ["people", "visited Museum"], ["people", "visited Park"], ["people", "visited Dam"], ["people", "rid"], ["people", "tilted"], ["people", "announced"], ["Dawn.com", "reported"], ["people", "injured"], ["people", "led life"], ["people", "martyred"], ["people", "lost lives"], ["people", "left Khartoum"], ["road", "connected"], ["people", "living"], ["people", "conspired"], ["case", "reported"], ["people", "killed"], ["people", "prepared"], ["people", "accept it"], ["people", "managed"], ["people", "belonged"], ["people", "be"], ["cases", "reported"], ["Mustafa", "reported"], ["people", "suffered injuries"], ["people", "tolerate activities"], ["Incidents", "reported"], ["MARWAT", "reported"], ["number", "reported"], ["APP", "reported"], ["driver", "reported"], ["floods", "reported"], ["people", "raised funds"], ["people", "died"], ["cases", "reported"], ["Ltd", "reported"], ["people", "build houses"], ["people", "tolerate militancy"], ["people", "facilitated"], ["people", "killed"], ["people", "killed"], ["children", "suffering"], ["people", "coming"], ["people", "killed"], ["patient", "suffering"], ["people", "become citizens"], ["road", "remained"], ["people", "arrested"], ["people", "hospitalised"], ["people", "forgive any"], ["cases", "reported"], ["people", "informed service"], ["people", "evicted"], ["patient", "suffering"], ["people", "tolerate mafia"], ["floods", "reported"], ["Dawn.com", "reported"], ["cases", "reported"], ["condition", "reported"], ["by", "reported"], ["people", "implicated"], ["people", "counted"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["Khan", "written letters"], ["Khan", "was"], ["Khan", "awarded ticket"], ["Khan", "said"], ["Khan", "killed"], ["Khan", "attended meeting"], ["Khan", "told police"], ["Khan", "said"], ["channels", "broadcasting statements"], ["Khan", "said"], ["Khan", "got assemblies"], ["Khan", "refused"], ["Khan", "launched campaign"], ["country", "suffering"], ["Khan", "said"], ["Khan", "was leader"], ["Khan", "said"], ["Khan", "said"], ["Khan", "said"], ["Khan", "told reporters"], ["Khan", "offered prayers"], ["Khan", "said"], ["Khan", "injured"], ["Imran", "accept results"], ["Khan", "directed Ministry"], ["Khan", "told police"], ["Khan", "told Dawn"], ["Khan", "gearing"], ["country", "fall that"], ["Khan", "heard"], ["Khan", "reviewed decision"], ["Khan", "stated"], ["Khan", "said"], ["Khan", "informed Rescue"], ["Khan", "told Dawn"], ["Khan", "came"], ["ban", "warns"], ["Khan", "received gifts"], ["country", "maintained dialogue"], ["Khan", "died"], ["Khan", "moved Court"], ["Khan", "said"], ["Khan", "told Dawn"], ["Khan", "said"], ["Khan", "directed"], ["Khan", "transferred"], ["Khan", "said"], ["Khan", "used language"], ["Khan", "is"], ["Khan", "described raid"], ["Khan", "said"], ["country", "shareddeep Pakistan"], ["Khan", "distributed tickets"], ["Imran", "concealed assets"], ["Imran", "died"], ["Imran", "says"], ["Khan", "said"], ["Khan", "made appeal"], ["Khan", "said"], ["Khan", "briefed"], ["Imran", "said"], ["Khan", "had dispute"], ["Khan", "decided"], ["Khan", "appeared"], ["Khan", "reviewed"], ["Khan", "decided"], ["Khan", "visited centres"], ["Khan", "is"], ["Khan", "said"], ["Khan", "are"], ["country", "faced"], ["Khan", "organised marches"], ["Khan", "deployed"], ["ban", "was setback"], ["Khan", "accompanied him"], ["country", "consider ties"], ["Imran", "said"], ["Khan", "said"], ["Khan", "says"], ["Khan", "pointed"], ["Khan", "returning"], ["Khan", "told Dawn"], ["Khan", "said"], ["Khan", "wanted"], ["Khan", "specified"], ["Khan", "said"], ["Khan", "obtained bail"], ["Khan", "visited centres"], ["Imran", "told Dawn"], ["country", "facing devastation"], ["country", "sufficient"], ["Khan", "said"], ["Khan", "directed officials"], ["Khan", "appear"], ["Khan", "killed"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["ECP", "Organization"], ["FIR", "Organization"], ["by", "told"], ["video", "went"], ["mother", "robbed"], ["meeting", "told"], ["proportion", "went"], ["share", "went"], ["suspect", "is"], ["girls", "raped"], ["suspect", "stated"], ["Ali", "went"], ["cabinet", "told"], ["suspect", "killed"], ["girl", "raped"], ["prices", "went"], ["suspect", "shot sister"], ["suspect", "was acquaintance"], ["moot", "told"], ["suspect", "confessed Arshat"], ["suspect", "claimed"], ["school", "is school"], ["team", "went"], ["suspect", "stabbed Inam"], ["girl", "assaulted"], ["by", "told"], ["meeting", "told"], ["she", "went"], ["mother", "arrested"], ["mother", "looking"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["ECP", "Organization"], ["FIR", "Organization"], ["sector", "going"], ["sector", "be sector"], ["media", "highlight issues"], ["Pakistan", "dealing"], ["media", "was source"], ["sector", "stifled"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["Sudan", "Location"], ["Punjab", "has history"], ["Punjab", "consider"], ["KP", "utilised worth"], ["FIA", "asked"], ["Fishermen", "asked"], ["authorities", "asked"], ["secretary", "stated"], ["logistics", "asked"], ["issue", "settled"], ["secretary", "informed"], ["issue", "dumped"], ["issue", "stand"], ["by", "asked"], ["Punjab", "destined"], ["Punjab", "had cadre"], ["Punjab", "wanted"], ["secretary", "called"], ["NAB", "asked"], ["Punjab", "fared best"], ["Punjab", "introduced concept"], ["secretary", "said"], ["Punjab", "witnessed attack"], ["Punjab", "compromise transparency"], ["solution", "lay"], ["SHO", "asked"], ["KP", "produced electricity"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["ECP", "Organization"], ["FIR", "Organization"], ["police", "said"], ["he", "produced"], ["police", "said"], ["police", "saying"], ["police", "arrested two"], ["police", "arrested robber"], ["client", "manufactured cigarettes"], ["police", "claimed"], ["police", "said"], ["police", "deployed personnel"], ["police", "registered cases"], ["by", "given"], ["police", "said"], ["police", "claimed"], ["party", "launch campaign"], ["police", "identified deceased"], ["police", "nabbed driver"], ["police", "killing men"], ["police", "arrested man"], ["police", "opened fire"], ["police", "registered case"], ["party", "kept award"], ["police", "arrested gamblers"], ["police", "killed man"], ["police", "shifted him"], ["police", "said"], ["police", "said"], ["million", "recovered"], ["police", "registered cases"], ["police", "found"], ["ruling", "given"], ["police", "arrested lifters"], ["police", "said"], ["police", "said"], ["police", "destroyed hideouts"], ["police", "granted bail"], ["police", "conducted raids"], ["police", "continue"], ["vehicles", "recovered"], ["police", "said"], ["police", "announced bounty"], ["police", "said"], ["Rehman", "recovered"], ["police", "claimed"], ["police", "collecting details"], ["police", "registered case"], ["police", "arrested youths"], ["police", "said"], ["police", "registered case"], ["police", "foiled attempt"], ["police", "offered information"], ["police", "dispatched bodies"], ["treatment", "given"], ["police", "said"], ["fact", "is"], ["police", "used force"], ["police", "found body"], ["police", "arrested Usman"], ["party", "challenged formation"], ["party", "sacrificed thousands"], ["police", "begun search"], ["police", "arrested two"], ["police", "violated sanctity"], ["police", "investigating incident"], ["police", "visited spot"], ["police", "said"], ["party", "established platform"], ["complainant", "said"], ["party", "create violence"], ["police", "launched operation"], ["police", "said"], ["police", "were"], ["party", "go"], ["police", "said"], ["police", "identified rickshaw"], ["party", "asked aspirants"], ["police", "arrested youth"], ["police", "arrested suspect"], ["police", "granted bail"], ["police", "conducted raids"], ["police", "arrested youth"], ["party", "decided"], ["police", "said"], ["party", "rejected census"], ["police", "intensified crackdown"], ["police", "arrested man"], ["party", "worked"], ["police", "picked women"], ["police", "release members"], ["police", "claimed"], ["police", "taken control"], ["police", "said"], ["police", "arrested suspects"], ["police", "rounded persons"], ["police", "said"], ["police", "said"], ["party", "believed"], ["sisters", "recovered"], ["police", "Tibbi Asgharabad"], ["police", "stopping vehicles"], ["fact", "is"], ["police", "said"], ["police", "foiled attempt"], ["police", "foiled attempt"], ["by", "given"], ["police", "lodged case"], ["police", "said"], ["police", "registered cases"], ["police", "recovered bodies"], ["police", "claimed"], ["party", "vowed"], ["party", "was"], ["body", "recovered"], ["police", "were"], ["party", "failed"], ["party", "proceed"], ["police", "claimed"], ["by", "produced"], ["police", "identified deceased"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["official", "said"], ["Organisation", "said"], ["Bank", "said"], ["report", "said"], ["source", "said"], ["Chaudhry", "said"], ["Humayun", "said"], ["statement", "said"], ["He", "said"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["police", "sought remand"], ["Lal", "said"], ["Magsi", "said"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["he", "said"], ["one", "said"], ["voice", "said"], ["voice", "said"], ["Minhas", "said"], ["He", "said"], ["DIG", "said"], ["officials", "said"], ["official", "said"], ["officials", "said"], ["group", "involved"], ["he", "said"], ["He", "said"], ["Iqbal", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["he", "said"], ["Police", "said"], ["police", "arrested two"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["police", "continued"], ["police", "arrested robber"], ["He", "said"], ["police", "set checkpoints"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["lawmaker", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["police", "taken Singh"], ["police", "claimed"], ["police", "took him"], ["Mann", "said"], ["Mann", "said"], ["Jat", "said"], ["he", "said"], ["official", "said"], ["Asakawa", "said"], ["FO", "said"], ["Langer", "said"], ["DeSimone", "said"], ["police", "reached spot"], ["persons", "arrested"], ["officials", "said"], ["Khalid", "said"], ["resident", "said"], ["They", "said"], ["police", "registered cases"], ["Khattak", "said"], ["police", "said"], ["tribunal", "said"], ["verdict", "said"], ["approval", "said"], ["police", "claimed"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["chairman", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["police", "arrested Siddiqullah"], ["They", "said"], ["sources", "said"], ["police", "nabbed driver"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["police", "burnt house"], ["He", "said"], ["police", "killing men"], ["robber", "arrested"], ["police", "arrested man"], ["Irfan", "said"], ["Irfan", "said"], ["Irfan", "said"], ["police", "registered case"], ["He", "said"], ["he", "involved"], ["He", "said"], ["spokesman", "said"], ["police", "arrested gamblers"], ["persons", "arrested"], ["police", "found"], ["police", "murdered Akbar"], ["police", "arrested Ahmed"], ["Information", "said"], ["She", "said"], ["who", "involved"], ["Sanaullah", "said"], ["Chaudhry", "said"], ["Mazari", "said"], ["police", "said"], ["officials", "said"], ["officials", "said"], ["Khan", "said"], ["sources", "said"], ["Officials", "said"], ["officials", "said"], ["officials", "said"], ["They", "said"], ["police", "arrested persons"], ["He", "said"], ["official", "said"], ["official", "said"], ["official", "said"], ["resident", "said"], ["statement", "said"], ["Khan", "said"], ["He", "said"], ["police", "registered cases"], ["Khan", "said"], ["Gandapur", "said"], ["Khan", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["He", "said"], ["ISPR", "said"], ["he", "said"], ["DG", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["person", "said"], ["Minister", "said"], ["Khan", "said"], ["Gul", "said"], ["They", "said"], ["PBS", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["police", "arrested lifters"], ["he", "said"], ["He", "said"], ["He", "said"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["statement", "said"], ["Bux", "arrested"], ["Rana", "said"], ["Raza", "said"], ["he", "said"], ["Police", "said"], ["They", "said"], ["area", "said"], ["spokesperson", "said"], ["police", "said"], ["police", "were"], ["he", "said"], ["He", "said"], ["He", "said"], ["LAHORE", "arrested"], ["police", "destroyed hideouts"], ["He", "said"], ["police", "participate"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["counsel", "said"], ["police", "conducted raids"], ["motorcyclists", "shot man"], ["He", "said"], ["They", "said"], ["Hazrat", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["police", "continue"], ["Mengal", "said"], ["he", "said"], ["release", "said"], ["he", "said"], ["general", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["police", "linked incident"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Munir", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["Qureshi", "said"], ["petitioner", "arrested"], ["Aslam", "said"], ["aide", "said"], ["Wani", "said"], ["letter", "said"], ["release", "said"], ["officials", "said"], ["statement", "said"], ["sources", "said"], ["official", "said"], ["Siddiqi", "said"], ["KARACHI", "said"], ["Korai", "said"], ["He", "said"], ["dozens", "deprived"], ["SSP", "said"], ["police", "said"], ["Chandio", "said"], ["relatives", "said"], ["Relatives", "said"], ["father", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Tunio", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["Khan", "said"], ["chief", "said"], ["Akram", "said"], ["Nasir", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["Hussain", "said"], ["Minister", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "registered FIR"], ["They", "said"], ["accused", "arrested"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["police", "registered case"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["official", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["auditors", "said"], ["Sabih", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["sources", "said"], ["police", "offered information"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["police", "said"], ["officials", "said"], ["professionals", "said"], ["Usman", "said"], ["NIH", "said"], ["Bareech", "said"], ["Kasi", "said"], ["Inayatullah", "said"], ["resident", "said"], ["official", "said"], ["Memon", "said"], ["He", "said"], ["Khuhro", "said"], ["Sahito", "said"], ["Jamali", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["who", "involved"], ["He", "said"], ["Das", "said"], ["SSP", "said"], ["police", "used force"], ["She", "said"], ["he", "said"], ["Zarfashan", "said"], ["police", "solved case"], ["police", "received lead"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["police", "set camps"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["he", "said"], ["judge", "said"], ["He", "said"], ["report", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["Saad", "said"], ["president", "said"], ["he", "said"], ["he", "said"], ["attackers", "arrested"], ["Memon", "said"], ["DIG", "said"], ["IGP", "said"], ["IGP", "said"], ["officials", "said"], ["It", "said"], ["PDMA", "said"], ["Durrani", "said"], ["police", "begun search"], ["Haq", "said"], ["Zia", "said"], ["Zia", "said"], ["Khan", "said"], ["Momand", "said"], ["He", "said"], ["SHO", "said"], ["He", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["he", "said"], ["stance", "said"], ["He", "said"], ["police", "failed"], ["Establish\u00adment", "said"], ["premier", "said"], ["Relations", "said"], ["ISPR", "said"], ["Baloch", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["Afridi", "said"], ["spokesman", "said"], ["officials", "said"], ["police", "investigating incident"], ["He", "said"], ["Hussain", "said"], ["lawmaker", "said"], ["who", "said"], ["He", "said"], ["chairman", "said"], ["he", "said"], ["It", "said"], ["DC", "said"], ["Chattha", "said"], ["He", "said"], ["He", "said"], ["people", "said"], ["speakers", "said"], ["speakers", "said"], ["He", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["he", "said"], ["police", "identified her"], ["police", "visited spot"], ["Police", "said"], ["KARACHI", "said"], ["he", "said"], ["force", "said"], ["Channa", "said"], ["They", "said"], ["Shah", "said"], ["Moonis", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["Chauhan", "said"], ["Liu", "said"], ["complainant", "said"], ["sources", "said"], ["accused", "arrested"], ["Rafique", "said"], ["it", "said"], ["bench", "said"], ["suspects", "arrested"], ["Jameel", "said"], ["police", "said"], ["Mohammad", "said"], ["Marwat", "said"], ["official", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Officials", "said"], ["He", "said"], ["police", "said"], ["adviser", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["chief", "said"], ["Sherpao", "said"], ["He", "said"], ["chief", "said"], ["Khan", "said"], ["insider", "said"], ["source", "said"], ["Khan", "said"], ["Khan", "said"], ["Qureshi", "said"], ["spokesperson", "said"], ["They", "said"], ["president", "said"], ["Khattak", "said"], ["Abbasi", "said"], ["he", "said"], ["Khalid", "said"], ["Abbasi", "said"], ["doctor", "said"], ["He", "said"], ["police", "said"], ["sources", "said"], ["Khan", "said"], ["Sources", "said"], ["police", "registered case"], ["Shehzad", "said"], ["Hussain", "said"], ["Senator", "said"], ["He", "said"], ["She", "said"], ["police", "registered case"], ["he", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["nothing", "said"], ["Detho", "said"], ["She", "said"], ["they", "said"], ["police", "arrested suspect"], ["Ikram", "said"], ["persons", "arrested"], ["Rizwan", "arrested"], ["DC", "said"], ["sources", "said"], ["counsel", "said"], ["police", "conducted raids"], ["Memon", "said"], ["Memon", "said"], ["He", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["spokesman", "said"], ["They", "said"], ["Officials", "said"], ["PDMA", "said"], ["Sindhu", "said"], ["He", "said"], ["police", "registered case"], ["ex", "said"], ["CJP", "said"], ["She", "said"], ["Tarar", "said"], ["she", "said"], ["Bizenjo", "said"], ["Hussain", "said"], ["leader", "said"], ["Haider", "said"], ["He", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["They", "said"], ["Sabatkhel", "said"], ["Altaf", "said"], ["he", "said"], ["Patel", "said"], ["doctor", "said"], ["General", "said"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["commissioner", "said"], ["officer", "said"], ["He", "said"], ["chairman", "said"], ["He", "said"], ["suspects", "arrested"], ["police", "spotted car"], ["police", "intensified crackdown"], ["police", "arrested suspects"], ["police", "rounded persons"], ["Yaseen", "said"], ["Yaseen", "said"], ["he", "said"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Sources", "said"], ["source", "said"], ["Shaheen", "said"], ["he", "said"], ["official", "said"], ["she", "said"], ["he", "said"], ["Palijo", "said"], ["He", "said"], ["Chandio", "said"], ["He", "said"], ["factor", "involved"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["police", "undertaken task"], ["He", "said"], ["He", "said"], ["police", "do duties"], ["police", "seeking help"], ["Siddiqui", "said"], ["He", "said"], ["Siddiqui", "said"], ["Kaira", "said"], ["He", "said"], ["He", "said"], ["Murtaza", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["spokesman", "said"], ["stockpiler", "arrested"], ["police", "claimed"], ["He", "said"], ["police", "taken control"], ["government", "said"], ["he", "said"], ["Grounds", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["He", "said"], ["Rabi", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["He", "said"], ["police", "arrested man"], ["who", "involved"], ["traffic", "stressed importance"], ["Office", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["He", "said"], ["Naqvi", "said"], ["he", "said"], ["He", "said"], ["coalition", "said"], ["UN", "said"], ["Farhan", "said"], ["Anwar", "said"], ["laws", "said"], ["Ali", "said"], ["official", "said"], ["sources", "said"], ["He", "said"], ["police", "said"], ["SHO", "said"], ["police", "said"], ["Iqbal", "said"], ["Nayyer", "said"], ["Khan", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["Sumbal", "said"], ["Khan", "said"], ["police", "Tibbi Asgharabad"], ["police", "said"], ["suspects", "involved"], ["officials", "said"], ["police", "stopping vehicles"], ["official", "said"], ["minister", "said"], ["he", "said"], ["View", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["they", "said"], ["Paediatricians", "said"], ["He", "said"], ["he", "said"], ["minister", "said"], ["Qaiser", "said"], ["DIR", "said"], ["Shinwari", "said"], ["They", "said"], ["He", "said"], ["Khan", "said"], ["police", "said"], ["speaker", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Gohati", "said"], ["police", "arrested smuggler"], ["He", "said"], ["police", "signaled car"], ["Hussain", "said"], ["Pawar", "said"], ["veterans", "said"], ["he", "said"], ["Sharif", "said"], ["statement", "said"], ["He", "said"], ["Ghaziani", "said"], ["Paracha", "said"], ["Kaludi", "said"], ["journalist", "said"], ["journalist", "said"], ["he", "said"], ["Asif", "said"], ["Asif", "said"], ["minister", "said"], ["counsel", "said"], ["police", "registered case"], ["He", "said"], ["CJP", "said"], ["minister", "said"], ["He", "said"], ["Ghani", "said"], ["Ali", "said"], ["Khan", "said"], ["Hasnain", "said"], ["resident", "said"], ["They", "said"], ["She", "said"], ["spokesman", "said"], ["authority", "said"], ["release", "said"], ["He", "said"], ["police", "said"], ["Shah", "said"], ["He", "said"], ["he", "said"], ["Naqvi", "said"], ["police", "registered cases"], ["He", "said"], ["absconders", "arrested"], ["Palijo", "said"], ["he", "said"], ["he", "said"], ["Palijo", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["They", "said"], ["police", "registered case"], ["police", "recovered bodies"], ["ACE", "said"], ["police", "shifted dead"], ["Chaudhry", "said"], ["police", "claimed"], ["police", "used force"], ["View", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Sharif", "said"], ["official", "said"], ["He", "said"], ["he", "said"], ["Khan", "said"], ["Relations", "said"], ["by", "arrested"], ["police", "were"], ["Shah", "said"], ["They", "said"], ["They", "said"], ["police", "arrested Afghans"], ["official", "said"], ["Khan", "said"], ["Hussain", "said"], ["He", "said"], ["Safdar", "said"], ["counsel", "said"], ["ECP", "said"], ["predecessor", "said"], ["he", "said"], ["report", "said"], ["it", "said"], ["ARL", "said"], ["organisers", "said"], ["ambassador", "said"], ["stream", "said"], ["motorcyclists", "suffered injuries"], ["Shah", "said"], ["Murad", "said"], ["He", "said"], ["He", "said"], ["Murad", "said"], ["he", "said"], ["Raza", "said"], ["sources", "said"], ["He", "said"], ["police", "claimed"], ["Police", "said"], ["by", "arrested"], ["he", "said"], ["Tahir", "said"], ["police", "required custody"], ["police", "arrested Siddiqullah"], ["They", "said"], ["president", "said"], ["president", "said"], ["She", "said"], ["by", "arrested"], ["Iqbal", "said"], ["leader", "said"], ["Iqbal", "said"], ["he", "said"], ["He", "said"], ["leader", "said"], ["He", "said"], ["sources", "said"], ["by", "arrested"], ["Khan", "said"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["exports", "grew"], ["exports", "dipped"], ["exports", "posted growth"], ["exports", "remained"], ["agency", "start"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["number", "possess land"], ["number", "counted"], ["number", "jumped"], ["number", "returned"], ["number", "attended funeral"], ["number", "confirmed return"], ["sector", "be sector"], ["sector", "be sector"], ["number", "remain"], ["number", "reported"], ["cases", "concentrated"], ["sector", "thrived"], ["number", "draw reaction"], ["sector", "stifled"], ["number", "joined event"], ["number", "mentioned leak"], ["sector", "left"], ["number", "counted"], ["losses", "concentrated"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["Khan", "Person"], ["India", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["crop", "was"], ["crop", "hit market"], ["crop", "affected"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["CDA", "Organization"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["Nawaz", "criticised judge"], ["Sharif", "held meeting"], ["Sharif", "assured nation"], ["Nawaz", "said"], ["Punjab", "completed studies"], ["Sharif", "monitoring plan"], ["Sharif", "is mastermind"], ["organiser", "said"], ["Yasmin", "were"], ["Sharif", "obtained vote"], ["Sharif", "disqualified"], ["Sharif", "directed hiring"], ["Sharif", "met Salman"], ["Sharif", "said"], ["Rashid", "defended Association"], ["Nawaz", "said"], ["president", "said"], ["Sharif", "try"], ["president", "said"], ["president", "regretted"], ["Punjab", "captured"], ["Punjab", "State"], ["Nawaz", "castigated CJP"], ["Nawaz", "added"], ["Punjab", "wanted"], ["Punjab", "was worst"], ["Punjab", "introduced concept"], ["president", "said"], ["Nawaz", "said"], ["Sharif", "ordered departments"], ["Punjab", "witnessed attack"], ["Sharif", "taken"], ["Nawaz", "said"], ["Sharif", "outdone all"], ["Sharif", "said"], ["Punjab", "compromise transparency"], ["Sharif", "touched"], ["president", "observed"], ["Rashid", "warned facilitators"], ["president", "said"], ["Punjab", "produced cent"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["CDA", "Organization"], ["India", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["Pakistan", "exported rice"], ["Pakistan", "having difficulty"], ["Pakistan", "is"], ["Pakistan", "book deficit"], ["Pakistan", "bound"], ["Pakistan", "appears ninth"], ["release", "said"], ["release", "said"], ["Pakistan", "faced"], ["release", "said"], ["Pakistan", "purchase oil"], ["Pakistan", "buy fuels"], ["Pakistan", "be"], ["Pakistan", "considering"], ["Pakistan", "play dayer"], ["Pakistan", "dealing"], ["Pakistan", "has vaccine"], ["release", "was matter"], ["Pakistan", "amending laws"], ["Pakistan", "overcome challenge"], ["Pakistan", "play"], ["Pakistan", "was"], ["Pakistan", "is member"], ["Pakistan", "participating"], ["Pakistan", "wishes"], ["Pakistan", "maintains policy"], ["negotiations", "held"], ["Pakistan", "ended ceasefire"], ["release", "said"], ["Pakistan", "was market"], ["Pakistan", "has deaths"], ["release", "remained point"], ["Pakistan", "established sites"], ["negotiations", "continue"], ["Pakistan", "was state"], ["Pakistan", "was"], ["Ahmed", "agreed"], ["Pakistan", "try"], ["Pakistan", "has ability"], ["Pakistan", "was"], ["Pakistan", "has number"], ["Pakistan", "is member"], ["negotiations", "fail"], ["Pakistan", "has children"], ["Pakistan", "power"], ["China", "agreed"], ["Pakistan", "continue"], ["Pakistan", "affected"], ["Pakistan", "aligned"], ["Pakistan", "are"], ["parties", "agreed"], ["Pakistan", "facing shortage"], ["sides", "agreed"], ["sides", "agreed"], ["Pakistan", "is"], ["Pakistan", "generates that"], ["Pakistan", "faced crisis"], ["Pakistan", "lost wickets"], ["Pakistan", "have relations"], ["Pakistan", "exported tonnes"], ["Pakistan", "placed order"], ["Pakistan", "buy fuels"], ["PTI", "Organization"], ["Balochistan", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["PPP", "Organization"], ["CDA", "Organization"], ["India", "Location"], ["ECP", "Organization"], ["Sudan", "Location"], ["CDA", "canceled lease"], ["counsel", "was"], ["CDA", "wanted"], ["lawyer", "contended"], ["counsel", "said"], ["counsel", "informed court"], ["lawyer", "added"], ["counsel", "argued"], ["counsel", "argued"], ["May", "fixed"], ["lawyer", "told bench"], ["counsel", "submitted application"], ["CDA", "approached PCB"], ["counsel", "said"], ["counsel", "assured bench"], ["CDA", "conducted operation"], ["counsel", "said"], ["judge", "adjourned"], ["CDA", "auctioned acres"], ["counsel", "objected"], ["builder", "filed petition"], ["counsel", "was"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["official", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["Sharif", "said"], ["He", "said"], ["it", "clear"], ["Chughtai", "said"], ["He", "said"], ["boy", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["police", "said"], ["Hamdani", "said"], ["He", "said"], ["It", "said"], ["it", "said"], ["he", "said"], ["Lal", "said"], ["Lal", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["official", "said"], ["It", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Satti", "said"], ["Khan", "said"], ["police", "said"], ["officials", "said"], ["he", "said"], ["officials", "said"], ["justice", "was"], ["He", "said"], ["Iqbal", "said"], ["he", "said"], ["Tahir", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["PM", "said"], ["residents", "said"], ["statement", "said"], ["He", "said"], ["Sher", "said"], ["official", "said"], ["Wajid", "said"], ["he", "said"], ["Kundi", "said"], ["He", "said"], ["lawmaker", "said"], ["He", "said"], ["He", "said"], ["Nawaz", "said"], ["Bangle", "said"], ["Malaika", "said"], ["Khan", "said"], ["Wire", "said"], ["Mann", "said"], ["Mir", "said"], ["he", "said"], ["Jalbani", "said"], ["sources", "said"], ["Khan", "said"], ["it", "said"], ["Jaklenec", "said"], ["they", "said"], ["officials", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["He", "said"], ["police", "said"], ["It", "said"], ["It", "said"], ["Police", "said"], ["KARACHI", "said"], ["spokesperson", "said"], ["He", "said"], ["minister", "said"], ["Zardari", "said"], ["chairman", "said"], ["Zardari", "said"], ["minister", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["Elahi", "said"], ["Elahi", "said"], ["He", "said"], ["He", "said"], ["Lathani", "said"], ["Irfan", "said"], ["Irfan", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["police", "said"], ["Information", "said"], ["She", "said"], ["He", "said"], ["chief", "said"], ["he", "said"], ["spokesman", "said"], ["officials", "said"], ["officials", "said"], ["chairman", "said"], ["Khan", "said"], ["They", "said"], ["officials", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["He", "said"], ["official", "said"], ["official", "said"], ["Khan", "said"], ["statement", "said"], ["Gohati", "said"], ["official", "said"], ["They", "said"], ["Mohammad", "said"], ["IGP", "said"], ["release", "said"], ["he", "said"], ["he", "said"], ["DG", "said"], ["DG", "said"], ["aggression", "said"], ["he", "said"], ["chief", "said"], ["one", "said"], ["Rahim", "said"], ["Asif", "said"], ["Khan", "said"], ["Gul", "said"], ["They", "said"], ["PBS", "said"], ["Kamal", "said"], ["source", "said"], ["Tarar", "said"], ["Tarar", "said"], ["Khan", "said"], ["minister", "said"], ["official", "said"], ["notice", "said"], ["customer", "said"], ["insiders", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Police", "said"], ["sources", "said"], ["He", "said"], ["general", "said"], ["He", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["official", "said"], ["Rana", "said"], ["he", "said"], ["Ghumman", "said"], ["Police", "said"], ["They", "said"], ["area", "said"], ["KARACHI", "said"], ["They", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["justice", "form bench"], ["he", "said"], ["He", "said"], ["he", "said"], ["Fisheries", "said"], ["study", "said"], ["speakers", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["petition", "said"], ["which", "said"], ["Police", "said"], ["They", "said"], ["sources", "said"], ["he", "said"], ["adviser", "said"], ["he", "said"], ["protester", "said"], ["officials", "said"], ["chief", "said"], ["Mengal", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["sources", "said"], ["spokesman", "said"], ["batter", "said"], ["Babar", "said"], ["Relations", "said"], ["Patel", "said"], ["he", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["Officials", "said"], ["He", "said"], ["Residents", "said"], ["premier", "said"], ["he", "said"], ["coalition", "said"], ["Qureshi", "said"], ["leader", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["letter", "said"], ["statement", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["he", "said"], ["he", "said"], ["police", "said"], ["spokesperson", "said"], ["SHO", "said"], ["SSP", "said"], ["Syed", "said"], ["SSP", "said"], ["He", "said"], ["relatives", "said"], ["He", "said"], ["Tunio", "said"], ["SSP", "said"], ["Khoso", "said"], ["Reports", "said"], ["Sarwar", "said"], ["organiser", "said"], ["he", "said"], ["Com\u00admission", "said"], ["he", "said"], ["she", "said"], ["it", "clear"], ["he", "said"], ["participants", "said"], ["He", "said"], ["farmer", "said"], ["Abbas", "said"], ["source", "said"], ["He", "said"], ["he", "said"], ["sources", "said"], ["Kamal", "said"], ["They", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Wazir", "said"], ["Wazir", "said"], ["He", "said"], ["police", "said"], ["chief", "said"], ["speakers", "said"], ["minister", "said"], ["he", "said"], ["speakers", "said"], ["petitioner", "said"], ["He", "said"], ["elders", "said"], ["DPO", "said"], ["Raees", "said"], ["He", "said"], ["Usman", "said"], ["Nawab", "said"], ["auditors", "said"], ["Sabih", "said"], ["Minister", "said"], ["Gill", "said"], ["Blackman", "said"], ["speaker", "said"], ["he", "said"], ["he", "said"], ["He", "said"], ["Mehmood", "said"], ["He", "said"], ["Sources", "said"], ["Talib", "said"], ["he", "said"], ["Awan", "said"], ["police", "said"], ["They", "said"], ["Chatta", "said"], ["he", "said"], ["samples", "said"], ["She", "said"], ["Kasi", "said"], ["officials", "said"], ["he", "said"], ["resident", "said"], ["IGP", "said"], ["IGP", "said"], ["He", "said"], ["Sammo", "said"], ["Kandhro", "said"], ["police", "said"], ["police", "said"], ["He", "said"], ["secretary", "said"], ["He", "said"], ["reports", "said"], ["SSP", "said"], ["Sharif", "said"], ["Sharif", "said"], ["dean", "said"], ["Wazir", "said"], ["Wazir", "said"], ["spokesperson", "said"], ["He", "said"], ["Shahnaz", "said"], ["Zulqarnain", "said"], ["he", "said"], ["justice", "put ball"], ["judge", "said"], ["He", "said"], ["report", "said"], ["petitioners", "said"], ["Sherpao", "said"], ["Saad", "said"], ["president", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["he", "said"], ["IGP", "said"], ["he", "said"], ["officials", "said"], ["It", "said"], ["PDMA", "said"], ["Durrani", "said"], ["police", "said"], ["He", "said"], ["Zia", "said"], ["he", "said"], ["Khan", "said"], ["SHO", "said"], ["SHO", "said"], ["He", "said"], ["They", "said"], ["Fakhar", "said"], ["Fakhar", "said"], ["spokesperson", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["she", "said"], ["Sarwar", "said"], ["wing", "said"], ["Rela\u00adtions", "said"], ["Chaudhry", "said"], ["he", "said"], ["Ltd", "said"], ["he", "said"], ["stance", "said"], ["He", "said"], ["who", "said"], ["team", "said"], ["Relations", "said"], ["ISPR", "said"], ["Baloch", "said"], ["Baloch", "said"], ["she", "said"], ["she", "said"], ["Afridi", "said"], ["spokesman", "said"], ["officials", "said"], ["He", "said"], ["He", "said"], ["Pervaiz", "said"], ["MNA", "said"], ["He", "said"], ["he", "said"], ["he", "said"], ["release", "said"], ["release", "said"], ["commissioner", "said"], ["Chattha", "said"], ["Chattha", "said"], ["he", "said"], ["They", "said"], ["They", "said"], ["Khan", "said"], ["Shah", "said"], ["lawyer", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["general", "said"], ["ADB", "said"], ["it", "said"], ["Saddal", "said"], ["he", "said"], ["he", "said"], ["Riaz", "said"], ["officer", "said"], ["CM", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["Shah", "said"], ["it", "said"], ["He", "said"], ["He", "said"], ["Elahi", "said"], ["spokesman", "said"], ["Mirza", "said"], ["He", "said"], ["complainant", "said"], ["They", "said"], ["Rafique", "said"], ["it", "said"], ["Nasar", "said"], ["he", "said"], ["Police", "said"], ["Director", "said"], ["Syed", "said"], ["he", "said"], ["They", "said"], ["officials", "said"], ["police", "said"], ["Shoaib", "said"], ["official", "said"], ["Feroz", "said"], ["general", "said"], ["Saeed", "said"], ["He", "said"], ["Bacha", "said"], ["Bacha", "said"], ["member", "said"], ["He", "said"], ["Mehmood", "said"], ["aide", "said"], ["Haroon", "said"], ["Sherpao", "said"], ["chairman", "said"], ["he", "said"], ["commission", "said"], ["Khan", "said"], ["He", "said"], ["He", "said"], ["Khan", "said"], ["Qureshi", "said"], ["leader", "said"], ["Malekzadh", "said"], ["Bilidi", "said"], ["general", "said"], ["president", "said"], ["chairman", "said"], ["Imran", "said"], ["Akber", "said"], ["doctor", "said"], ["He", "said"], ["Ishaq", "said"], ["Imran", "said"], ["spokesman", "said"], ["Gardezi", "said"], ["they", "said"], ["Hussain", "said"], ["Senator", "said"], ["He", "said"], ["She", "said"], ["he", "said"], ["Fahim", "said"], ["he", "said"], ["he", "said"], ["Shaikh", "said"], ["he", "said"], ["Billoo", "said"], ["He", "said"], ["Hoodbhoy", "said"], ["he", "said"], ["nothing", "said"], ["Detho", "said"], ["She", "said"], ["they", "said"], ["Ikram", "said"], ["DC", "said"], ["sources", "said"], ["Memon", "said"], ["He", "said"], ["Memon", "said"], ["he", "said"], ["spokesman", "said"], ["He", "said"], ["police", "said"], ["She", "said"], ["officials", "said"], ["officials", "said"], ["ACS", "said"], ["voice", "said"], ["CJP", "said"], ["She", "said"], ["he", "said"], ["she", "said"], ["Bizenjo", "said"], ["Hussain", "said"], ["leader", "said"], ["Haider", "said"], ["He", "said"], ["police", "said"], ["They", "said"], ["PESHAWAR", "said"], ["CJ", "said"], ["They", "said"], ["sources", "said"], ["statement", "said"], ["Spektor", "said"], ["Shah", "said"], ["officials", "said"], ["General", "said"], ["minister", "said"], ["he", "said"], ["Haq", "said"], ["he", "said"], ["minister", "said"], ["Hilu", "said"], ["he", "said"], ["he", "said"], ["Malik", "said"], ["he", "said"], ["He", "said"], ["Yaseen", "said"], ["Yaseen", "said"], ["he", "said"], ["majority", "said"], ["He", "said"], ["he", "said"], ["He", "said"], ["He", "said"], ["Sources", "said"], ["source", "said"], ["Shaheen", "said"], ["it", "clear"], ["official", "said"], ["She", "said"], ["he", "said"], ["Palijo", "said"], ["He", "said"], ["Chandio", "said"], ["spokesperson", "said"], ["Wahab", "said"], ["He", "said"], ["Durrani", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["They", "said"], ["Memon", "said"], ["IGP", "said"], ["IGP", "said"], ["Sources", "said"], ["Kamal", "said"], ["Sattar", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["He", "said"], ["Asif", "said"], ["he", "said"], ["leader", "said"], ["He", "said"], ["DC", "said"], ["He", "said"], ["government", "said"], ["he", "said"], ["Grounds", "said"], ["letter", "said"], ["officials", "said"], ["officials", "said"], ["official", "said"], ["Khattak", "said"], ["Nayab", "said"], ["officials", "said"], ["Officials", "said"], ["He", "said"], ["he", "said"], ["Usman", "said"], ["He", "said"], ["Tabassum", "said"], ["officials", "said"], ["They", "said"], ["He", "said"], ["Rabi", "said"], ["He", "said"], ["police", "said"], ["He", "said"], ["officer", "said"], ["Office", "said"], ["it", "said"], ["Hussain", "said"], ["Hussain", "said"], ["Naqvi", "said"], ["office", "said"], ["spokesman", "said"], ["who", "said"], ["official", "said"], ["He", "said"], ["Hussain", "said"], ["He", "said"], ["Shah", "said"], ["police", "said"], ["Imran", "said"], ["He", "said"], ["official", "said"], ["Anwar", "said"], ["police", "said"], ["Call", "said"], ["Shabbar", "said"], ["Sheikh", "said"], ["Khan", "said"], ["Sarfaraz", "said"], ["They", "said"], ["he", "said"], ["Khatyal", "said"], ["Police", "said"], ["he", "said"], ["chief", "said"], ["Amin", "said"], ["Khan", "said"], ["Sumbal", "said"], ["Khan", "said"], ["police", "said"], ["He", "said"], ["Agha", "said"], ["official", "said"], ["minister", "said"], ["he", "said"], ["View", "said"], ["Nawaz", "said"], ["She", "said"], ["Zardari", "said"], ["Rehman", "said"], ["Alvi", "said"], ["report", "said"], ["report", "said"], ["ISPR", "said"], ["members", "said"], ["They", "said"], ["They", "said"], ["doctor", "said"], ["Khattak", "said"], ["he", "said"], ["notification", "said"], ["Minister", "said"], ["speakers", "said"], ["They", "said"], ["Gul", "said"], ["Khan", "said"], ["police", "said"], ["he", "said"], ["She", "said"], ["Ashraf", "said"], ["Bizenjo", "said"], ["Mohammad", "said"], ["He", "said"], ["It", "said"], ["Rizwan", "said"], ["who", "said"], ["veterans", "said"], ["Rajewal", "said"], ["Pawar", "said"], ["justice", "took"], ["statement", "said"], ["He", "said"], ["Ghaziani", "said"], ["Paracha", "said"], ["Kaludi", "said"], ["journalist", "said"], ["journalist", "said"], ["Qureshi", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["Khan", "said"], ["Safdar", "said"], ["Khan", "said"], ["he", "said"], ["minister", "said"], ["He", "said"], ["Ghani", "said"], ["Ali", "said"], ["officials", "said"], ["Hasnain", "said"], ["Nawaz", "said"], ["Ramchand", "said"], ["Ramchand", "said"], ["Hashmi", "said"], ["official", "said"], ["leader", "said"], ["it", "said"], ["report", "said"], ["CM", "said"], ["vote", "said"], ["resolution", "said"], ["minister", "said"], ["He", "said"], ["Palijo", "said"], ["he", "said"], ["he", "said"], ["Palijo", "said"], ["He", "said"], ["He", "said"], ["he", "said"], ["MS", "said"], ["It", "said"], ["Akram", "said"], ["Chaudhry", "said"], ["View", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Chaudhry", "said"], ["Sharif", "said"], ["He", "said"], ["Khan", "said"], ["VC", "said"], ["he", "said"], ["Momand", "said"], ["Shah", "said"], ["They", "said"], ["They", "said"], ["official", "said"], ["Khan", "said"], ["officers", "said"], ["He", "said"], ["Safdar", "said"], ["counsel", "said"], ["ECP", "said"], ["predecessor", "said"], ["he", "said"], ["report", "said"], ["it", "said"], ["ARL", "said"], ["organisers", "said"], ["ambassador", "said"], ["diplomat", "said"], ["stream", "said"], ["DPO", "said"], ["He", "said"], ["He", "said"], ["minister", "said"], ["He", "said"], ["he", "said"], ["bench", "said"], ["sources", "said"], ["He", "said"], ["officials", "said"], ["she", "said"], ["Dehwar", "said"], ["Gondal", "said"], ["They", "said"], ["she", "said"], ["leader", "said"], ["it", "said"], ["Iqbal", "said"], ["He", "said"], ["He", "said"], ["leader", "said"], ["Iqbal", "said"], ["He", "said"], ["They", "said"], ["They", "said"], ["agency", "said"], ["he", "said"], ["Review", "said"], ["official", "said"], ["source", "said"], ["Azhar", "said"], ["sources", "said"], ["Malik", "said"], ["he", "said"], ["she", "said"], ["she", "said"], ["Shaheen", "said"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["FIR", "Organization"], ["SC", "take"], ["meeting", "decided"], ["Pakistanis", "adjusted"], ["parties", "meeting"], ["meeting", "held"], ["authorities", "continue work"], ["meeting", "told"], ["meeting", "held"], ["security", "was challenge"], ["meeting", "lend strength"], ["meeting", "appreciated role"], ["Pakistanis", "evacuated"], ["flight", "take"], ["security", "remained concern"], ["meeting", "attended"], ["meeting", "approved proposal"], ["meeting", "ratified decisions"], ["meeting", "apprised"], ["authorities", "admit"], ["meeting", "discussed loopholes"], ["Pakistanis", "have"], ["measures", "undertaken"], ["meeting", "deliberated improvements"], ["meeting", "discussed arrangements"], ["meeting", "discussed process"], ["authorities", "closed"], ["Pakistanis", "are"], ["leaders", "meeting"], ["meeting", "attended"], ["meeting", "decided"], ["meeting", "called"], ["meeting", "resolved"], ["meeting", "decided"], ["Delhi", "ensure"], ["meeting", "attended"], ["meeting", "convened"], ["meeting", "preside"], ["authorities", "clear consignment"], ["Pakistanis", "returned"], ["meeting", "was"], ["authorities", "want recognition"], ["Teams", "take"], ["measures", "help"], ["meeting", "told"], ["authorities", "admit flights"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["CDA", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["Sudan", "Location"], ["operation", "launched"], ["operation", "initiated"], ["Court", "issued order"], ["operation", "began"], ["operation", "carried"], ["government", "has"], ["Court", "needs"], ["operation", "initiated"], ["Court", "take notice"], ["operation", "carried"], ["Court", "take notice"], ["operation", "conducted operation"], ["operation", "launched"], ["operation", "carried"], ["Court", "declared Imran"], ["Court", "ruled"], ["operation", "conducted operation"], ["Court", "suspended notification"], ["Court", "takes polls"], ["Court", "remanded case"], ["Court", "issued notices"], ["Court", "transferred case"], ["parliament", "stood"], ["Court", "pushing anyone"], ["Court", "issued notices"], ["Court", "directed watchdog"], ["Court", "granted bail"], ["operation", "continue"], ["Court", "granted bail"], ["by", "passed"], ["Farooq", "passed"], ["Court", "uphold truth"], ["Court", "granted bail"], ["operation", "launched"], ["operation", "accelerated"], ["Court", "granted bail"], ["parliament", "surrender"], ["Court", "sought record"], ["Court", "took task"], ["Court", "gave decision"], ["Court", "upheld conviction"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["Sudan", "Location"], ["elections", "held"], ["congregations", "held"], ["congregations", "held"], ["country", "booked deficit"], ["meeting", "held"], ["day", "drowned"], ["Court", "held"], ["Constitution", "fell victim"], ["country", "suffering"], ["funeral", "held"], ["session", "held"], ["Constitution", "imposed restrictions"], ["robbers", "held"], ["inquiry", "held"], ["LAHORE", "held"], ["prayers", "held"], ["elections", "held"], ["elections", "held"], ["country", "fall"], ["prayer", "held"], ["Constitution", "mandated"], ["elections", "held"], ["country", "maintained dialogue"], ["elections", "held"], ["round", "held"], ["talks", "held"], ["country", "shareddeep Pakistan"], ["encounter", "held"], ["court", "held"], ["country", "required"], ["country", "going"], ["rally", "held"], ["by", "held"], ["elections", "held"], ["day", "expired"], ["meeting", "held"], ["country", "faced"], ["parade", "held"], ["which", "held"], ["that", "lead"], ["protest", "held"], ["by", "held"], ["which", "lead"], ["elections", "held"], ["inquiries", "held"], ["elections", "held"], ["country", "facing devastation"], ["elections", "held"], ["they", "held"], ["elections", "held"], ["elections", "held"], ["elections", "held"], ["elections", "held"], ["Constitution", "was"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Karachi", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["Sudan", "Location"], ["she", "face"], ["options", "are"], ["prisons", "asked"], ["patterns", "are"], ["which", "are"], ["projects", "are"], ["outfits", "are"], ["facilities", "were"], ["Sindh", "asks hospitals"], ["parts", "are"], ["which", "are"], ["province", "produced grain"], ["suggestions", "are"], ["Pakistanis", "are"], ["facilities", "provided to"], ["chances", "are"], ["candidates", "are"], ["candidates", "are"], ["filly", "are"], ["province", "reject result"], ["workers", "are"], ["schools", "are"], ["Khan", "are"], ["Sindh", "is"], ["Envoys", "are"], ["works", "are"], ["most", "are"], ["We", "are"], ["organisations", "are"], ["outcomes", "are"], ["facilities", "were"], ["governments", "are"], ["sales", "are"], ["needs", "are"], ["prisons", "are"], ["prisons", "face pressure"], ["PTI", "Organization"], ["Karachi", "Location"], ["Islamabad", "Location"], ["Lahore", "Location"], ["Imran Khan", "Person"], ["CDA", "Organization"], ["PPP", "Organization"], ["India", "Location"], ["ECP", "Organization"], ["SC", "Organization"], ["companies", "working"], ["godown", "sealed"], ["premises", "sealed"], ["Pakistan", "Location"], ["Punjab", "Location"], ["Balochistan", "Location"], ["Dawn", "Person"], ["Sindh", "Location"], ["the Supreme Court", "Organization"], ["Khan", "Person"], ["Khyber Pakhtunkhwa", "Location"], ["PML", "Organization"], ["Sudan", "Location"], ["PTI", "Imran Khan"], ["PTI", "Punjab"], ["Balochistan", "Sindh"], ["PML", "PTI"], ["Sindh", "Punjab"], ["Pakistan", "PTI"], ["the Supreme Court", "PTI"], ["PPP", "PTI"], ["Punjab", "Pakistan"], ["Lahore", "Islamabad"], ["Lahore", "Karachi"], ["Islamabad", "PTI"], ["Pakistan", "Sudan"], ["the Supreme Court", "Pakistan"], ["PML", "Punjab"], ["Islamabad", "Karachi"], ["Imran Khan", "Punjab"], ["SC", "Punjab"], ["Balochistan", "Pakistan"], ["Islamabad", "CDA"], ["Lahore", "Punjab"], ["Lahore", "Pakistan"], ["SC", "PTI"], ["PPP", "Punjab"], ["PML", "Lahore"], ["PPP", "Sindh"], ["Punjab", "Karachi"], ["Khyber Pakhtunkhwa", "Sindh"], ["PTI", "Sindh"], ["Khan", "Imran Khan"], ["ECP", "PML"], ["Dawn", "the Supreme Court"], ["PPP", "Balochistan"], ["Imran Khan", "Khyber Pakhtunkhwa"], ["Khyber Pakhtunkhwa", "Islamabad"], ["Sudan", "Karachi"], ["Imran Khan", "Islamabad"], ["ECP", "the Supreme Court"], ["SC", "Dawn"], ["Khyber Pakhtunkhwa", "Karachi"], ["Imran Khan", "Lahore"], ["Islamabad", "Balochistan"], ["Dawn", "Sindh"], ["Dawn", "Pakistan"], ["India", "Lahore"], ["Balochistan", "PTI"], ["PPP", "Karachi"], ["Dawn", "Punjab"], ["PPP", "SC"], ["Dawn", "Karachi"], ["Lahore", "the Supreme Court"], ["the Supreme Court", "Balochistan"], ["Imran Khan", "Balochistan"], ["PML", "Pakistan"], ["Khan", "Dawn"], ["Pakistan", "Person"]] \ No newline at end of file diff --git a/events.txt b/events.txt new file mode 100644 index 0000000..e69de29 diff --git a/final.json b/final.json new file mode 100644 index 0000000..0e87449 --- /dev/null +++ b/final.json @@ -0,0 +1,52 @@ +{ + "nodes": { + "0": { + "label": "petroleum levy", + "category": "related" + }, + "1": { + "label": "petrol", + "category": "related" + }, + "2": { + "label": "HSD", + "category": "related" + }, + "3": { + "label": "petroleum", + "category": "related" + } + }, + "edges": [ + { + "from": 0, + "to": 1, + "label": "has part", + "category": "related" + }, + { + "from": 0, + "to": 2, + "label": "has part", + "category": "related" + }, + { + "from": 1, + "to": 0, + "label": "part of", + "category": "related" + }, + { + "from": 2, + "to": 0, + "label": "part of", + "category": "related" + }, + { + "from": 2, + "to": 3, + "label": "part of", + "category": "related" + } + ] +} \ No newline at end of file diff --git a/find_ner.py b/find_ner.py new file mode 100644 index 0000000..c0ebe93 --- /dev/null +++ b/find_ner.py @@ -0,0 +1,23 @@ +import json + +with open('graph_data.json', 'r') as file: + file_one_data = json.load(file) + +with open('diff.json', 'r') as file: + file_two_data = json.load(file) + + +ner_mapping = {} +for node in file_one_data['edges']: + ner_mapping[node['label']] = node['ner'] + +print(ner_mapping) +for node_id, node_data in file_two_data['nodes'].items(): + label = node_data['label'] + if label in ner_mapping: + print(label) + file_two_data['nodes'][node_id]['ner'] = ner_mapping[label] + + +with open('updated_file_two_final.json', 'w') as file: + json.dump(file_two_data, file, indent=4) diff --git a/flow.png b/flow.png new file mode 100644 index 0000000000000000000000000000000000000000..c554ff18273530768f99633771ff822b8de8e52c GIT binary patch literal 60158 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

{wo)9H9HE|CQZm`^hEI3-2Jzel6R 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 MX~k!Gl1A_T2g9ZLUH||9 literal 0 HcmV?d00001 diff --git a/grap02.png b/grap02.png new file mode 100644 index 0000000000000000000000000000000000000000..7afb7eea7bc21bbf1323527f2bdf72a895a2a118 GIT binary patch literal 325384 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
`6W1?{sBhX-X;` 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 literal 0 HcmV?d00001 diff --git a/graph.html b/graph.html new file mode 100644 index 0000000..f9ebeff --- /dev/null +++ b/graph.html @@ -0,0 +1,57 @@ + + + + Graph from JSON Data + + + + +

+ + + diff --git a/graph_color_put.html b/graph_color_put.html new file mode 100644 index 0000000..6ef92fc --- /dev/null +++ b/graph_color_put.html @@ -0,0 +1,61 @@ + + + + + Network Graph + + + + + + +
+ + + + + diff --git a/graph_coloring.json b/graph_coloring.json new file mode 100644 index 0000000..6b8dc40 --- /dev/null +++ b/graph_coloring.json @@ -0,0 +1,282 @@ +{ + "nodes": [ + { + "label": "says", + "category": "related" + }, + { + "label": "Isa", + "category": "related" + }, + { + "label": "CJP", + "category": "related" + }, + { + "label": "seeking", + "category": "related" + }, + { + "label": "SC", + "category": "related" + }, + { + "label": "run", + "category": "related" + }, + { + "label": "clarity", + "category": "related" + }, + { + "label": "disqualification", + "category": "related" + }, + { + "label": "up", + "category": "related" + }, + { + "label": "elections", + "category": "keyword" + }, + { + "label": "Lifetime", + "category": "frequency" + }, + { + "label": "CJP Isa", + "category": "other" + } + ], + "edges": [ + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "keyword", + "label": "", + "to": null, + "category": "keyword" + }, + { + "from": "related", + "label": "", + "to": "related", + "category": "other" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "other" + }, + { + "from": "frequency", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "SC", + "label": "", + "to": null, + "category": "other" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "other" + }, + { + "from": "related", + "label": "", + "to": "SC", + "category": "other" + }, + { + "from": "SC", + "label": "", + "to": "related", + "category": "other" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "related" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "related" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "related" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + }, + { + "from": "related", + "label": "", + "to": null, + "category": "frequency" + } + ] +} \ No newline at end of file diff --git a/graph_data.json b/graph_data.json new file mode 100644 index 0000000..df4ba0f --- /dev/null +++ b/graph_data.json @@ -0,0 +1,35890 @@ +{ + "nodes": [ + { + "from": 6097, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 5910, + "label": "", + "to": 2549, + "category": "related" + }, + { + "from": 1557, + "label": "", + "to": 5, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 8, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5774, + "label": "", + "to": 11, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 14, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 16, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 18, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 20, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 6099, + "label": "", + "to": 5885, + "category": "related" + }, + { + "from": 24, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 26, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 29, + "category": "related" + }, + { + "from": 30, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 32, + "label": "", + "to": 33, + "category": "related" + }, + { + "from": 34, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5996, + "label": "", + "to": 37, + "category": "related" + }, + { + "from": 38, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1011, + "category": "related" + }, + { + "from": 2464, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 3770, + "label": "", + "to": 45, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 47, + "category": "related" + }, + { + "from": 48, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 4716, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 2962, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 54, + "label": "", + "to": 55, + "category": "related" + }, + { + "from": 5284, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 68, + "label": "", + "to": 59, + "category": "related" + }, + { + "from": 68, + "label": "", + "to": 61, + "category": "related" + }, + { + "from": 2468, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 5278, + "label": "", + "to": 65, + "category": "related" + }, + { + "from": 66, + "label": "", + "to": 67, + "category": "related" + }, + { + "from": 68, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 638, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 72, + "label": "", + "to": 3321, + "category": "related" + }, + { + "from": 74, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 2438, + "label": "", + "to": 4689, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1857, + "category": "related" + }, + { + "from": 80, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 640, + "label": "", + "to": 83, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 3147, + "category": "related" + }, + { + "from": 86, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 88, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 90, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 108, + "label": "", + "to": 3907, + "category": "related" + }, + { + "from": 94, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 96, + "label": "", + "to": 97, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4055, + "category": "related" + }, + { + "from": 100, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 4709, + "category": "related" + }, + { + "from": 5394, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 5517, + "category": "related" + }, + { + "from": 108, + "label": "", + "to": 109, + "category": "related" + }, + { + "from": 110, + "label": "", + "to": 3085, + "category": "related" + }, + { + "from": 1864, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2616, + "label": "", + "to": 115, + "category": "related" + }, + { + "from": 1204, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 118, + "label": "", + "to": 119, + "category": "related" + }, + { + "from": 120, + "label": "", + "to": 121, + "category": "related" + }, + { + "from": 122, + "label": "", + "to": 1661, + "category": "related" + }, + { + "from": 2218, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5938, + "label": "", + "to": 3137, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 129, + "category": "related" + }, + { + "from": 940, + "label": "", + "to": 131, + "category": "related" + }, + { + "from": 5224, + "label": "", + "to": 133, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 135, + "category": "related" + }, + { + "from": 5378, + "label": "", + "to": 2607, + "category": "related" + }, + { + "from": 4480, + "label": "", + "to": 2061, + "category": "related" + }, + { + "from": 1580, + "label": "", + "to": 141, + "category": "related" + }, + { + "from": 3538, + "label": "", + "to": 143, + "category": "related" + }, + { + "from": 146, + "label": "", + "to": 145, + "category": "related" + }, + { + "from": 146, + "label": "", + "to": 147, + "category": "related" + }, + { + "from": 3380, + "label": "", + "to": 3137, + "category": "related" + }, + { + "from": 3885, + "label": "", + "to": 151, + "category": "related" + }, + { + "from": 5748, + "label": "", + "to": 5107, + "category": "related" + }, + { + "from": 3538, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 156, + "label": "", + "to": 157, + "category": "related" + }, + { + "from": 3216, + "label": "", + "to": 159, + "category": "related" + }, + { + "from": 3216, + "label": "", + "to": 161, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 4503, + "category": "related" + }, + { + "from": 3216, + "label": "", + "to": 4595, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3789, + "category": "related" + }, + { + "from": 168, + "label": "", + "to": 169, + "category": "related" + }, + { + "from": 170, + "label": "", + "to": 3743, + "category": "related" + }, + { + "from": 172, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 379, + "category": "related" + }, + { + "from": 5588, + "label": "", + "to": 177, + "category": "related" + }, + { + "from": 5404, + "label": "", + "to": 719, + "category": "related" + }, + { + "from": 302, + "label": "", + "to": 181, + "category": "related" + }, + { + "from": 3932, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 3546, + "label": "", + "to": 185, + "category": "related" + }, + { + "from": 186, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 188, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2200, + "label": "", + "to": 4604, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 2553, + "category": "related" + }, + { + "from": 916, + "label": "", + "to": 195, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 287, + "category": "related" + }, + { + "from": 200, + "label": "", + "to": 201, + "category": "related" + }, + { + "from": 1580, + "label": "", + "to": 203, + "category": "related" + }, + { + "from": 204, + "label": "", + "to": 205, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 2887, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 2662, + "label": "", + "to": 211, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 4821, + "category": "related" + }, + { + "from": 5990, + "label": "", + "to": 215, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 3809, + "category": "related" + }, + { + "from": 3642, + "label": "", + "to": 221, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 221, + "category": "related" + }, + { + "from": 5394, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 224, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 226, + "label": "", + "to": 1045, + "category": "related" + }, + { + "from": 3418, + "label": "", + "to": 229, + "category": "related" + }, + { + "from": 230, + "label": "", + "to": 231, + "category": "related" + }, + { + "from": 232, + "label": "", + "to": 233, + "category": "related" + }, + { + "from": 1958, + "label": "", + "to": 235, + "category": "related" + }, + { + "from": 430, + "label": "", + "to": 237, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 239, + "category": "related" + }, + { + "from": 3092, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 242, + "label": "", + "to": 5175, + "category": "related" + }, + { + "from": 4242, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5858, + "label": "", + "to": 247, + "category": "related" + }, + { + "from": 248, + "label": "", + "to": 249, + "category": "related" + }, + { + "from": 4754, + "label": "", + "to": 251, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 4259, + "category": "related" + }, + { + "from": 254, + "label": "", + "to": 259, + "category": "related" + }, + { + "from": 256, + "label": "", + "to": 259, + "category": "related" + }, + { + "from": 258, + "label": "", + "to": 259, + "category": "related" + }, + { + "from": 260, + "label": "", + "to": 261, + "category": "related" + }, + { + "from": 262, + "label": "", + "to": 4211, + "category": "related" + }, + { + "from": 2368, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 266, + "label": "", + "to": 2368, + "category": "related" + }, + { + "from": 2860, + "label": "", + "to": 5771, + "category": "related" + }, + { + "from": 4196, + "label": "", + "to": 271, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 4604, + "category": "related" + }, + { + "from": 3862, + "label": "", + "to": 629, + "category": "related" + }, + { + "from": 5602, + "label": "", + "to": 277, + "category": "related" + }, + { + "from": 280, + "label": "", + "to": 279, + "category": "related" + }, + { + "from": 280, + "label": "", + "to": 281, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 5745, + "category": "related" + }, + { + "from": 284, + "label": "", + "to": 285, + "category": "related" + }, + { + "from": 288, + "label": "", + "to": 287, + "category": "related" + }, + { + "from": 288, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4658, + "label": "", + "to": 291, + "category": "related" + }, + { + "from": 292, + "label": "", + "to": 293, + "category": "related" + }, + { + "from": 5278, + "label": "", + "to": 295, + "category": "related" + }, + { + "from": 1790, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 2860, + "label": "", + "to": 302, + "category": "related" + }, + { + "from": 302, + "label": "", + "to": 303, + "category": "related" + }, + { + "from": 5054, + "label": "", + "to": 305, + "category": "related" + }, + { + "from": 306, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 309, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 311, + "category": "related" + }, + { + "from": 312, + "label": "", + "to": 5023, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5887, + "category": "related" + }, + { + "from": 1544, + "label": "", + "to": 5829, + "category": "related" + }, + { + "from": 318, + "label": "", + "to": 319, + "category": "related" + }, + { + "from": 320, + "label": "", + "to": 3137, + "category": "related" + }, + { + "from": 322, + "label": "", + "to": 323, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 325, + "category": "related" + }, + { + "from": 396, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 329, + "category": "related" + }, + { + "from": 4728, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5652, + "label": "", + "to": 333, + "category": "related" + }, + { + "from": 5652, + "label": "", + "to": 335, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 337, + "category": "related" + }, + { + "from": 338, + "label": "", + "to": 2215, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 341, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4939, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 345, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 347, + "category": "related" + }, + { + "from": 348, + "label": "", + "to": 349, + "category": "related" + }, + { + "from": 3800, + "label": "", + "to": 351, + "category": "related" + }, + { + "from": 1914, + "label": "", + "to": 353, + "category": "related" + }, + { + "from": 354, + "label": "", + "to": 355, + "category": "related" + }, + { + "from": 5562, + "label": "", + "to": 357, + "category": "related" + }, + { + "from": 358, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 3964, + "label": "", + "to": 361, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 2707, + "category": "related" + }, + { + "from": 364, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 369, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 371, + "category": "related" + }, + { + "from": 372, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 3885, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 3885, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 4060, + "label": "", + "to": 379, + "category": "related" + }, + { + "from": 380, + "label": "", + "to": 5313, + "category": "related" + }, + { + "from": 1660, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 2014, + "label": "", + "to": 385, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1557, + "category": "related" + }, + { + "from": 3132, + "label": "", + "to": 1557, + "category": "related" + }, + { + "from": 1590, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 2813, + "category": "related" + }, + { + "from": 396, + "label": "", + "to": 833, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 400, + "label": "", + "to": 401, + "category": "related" + }, + { + "from": 5204, + "label": "", + "to": 403, + "category": "related" + }, + { + "from": 3020, + "label": "", + "to": 405, + "category": "related" + }, + { + "from": 406, + "label": "", + "to": 5171, + "category": "related" + }, + { + "from": 5450, + "label": "", + "to": 409, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 1773, + "category": "related" + }, + { + "from": 412, + "label": "", + "to": 5751, + "category": "related" + }, + { + "from": 414, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 416, + "label": "", + "to": 3075, + "category": "related" + }, + { + "from": 418, + "label": "", + "to": 5179, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3075, + "category": "related" + }, + { + "from": 5728, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 424, + "label": "", + "to": 425, + "category": "related" + }, + { + "from": 4792, + "label": "", + "to": 427, + "category": "related" + }, + { + "from": 2156, + "label": "", + "to": 429, + "category": "related" + }, + { + "from": 430, + "label": "", + "to": 4383, + "category": "related" + }, + { + "from": 434, + "label": "", + "to": 433, + "category": "related" + }, + { + "from": 434, + "label": "", + "to": 5873, + "category": "related" + }, + { + "from": 4754, + "label": "", + "to": 2279, + "category": "related" + }, + { + "from": 2180, + "label": "", + "to": 3075, + "category": "related" + }, + { + "from": 3990, + "label": "", + "to": 441, + "category": "related" + }, + { + "from": 4848, + "label": "", + "to": 443, + "category": "related" + }, + { + "from": 444, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 446, + "label": "", + "to": 5293, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5293, + "category": "related" + }, + { + "from": 450, + "label": "", + "to": 5293, + "category": "related" + }, + { + "from": 6104, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 455, + "category": "related" + }, + { + "from": 1674, + "label": "", + "to": 2219, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 459, + "category": "related" + }, + { + "from": 1974, + "label": "", + "to": 461, + "category": "related" + }, + { + "from": 3204, + "label": "", + "to": 5179, + "category": "related" + }, + { + "from": 2150, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 467, + "category": "related" + }, + { + "from": 4382, + "label": "", + "to": 469, + "category": "related" + }, + { + "from": 2640, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 472, + "label": "", + "to": 2379, + "category": "related" + }, + { + "from": 3912, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 1671, + "category": "related" + }, + { + "from": 2200, + "label": "", + "to": 479, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 481, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 483, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 485, + "category": "related" + }, + { + "from": 1580, + "label": "", + "to": 487, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 489, + "category": "related" + }, + { + "from": 490, + "label": "", + "to": 491, + "category": "related" + }, + { + "from": 492, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 496, + "label": "", + "to": 5591, + "category": "related" + }, + { + "from": 5418, + "label": "", + "to": 5591, + "category": "related" + }, + { + "from": 500, + "label": "", + "to": 1965, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1965, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5261, + "category": "related" + }, + { + "from": 2622, + "label": "", + "to": 507, + "category": "related" + }, + { + "from": 3779, + "label": "", + "to": 509, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1603, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 1603, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 515, + "category": "related" + }, + { + "from": 516, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 518, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 521, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 523, + "category": "related" + }, + { + "from": 5300, + "label": "", + "to": 5107, + "category": "related" + }, + { + "from": 4754, + "label": "", + "to": 2607, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5179, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 2607, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 533, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 535, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 2541, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 539, + "category": "related" + }, + { + "from": 540, + "label": "", + "to": 541, + "category": "related" + }, + { + "from": 542, + "label": "", + "to": 1353, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 3242, + "label": "", + "to": 547, + "category": "related" + }, + { + "from": 5746, + "label": "", + "to": 3921, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3417, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 4754, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 556, + "label": "", + "to": 557, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 559, + "category": "related" + }, + { + "from": 560, + "label": "", + "to": 5171, + "category": "related" + }, + { + "from": 562, + "label": "", + "to": 5899, + "category": "related" + }, + { + "from": 564, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2652, + "label": "", + "to": 567, + "category": "related" + }, + { + "from": 596, + "label": "", + "to": 569, + "category": "related" + }, + { + "from": 570, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 572, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 574, + "label": "", + "to": 5885, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 577, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 5517, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 581, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 584, + "label": "", + "to": 585, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 587, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5633, + "category": "related" + }, + { + "from": 2014, + "label": "", + "to": 591, + "category": "related" + }, + { + "from": 4668, + "label": "", + "to": 1487, + "category": "related" + }, + { + "from": 5500, + "label": "", + "to": 595, + "category": "related" + }, + { + "from": 596, + "label": "", + "to": 597, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5099, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 601, + "category": "related" + }, + { + "from": 602, + "label": "", + "to": 603, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 605, + "category": "related" + }, + { + "from": 3374, + "label": "", + "to": 607, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5697, + "category": "related" + }, + { + "from": 4390, + "label": "", + "to": 611, + "category": "related" + }, + { + "from": 4390, + "label": "", + "to": 613, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 689, + "category": "related" + }, + { + "from": 4390, + "label": "", + "to": 1631, + "category": "related" + }, + { + "from": 4390, + "label": "", + "to": 619, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 689, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 623, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 3426, + "label": "", + "to": 2887, + "category": "related" + }, + { + "from": 3174, + "label": "", + "to": 629, + "category": "related" + }, + { + "from": 3426, + "label": "", + "to": 631, + "category": "related" + }, + { + "from": 632, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3932, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4390, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 638, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 640, + "label": "", + "to": 2591, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 643, + "category": "related" + }, + { + "from": 980, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 646, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1830, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 652, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 748, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 656, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 658, + "label": "", + "to": 1415, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 1415, + "category": "related" + }, + { + "from": 2134, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5620, + "label": "", + "to": 665, + "category": "related" + }, + { + "from": 4182, + "label": "", + "to": 2707, + "category": "related" + }, + { + "from": 668, + "label": "", + "to": 669, + "category": "related" + }, + { + "from": 4182, + "label": "", + "to": 671, + "category": "related" + }, + { + "from": 672, + "label": "", + "to": 4623, + "category": "related" + }, + { + "from": 1066, + "label": "", + "to": 5237, + "category": "related" + }, + { + "from": 3274, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 678, + "label": "", + "to": 4623, + "category": "related" + }, + { + "from": 1444, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 4138, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 5538, + "label": "", + "to": 685, + "category": "related" + }, + { + "from": 690, + "label": "", + "to": 687, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 689, + "category": "related" + }, + { + "from": 690, + "label": "", + "to": 691, + "category": "related" + }, + { + "from": 5728, + "label": "", + "to": 5171, + "category": "related" + }, + { + "from": 5728, + "label": "", + "to": 695, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 697, + "category": "related" + }, + { + "from": 698, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 702, + "label": "", + "to": 703, + "category": "related" + }, + { + "from": 4976, + "label": "", + "to": 3743, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 707, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 709, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1567, + "category": "related" + }, + { + "from": 2664, + "label": "", + "to": 713, + "category": "related" + }, + { + "from": 5620, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 716, + "label": "", + "to": 717, + "category": "related" + }, + { + "from": 718, + "label": "", + "to": 719, + "category": "related" + }, + { + "from": 1722, + "label": "", + "to": 721, + "category": "related" + }, + { + "from": 1544, + "label": "", + "to": 723, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 725, + "category": "related" + }, + { + "from": 726, + "label": "", + "to": 4111, + "category": "related" + }, + { + "from": 3280, + "label": "", + "to": 4971, + "category": "related" + }, + { + "from": 3280, + "label": "", + "to": 731, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5265, + "category": "related" + }, + { + "from": 734, + "label": "", + "to": 735, + "category": "related" + }, + { + "from": 2636, + "label": "", + "to": 5265, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 740, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1441, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 745, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 747, + "category": "related" + }, + { + "from": 748, + "label": "", + "to": 1441, + "category": "related" + }, + { + "from": 5984, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 2454, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 754, + "label": "", + "to": 755, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 757, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4604, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2779, + "category": "related" + }, + { + "from": 762, + "label": "", + "to": 2343, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 765, + "category": "related" + }, + { + "from": 4766, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 768, + "label": "", + "to": 769, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 771, + "category": "related" + }, + { + "from": 2754, + "label": "", + "to": 773, + "category": "related" + }, + { + "from": 2754, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 6107, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 6099, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 783, + "category": "related" + }, + { + "from": 3974, + "label": "", + "to": 785, + "category": "related" + }, + { + "from": 4716, + "label": "", + "to": 3707, + "category": "related" + }, + { + "from": 5924, + "label": "", + "to": 789, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 791, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 795, + "category": "related" + }, + { + "from": 794, + "label": "", + "to": 795, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 5005, + "category": "related" + }, + { + "from": 798, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 800, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 802, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 804, + "label": "", + "to": 805, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 807, + "category": "related" + }, + { + "from": 5482, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 810, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 812, + "label": "", + "to": 5189, + "category": "related" + }, + { + "from": 814, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 823, + "category": "related" + }, + { + "from": 916, + "label": "", + "to": 819, + "category": "related" + }, + { + "from": 4708, + "label": "", + "to": 821, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 823, + "category": "related" + }, + { + "from": 4828, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 829, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 3743, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 833, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 835, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 837, + "category": "related" + }, + { + "from": 840, + "label": "", + "to": 839, + "category": "related" + }, + { + "from": 840, + "label": "", + "to": 841, + "category": "related" + }, + { + "from": 4042, + "label": "", + "to": 843, + "category": "related" + }, + { + "from": 4042, + "label": "", + "to": 1535, + "category": "related" + }, + { + "from": 4042, + "label": "", + "to": 847, + "category": "related" + }, + { + "from": 4228, + "label": "", + "to": 849, + "category": "related" + }, + { + "from": 5500, + "label": "", + "to": 851, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 855, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 3563, + "category": "related" + }, + { + "from": 860, + "label": "", + "to": 859, + "category": "related" + }, + { + "from": 860, + "label": "", + "to": 861, + "category": "related" + }, + { + "from": 1914, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 865, + "category": "related" + }, + { + "from": 3098, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 869, + "category": "related" + }, + { + "from": 3356, + "label": "", + "to": 871, + "category": "related" + }, + { + "from": 3356, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 874, + "label": "", + "to": 1985, + "category": "related" + }, + { + "from": 876, + "label": "", + "to": 3793, + "category": "related" + }, + { + "from": 5356, + "label": "", + "to": 5247, + "category": "related" + }, + { + "from": 4728, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5794, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 885, + "category": "related" + }, + { + "from": 4996, + "label": "", + "to": 887, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 889, + "category": "related" + }, + { + "from": 890, + "label": "", + "to": 5179, + "category": "related" + }, + { + "from": 3264, + "label": "", + "to": 893, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 896, + "label": "", + "to": 897, + "category": "related" + }, + { + "from": 898, + "label": "", + "to": 899, + "category": "related" + }, + { + "from": 6087, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 2660, + "label": "", + "to": 903, + "category": "related" + }, + { + "from": 2660, + "label": "", + "to": 905, + "category": "related" + }, + { + "from": 4834, + "label": "", + "to": 907, + "category": "related" + }, + { + "from": 4834, + "label": "", + "to": 909, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3809, + "category": "related" + }, + { + "from": 4590, + "label": "", + "to": 913, + "category": "related" + }, + { + "from": 914, + "label": "", + "to": 915, + "category": "related" + }, + { + "from": 916, + "label": "", + "to": 917, + "category": "related" + }, + { + "from": 5374, + "label": "", + "to": 919, + "category": "related" + }, + { + "from": 2418, + "label": "", + "to": 921, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 923, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 925, + "category": "related" + }, + { + "from": 5794, + "label": "", + "to": 927, + "category": "related" + }, + { + "from": 5794, + "label": "", + "to": 929, + "category": "related" + }, + { + "from": 4938, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 3192, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 2418, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 5794, + "label": "", + "to": 939, + "category": "related" + }, + { + "from": 940, + "label": "", + "to": 4623, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4331, + "category": "related" + }, + { + "from": 944, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4901, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 5994, + "category": "related" + }, + { + "from": 950, + "label": "", + "to": 5183, + "category": "related" + }, + { + "from": 5330, + "label": "", + "to": 5125, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 955, + "category": "related" + }, + { + "from": 1864, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 958, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 961, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5091, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5128, + "category": "related" + }, + { + "from": 6087, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 972, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 1758, + "label": "", + "to": 975, + "category": "related" + }, + { + "from": 4382, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 5984, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 980, + "label": "", + "to": 4789, + "category": "related" + }, + { + "from": 982, + "label": "", + "to": 4219, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 985, + "category": "related" + }, + { + "from": 3770, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 989, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 994, + "label": "", + "to": 5751, + "category": "related" + }, + { + "from": 4084, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 3720, + "label": "", + "to": 3501, + "category": "related" + }, + { + "from": 1000, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 4768, + "label": "", + "to": 1003, + "category": "related" + }, + { + "from": 4768, + "label": "", + "to": 1005, + "category": "related" + }, + { + "from": 4768, + "label": "", + "to": 1007, + "category": "related" + }, + { + "from": 2478, + "label": "", + "to": 1009, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 1011, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 1013, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 1016, + "label": "", + "to": 3567, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 1019, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 1021, + "category": "related" + }, + { + "from": 4036, + "label": "", + "to": 4491, + "category": "related" + }, + { + "from": 5830, + "label": "", + "to": 1025, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 3632, + "category": "related" + }, + { + "from": 4036, + "label": "", + "to": 1029, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 1031, + "category": "related" + }, + { + "from": 3798, + "label": "", + "to": 1033, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 1607, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 1607, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 1039, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 1041, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 4211, + "category": "related" + }, + { + "from": 1044, + "label": "", + "to": 1045, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 1047, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 1049, + "category": "related" + }, + { + "from": 1050, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 4534, + "label": "", + "to": 1053, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 1055, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 1057, + "category": "related" + }, + { + "from": 1058, + "label": "", + "to": 5005, + "category": "related" + }, + { + "from": 3800, + "label": "", + "to": 5005, + "category": "related" + }, + { + "from": 5374, + "label": "", + "to": 1063, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 1066, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1069, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1990, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 1073, + "category": "related" + }, + { + "from": 1074, + "label": "", + "to": 5023, + "category": "related" + }, + { + "from": 1722, + "label": "", + "to": 1077, + "category": "related" + }, + { + "from": 1722, + "label": "", + "to": 1079, + "category": "related" + }, + { + "from": 1722, + "label": "", + "to": 1081, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 1083, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 3583, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 1087, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3783, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1091, + "category": "related" + }, + { + "from": 4996, + "label": "", + "to": 1093, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 5655, + "category": "related" + }, + { + "from": 4996, + "label": "", + "to": 1097, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5863, + "category": "related" + }, + { + "from": 3220, + "label": "", + "to": 5863, + "category": "related" + }, + { + "from": 1104, + "label": "", + "to": 4495, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5863, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 4495, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5477, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 1113, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 1115, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 2549, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 1119, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 2622, + "label": "", + "to": 2703, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 2703, + "category": "related" + }, + { + "from": 1126, + "label": "", + "to": 2703, + "category": "related" + }, + { + "from": 1128, + "label": "", + "to": 1129, + "category": "related" + }, + { + "from": 1130, + "label": "", + "to": 1131, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 5500, + "label": "", + "to": 1135, + "category": "related" + }, + { + "from": 1136, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 1138, + "label": "", + "to": 4951, + "category": "related" + }, + { + "from": 5500, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 3648, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 3380, + "label": "", + "to": 1145, + "category": "related" + }, + { + "from": 3380, + "label": "", + "to": 1147, + "category": "related" + }, + { + "from": 3380, + "label": "", + "to": 2965, + "category": "related" + }, + { + "from": 4178, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 1161, + "category": "related" + }, + { + "from": 1154, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1156, + "label": "", + "to": 5653, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 1159, + "category": "related" + }, + { + "from": 5504, + "label": "", + "to": 1161, + "category": "related" + }, + { + "from": 3746, + "label": "", + "to": 1163, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 1165, + "category": "related" + }, + { + "from": 3538, + "label": "", + "to": 1167, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 4751, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4533, + "category": "related" + }, + { + "from": 3538, + "label": "", + "to": 1173, + "category": "related" + }, + { + "from": 1174, + "label": "", + "to": 1215, + "category": "related" + }, + { + "from": 1176, + "label": "", + "to": 5763, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 3538, + "label": "", + "to": 1247, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 1183, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4695, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 4695, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 4695, + "category": "related" + }, + { + "from": 2366, + "label": "", + "to": 4569, + "category": "related" + }, + { + "from": 1192, + "label": "", + "to": 1193, + "category": "related" + }, + { + "from": 2454, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 1196, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1198, + "label": "", + "to": 1199, + "category": "related" + }, + { + "from": 3140, + "label": "", + "to": 1201, + "category": "related" + }, + { + "from": 2862, + "label": "", + "to": 1203, + "category": "related" + }, + { + "from": 1204, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5374, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5356, + "label": "", + "to": 5653, + "category": "related" + }, + { + "from": 1212, + "label": "", + "to": 1215, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1215, + "category": "related" + }, + { + "from": 2464, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 4946, + "label": "", + "to": 5265, + "category": "related" + }, + { + "from": 5374, + "label": "", + "to": 1221, + "category": "related" + }, + { + "from": 2890, + "label": "", + "to": 5265, + "category": "related" + }, + { + "from": 4096, + "label": "", + "to": 1225, + "category": "related" + }, + { + "from": 4096, + "label": "", + "to": 1227, + "category": "related" + }, + { + "from": 1228, + "label": "", + "to": 3215, + "category": "related" + }, + { + "from": 4096, + "label": "", + "to": 1231, + "category": "related" + }, + { + "from": 4096, + "label": "", + "to": 1233, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 1305, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1239, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 5003, + "category": "related" + }, + { + "from": 5168, + "label": "", + "to": 1243, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1245, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 1247, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1249, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 1251, + "category": "related" + }, + { + "from": 5382, + "label": "", + "to": 1305, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 4055, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1257, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1259, + "category": "related" + }, + { + "from": 5794, + "label": "", + "to": 1261, + "category": "related" + }, + { + "from": 1262, + "label": "", + "to": 4055, + "category": "related" + }, + { + "from": 5784, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 5950, + "label": "", + "to": 1267, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 2438, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4044, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5784, + "label": "", + "to": 1277, + "category": "related" + }, + { + "from": 4480, + "label": "", + "to": 1279, + "category": "related" + }, + { + "from": 1802, + "label": "", + "to": 1281, + "category": "related" + }, + { + "from": 2030, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 1284, + "label": "", + "to": 4869, + "category": "related" + }, + { + "from": 1286, + "label": "", + "to": 1287, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 1289, + "category": "related" + }, + { + "from": 1290, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 1292, + "label": "", + "to": 1293, + "category": "related" + }, + { + "from": 4974, + "label": "", + "to": 1295, + "category": "related" + }, + { + "from": 1296, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1298, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1300, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1306, + "label": "", + "to": 1303, + "category": "related" + }, + { + "from": 1306, + "label": "", + "to": 1305, + "category": "related" + }, + { + "from": 1306, + "label": "", + "to": 1307, + "category": "related" + }, + { + "from": 2246, + "label": "", + "to": 1309, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 1353, + "category": "related" + }, + { + "from": 1312, + "label": "", + "to": 1313, + "category": "related" + }, + { + "from": 1314, + "label": "", + "to": 1315, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 1317, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 1319, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 1321, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 1323, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 5393, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 1327, + "category": "related" + }, + { + "from": 1328, + "label": "", + "to": 1329, + "category": "related" + }, + { + "from": 4554, + "label": "", + "to": 1331, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 5309, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 1335, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 1337, + "category": "related" + }, + { + "from": 1338, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 4242, + "label": "", + "to": 1341, + "category": "related" + }, + { + "from": 3648, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 1344, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 1346, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 3640, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 1351, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 1353, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 1355, + "category": "related" + }, + { + "from": 1356, + "label": "", + "to": 3689, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 3694, + "label": "", + "to": 1361, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 1363, + "category": "related" + }, + { + "from": 1364, + "label": "", + "to": 4683, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 3094, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 1372, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 1374, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 1376, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 2368, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 5591, + "category": "related" + }, + { + "from": 6080, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 1384, + "label": "", + "to": 1385, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 1389, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 1391, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 1393, + "category": "related" + }, + { + "from": 5036, + "label": "", + "to": 4951, + "category": "related" + }, + { + "from": 6099, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 3812, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 1400, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 1402, + "label": "", + "to": 1403, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 6106, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 1924, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 1410, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 1413, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 1415, + "category": "related" + }, + { + "from": 1416, + "label": "", + "to": 5515, + "category": "related" + }, + { + "from": 1744, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 1420, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 4837, + "category": "related" + }, + { + "from": 1424, + "label": "", + "to": 5515, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5237, + "category": "related" + }, + { + "from": 1428, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4830, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4164, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 1436, + "label": "", + "to": 1437, + "category": "related" + }, + { + "from": 3372, + "label": "", + "to": 1439, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 1441, + "category": "related" + }, + { + "from": 3372, + "label": "", + "to": 1443, + "category": "related" + }, + { + "from": 1444, + "label": "", + "to": 1445, + "category": "related" + }, + { + "from": 1446, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 1448, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 1450, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 1452, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 1454, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 1458, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 1462, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 1464, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5502, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5500, + "label": "", + "to": 1469, + "category": "related" + }, + { + "from": 1470, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1473, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 1475, + "category": "related" + }, + { + "from": 1476, + "label": "", + "to": 2231, + "category": "related" + }, + { + "from": 4138, + "label": "", + "to": 1479, + "category": "related" + }, + { + "from": 1480, + "label": "", + "to": 2967, + "category": "related" + }, + { + "from": 4440, + "label": "", + "to": 3147, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 1485, + "category": "related" + }, + { + "from": 4640, + "label": "", + "to": 1487, + "category": "related" + }, + { + "from": 1488, + "label": "", + "to": 1489, + "category": "related" + }, + { + "from": 5446, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1493, + "category": "related" + }, + { + "from": 3542, + "label": "", + "to": 1495, + "category": "related" + }, + { + "from": 1496, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 4974, + "label": "", + "to": 2717, + "category": "related" + }, + { + "from": 4534, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 5820, + "label": "", + "to": 1513, + "category": "related" + }, + { + "from": 5492, + "label": "", + "to": 1513, + "category": "related" + }, + { + "from": 5950, + "label": "", + "to": 1507, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 1513, + "category": "related" + }, + { + "from": 3264, + "label": "", + "to": 1513, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 1513, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 5994, + "label": "", + "to": 1517, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 3330, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 1758, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 1526, + "label": "", + "to": 5994, + "category": "related" + }, + { + "from": 1758, + "label": "", + "to": 5393, + "category": "related" + }, + { + "from": 1530, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1536, + "category": "related" + }, + { + "from": 1534, + "label": "", + "to": 1535, + "category": "related" + }, + { + "from": 1536, + "label": "", + "to": 1537, + "category": "related" + }, + { + "from": 1538, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1540, + "label": "", + "to": 1990, + "category": "related" + }, + { + "from": 4594, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 1544, + "label": "", + "to": 2205, + "category": "related" + }, + { + "from": 4594, + "label": "", + "to": 1547, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 1549, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 1557, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1559, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1561, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3137, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1567, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1569, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1571, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1573, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4725, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 1577, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 1579, + "category": "related" + }, + { + "from": 1580, + "label": "", + "to": 1581, + "category": "related" + }, + { + "from": 1582, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3987, + "label": "", + "to": 5005, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5005, + "category": "related" + }, + { + "from": 1590, + "label": "", + "to": 1589, + "category": "related" + }, + { + "from": 1590, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 1593, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 1655, + "category": "related" + }, + { + "from": 1596, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 1601, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 1603, + "category": "related" + }, + { + "from": 4754, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 1607, + "category": "related" + }, + { + "from": 1608, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5591, + "category": "related" + }, + { + "from": 1612, + "label": "", + "to": 1613, + "category": "related" + }, + { + "from": 1614, + "label": "", + "to": 1693, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 1617, + "category": "related" + }, + { + "from": 1618, + "label": "", + "to": 1619, + "category": "related" + }, + { + "from": 5502, + "label": "", + "to": 5309, + "category": "related" + }, + { + "from": 5984, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 2200, + "label": "", + "to": 5557, + "category": "related" + }, + { + "from": 1626, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 5036, + "label": "", + "to": 1631, + "category": "related" + }, + { + "from": 1632, + "label": "", + "to": 5237, + "category": "related" + }, + { + "from": 6072, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 1638, + "label": "", + "to": 1637, + "category": "related" + }, + { + "from": 1638, + "label": "", + "to": 1639, + "category": "related" + }, + { + "from": 6087, + "label": "", + "to": 1641, + "category": "related" + }, + { + "from": 6101, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1645, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1647, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1649, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1651, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1653, + "category": "related" + }, + { + "from": 1654, + "label": "", + "to": 1655, + "category": "related" + }, + { + "from": 1656, + "label": "", + "to": 1657, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 1659, + "category": "related" + }, + { + "from": 1660, + "label": "", + "to": 1661, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 2311, + "category": "related" + }, + { + "from": 4062, + "label": "", + "to": 1665, + "category": "related" + }, + { + "from": 2396, + "label": "", + "to": 2717, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 6113, + "category": "related" + }, + { + "from": 3092, + "label": "", + "to": 1671, + "category": "related" + }, + { + "from": 1674, + "label": "", + "to": 3083, + "category": "related" + }, + { + "from": 1674, + "label": "", + "to": 2189, + "category": "related" + }, + { + "from": 4172, + "label": "", + "to": 1677, + "category": "related" + }, + { + "from": 1678, + "label": "", + "to": 3917, + "category": "related" + }, + { + "from": 1680, + "label": "", + "to": 1683, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1683, + "category": "related" + }, + { + "from": 1684, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4658, + "label": "", + "to": 4691, + "category": "related" + }, + { + "from": 1688, + "label": "", + "to": 1689, + "category": "related" + }, + { + "from": 5820, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1693, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1695, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1697, + "category": "related" + }, + { + "from": 4182, + "label": "", + "to": 4969, + "category": "related" + }, + { + "from": 1702, + "label": "", + "to": 1701, + "category": "related" + }, + { + "from": 1702, + "label": "", + "to": 4173, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1705, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1707, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1709, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1711, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1713, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1715, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 1717, + "category": "related" + }, + { + "from": 4728, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4594, + "label": "", + "to": 1721, + "category": "related" + }, + { + "from": 1722, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 1727, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1729, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 3380, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 4650, + "label": "", + "to": 1737, + "category": "related" + }, + { + "from": 4866, + "label": "", + "to": 3689, + "category": "related" + }, + { + "from": 4650, + "label": "", + "to": 3783, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 4383, + "category": "related" + }, + { + "from": 1744, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1746, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1748, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5212, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1752, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1757, + "category": "related" + }, + { + "from": 1758, + "label": "", + "to": 5091, + "category": "related" + }, + { + "from": 3936, + "label": "", + "to": 2985, + "category": "related" + }, + { + "from": 3936, + "label": "", + "to": 4637, + "category": "related" + }, + { + "from": 1766, + "label": "", + "to": 1765, + "category": "related" + }, + { + "from": 1766, + "label": "", + "to": 1767, + "category": "related" + }, + { + "from": 3108, + "label": "", + "to": 1773, + "category": "related" + }, + { + "from": 3936, + "label": "", + "to": 1771, + "category": "related" + }, + { + "from": 1772, + "label": "", + "to": 1773, + "category": "related" + }, + { + "from": 6090, + "label": "", + "to": 1775, + "category": "related" + }, + { + "from": 1790, + "label": "", + "to": 1777, + "category": "related" + }, + { + "from": 1790, + "label": "", + "to": 1779, + "category": "related" + }, + { + "from": 1780, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5418, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1784, + "label": "", + "to": 4201, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4201, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 5633, + "category": "related" + }, + { + "from": 1790, + "label": "", + "to": 1791, + "category": "related" + }, + { + "from": 3544, + "label": "", + "to": 5313, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 2201, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 1797, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5313, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 1801, + "category": "related" + }, + { + "from": 1802, + "label": "", + "to": 1803, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 2023, + "category": "related" + }, + { + "from": 4534, + "label": "", + "to": 1807, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 2201, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5313, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 1813, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 1815, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 3417, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 3921, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 5525, + "category": "related" + }, + { + "from": 1826, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2940, + "label": "", + "to": 1829, + "category": "related" + }, + { + "from": 1830, + "label": "", + "to": 1831, + "category": "related" + }, + { + "from": 1832, + "label": "", + "to": 4837, + "category": "related" + }, + { + "from": 1834, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 4056, + "label": "", + "to": 1837, + "category": "related" + }, + { + "from": 4056, + "label": "", + "to": 1839, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1841, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 1843, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1848, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1850, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 1857, + "category": "related" + }, + { + "from": 3274, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 6107, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5748, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1864, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 1867, + "category": "related" + }, + { + "from": 1868, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 1870, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3546, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1874, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1880, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 2664, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1886, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1888, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4044, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 1893, + "category": "related" + }, + { + "from": 1894, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1896, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1898, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3758, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1904, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 1906, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 1912, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1914, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5200, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 1918, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 1920, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1922, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1924, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5392, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5304, + "label": "", + "to": 1929, + "category": "related" + }, + { + "from": 5398, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2848, + "label": "", + "to": 4789, + "category": "related" + }, + { + "from": 5602, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 1936, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5602, + "label": "", + "to": 2201, + "category": "related" + }, + { + "from": 5304, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1943, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1947, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1949, + "category": "related" + }, + { + "from": 4704, + "label": "", + "to": 2219, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 1953, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 1955, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 1957, + "category": "related" + }, + { + "from": 1958, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 1960, + "label": "", + "to": 5899, + "category": "related" + }, + { + "from": 4704, + "label": "", + "to": 3083, + "category": "related" + }, + { + "from": 3640, + "label": "", + "to": 1965, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 1967, + "category": "related" + }, + { + "from": 2468, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3210, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 4126, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 1974, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 3426, + "label": "", + "to": 1977, + "category": "related" + }, + { + "from": 1978, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3787, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 1984, + "label": "", + "to": 1985, + "category": "related" + }, + { + "from": 1986, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6108, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 1990, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 1995, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 1997, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4697, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 2001, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 2003, + "category": "related" + }, + { + "from": 2862, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 2007, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 2441, + "category": "related" + }, + { + "from": 2012, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2014, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5224, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2018, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2023, + "category": "related" + }, + { + "from": 4800, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5798, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2030, + "label": "", + "to": 3203, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5274, + "label": "", + "to": 5731, + "category": "related" + }, + { + "from": 2036, + "label": "", + "to": 5731, + "category": "related" + }, + { + "from": 2038, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2040, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2044, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2660, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2048, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2050, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5731, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 3388, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5910, + "label": "", + "to": 2061, + "category": "related" + }, + { + "from": 2062, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2064, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 3094, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2070, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5508, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 3907, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 2077, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 2079, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 2081, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 3057, + "category": "related" + }, + { + "from": 5624, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2087, + "category": "related" + }, + { + "from": 2088, + "label": "", + "to": 2089, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2091, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4841, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2095, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2097, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2099, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2101, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2103, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2105, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2107, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5771, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2113, + "category": "related" + }, + { + "from": 2114, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 5614, + "label": "", + "to": 2117, + "category": "related" + }, + { + "from": 2118, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 2120, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 2124, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 2126, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 5614, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 2130, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 5402, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 2134, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 2136, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2141, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2143, + "category": "related" + }, + { + "from": 2156, + "label": "", + "to": 5279, + "category": "related" + }, + { + "from": 2146, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2149, + "category": "related" + }, + { + "from": 2150, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2152, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2155, + "category": "related" + }, + { + "from": 2156, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 2158, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2160, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2162, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5204, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2167, + "category": "related" + }, + { + "from": 2168, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3534, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2172, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4196, + "label": "", + "to": 2175, + "category": "related" + }, + { + "from": 4196, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 5036, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 2180, + "label": "", + "to": 2181, + "category": "related" + }, + { + "from": 4708, + "label": "", + "to": 2183, + "category": "related" + }, + { + "from": 2184, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 2187, + "category": "related" + }, + { + "from": 2218, + "label": "", + "to": 2189, + "category": "related" + }, + { + "from": 2190, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 2201, + "category": "related" + }, + { + "from": 2194, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 2197, + "category": "related" + }, + { + "from": 2198, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2200, + "label": "", + "to": 2201, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 2203, + "category": "related" + }, + { + "from": 2736, + "label": "", + "to": 2205, + "category": "related" + }, + { + "from": 2206, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2208, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 4499, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 2213, + "category": "related" + }, + { + "from": 2218, + "label": "", + "to": 2215, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 2218, + "label": "", + "to": 2219, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2223, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2225, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2227, + "category": "related" + }, + { + "from": 2228, + "label": "", + "to": 2229, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 2231, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 2234, + "label": "", + "to": 2235, + "category": "related" + }, + { + "from": 2640, + "label": "", + "to": 4939, + "category": "related" + }, + { + "from": 2238, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2240, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 5815, + "category": "related" + }, + { + "from": 3396, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2246, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3988, + "label": "", + "to": 5171, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 5229, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 5001, + "category": "related" + }, + { + "from": 2640, + "label": "", + "to": 2255, + "category": "related" + }, + { + "from": 2640, + "label": "", + "to": 2373, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2261, + "category": "related" + }, + { + "from": 2662, + "label": "", + "to": 2261, + "category": "related" + }, + { + "from": 2264, + "label": "", + "to": 4347, + "category": "related" + }, + { + "from": 2264, + "label": "", + "to": 2265, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 2267, + "category": "related" + }, + { + "from": 2268, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 2270, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5284, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4786, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2276, + "label": "", + "to": 2277, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 2279, + "category": "related" + }, + { + "from": 2280, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2282, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4274, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2286, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 2290, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2292, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2294, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2296, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2298, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 3501, + "category": "related" + }, + { + "from": 2302, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2304, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 2933, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 2311, + "category": "related" + }, + { + "from": 2312, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 2825, + "category": "related" + }, + { + "from": 2316, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2572, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2322, + "label": "", + "to": 2825, + "category": "related" + }, + { + "from": 5966, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2327, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2329, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2786, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2334, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2336, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2338, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2341, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2343, + "category": "related" + }, + { + "from": 2344, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2346, + "label": "", + "to": 2825, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2349, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 2351, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 2355, + "category": "related" + }, + { + "from": 2356, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2358, + "label": "", + "to": 2825, + "category": "related" + }, + { + "from": 2848, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4417, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 2366, + "label": "", + "to": 4704, + "category": "related" + }, + { + "from": 2368, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2371, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2373, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2375, + "category": "related" + }, + { + "from": 3094, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2379, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2381, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2383, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2385, + "category": "related" + }, + { + "from": 2386, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 2388, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2391, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 2394, + "label": "", + "to": 2407, + "category": "related" + }, + { + "from": 2396, + "label": "", + "to": 2397, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2399, + "category": "related" + }, + { + "from": 3885, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 2402, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2405, + "category": "related" + }, + { + "from": 2406, + "label": "", + "to": 2407, + "category": "related" + }, + { + "from": 5036, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 2705, + "category": "related" + }, + { + "from": 2412, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2414, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4788, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2418, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 5598, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2424, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2426, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5450, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4778, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5674, + "label": "", + "to": 2433, + "category": "related" + }, + { + "from": 5674, + "label": "", + "to": 2435, + "category": "related" + }, + { + "from": 2436, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2438, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2440, + "label": "", + "to": 2441, + "category": "related" + }, + { + "from": 4006, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2444, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5400, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2450, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2452, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2454, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2456, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2458, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2460, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2462, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2464, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5388, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2468, + "label": "", + "to": 5583, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 3139, + "category": "related" + }, + { + "from": 3974, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2474, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2476, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2478, + "label": "", + "to": 3139, + "category": "related" + }, + { + "from": 2480, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2482, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2484, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2487, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2491, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2493, + "category": "related" + }, + { + "from": 2494, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2497, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 2499, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 2501, + "category": "related" + }, + { + "from": 2502, + "label": "", + "to": 2503, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2505, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 2507, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 2509, + "category": "related" + }, + { + "from": 5620, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5495, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 2515, + "category": "related" + }, + { + "from": 4706, + "label": "", + "to": 5393, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2519, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2521, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2523, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2525, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2527, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2531, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2533, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5165, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2537, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2539, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2541, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2543, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2545, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2547, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2549, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 2551, + "category": "related" + }, + { + "from": 2554, + "label": "", + "to": 2553, + "category": "related" + }, + { + "from": 2554, + "label": "", + "to": 2555, + "category": "related" + }, + { + "from": 4706, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 3210, + "label": "", + "to": 2559, + "category": "related" + }, + { + "from": 2560, + "label": "", + "to": 2561, + "category": "related" + }, + { + "from": 2562, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2564, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2566, + "label": "", + "to": 2567, + "category": "related" + }, + { + "from": 2568, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2828, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2572, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2574, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2576, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2578, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3622, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4708, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2584, + "label": "", + "to": 2585, + "category": "related" + }, + { + "from": 5058, + "label": "", + "to": 2587, + "category": "related" + }, + { + "from": 5800, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 2591, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2593, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2595, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5771, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2599, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2601, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2603, + "category": "related" + }, + { + "from": 5380, + "label": "", + "to": 2605, + "category": "related" + }, + { + "from": 5380, + "label": "", + "to": 2607, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 2609, + "category": "related" + }, + { + "from": 5990, + "label": "", + "to": 2611, + "category": "related" + }, + { + "from": 2616, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 3746, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2616, + "label": "", + "to": 5697, + "category": "related" + }, + { + "from": 2618, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2620, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2622, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2624, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2626, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2628, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2630, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2632, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2636, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2638, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2640, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2642, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2646, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2648, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4140, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2652, + "label": "", + "to": 2653, + "category": "related" + }, + { + "from": 2654, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2838, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4138, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2660, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2662, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2664, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2666, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2668, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2670, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2672, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3988, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2676, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 3758, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2682, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4828, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2686, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2688, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2690, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 2692, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5697, + "category": "related" + }, + { + "from": 3092, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 2698, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 2702, + "label": "", + "to": 2703, + "category": "related" + }, + { + "from": 2704, + "label": "", + "to": 2705, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 2707, + "category": "related" + }, + { + "from": 2708, + "label": "", + "to": 2717, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 2713, + "category": "related" + }, + { + "from": 5390, + "label": "", + "to": 2717, + "category": "related" + }, + { + "from": 2716, + "label": "", + "to": 2717, + "category": "related" + }, + { + "from": 2736, + "label": "", + "to": 2719, + "category": "related" + }, + { + "from": 2720, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 2736, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 2736, + "label": "", + "to": 2725, + "category": "related" + }, + { + "from": 2726, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 2736, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 2731, + "category": "related" + }, + { + "from": 2732, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 2735, + "category": "related" + }, + { + "from": 2736, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 2738, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 2741, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 2743, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2745, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2747, + "category": "related" + }, + { + "from": 2786, + "label": "", + "to": 2749, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2751, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2753, + "category": "related" + }, + { + "from": 2754, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 3380, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 2758, + "label": "", + "to": 2933, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5047, + "category": "related" + }, + { + "from": 2766, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 2769, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2773, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 3805, + "category": "related" + }, + { + "from": 5408, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 2778, + "label": "", + "to": 2779, + "category": "related" + }, + { + "from": 2780, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 2783, + "category": "related" + }, + { + "from": 3885, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 2786, + "label": "", + "to": 2787, + "category": "related" + }, + { + "from": 2788, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 2790, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2793, + "category": "related" + }, + { + "from": 2794, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2797, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2799, + "category": "related" + }, + { + "from": 2800, + "label": "", + "to": 2805, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2803, + "category": "related" + }, + { + "from": 4014, + "label": "", + "to": 2805, + "category": "related" + }, + { + "from": 2806, + "label": "", + "to": 3413, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2809, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 2811, + "category": "related" + }, + { + "from": 4492, + "label": "", + "to": 2813, + "category": "related" + }, + { + "from": 4492, + "label": "", + "to": 2815, + "category": "related" + }, + { + "from": 5860, + "label": "", + "to": 2817, + "category": "related" + }, + { + "from": 4492, + "label": "", + "to": 2819, + "category": "related" + }, + { + "from": 4492, + "label": "", + "to": 2821, + "category": "related" + }, + { + "from": 2822, + "label": "", + "to": 2827, + "category": "related" + }, + { + "from": 2824, + "label": "", + "to": 2825, + "category": "related" + }, + { + "from": 2826, + "label": "", + "to": 2827, + "category": "related" + }, + { + "from": 2828, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 5306, + "label": "", + "to": 2831, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4786, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 2838, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 2841, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 3210, + "label": "", + "to": 5107, + "category": "related" + }, + { + "from": 2848, + "label": "", + "to": 2849, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5107, + "category": "related" + }, + { + "from": 5744, + "label": "", + "to": 2853, + "category": "related" + }, + { + "from": 5744, + "label": "", + "to": 2855, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 2858, + "label": "", + "to": 5745, + "category": "related" + }, + { + "from": 2860, + "label": "", + "to": 5745, + "category": "related" + }, + { + "from": 2862, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 2864, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 2866, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2868, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 3989, + "category": "related" + }, + { + "from": 5652, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 5179, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 3137, + "category": "related" + }, + { + "from": 2880, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2882, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2910, + "label": "", + "to": 2887, + "category": "related" + }, + { + "from": 4668, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 2890, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5306, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 2895, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2897, + "category": "related" + }, + { + "from": 2898, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2900, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 5083, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2905, + "category": "related" + }, + { + "from": 2906, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2908, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2910, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 2914, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 2916, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 2919, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5508, + "label": "", + "to": 5393, + "category": "related" + }, + { + "from": 2926, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 2929, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 2931, + "category": "related" + }, + { + "from": 2932, + "label": "", + "to": 2933, + "category": "related" + }, + { + "from": 2938, + "label": "", + "to": 2935, + "category": "related" + }, + { + "from": 2940, + "label": "", + "to": 2937, + "category": "related" + }, + { + "from": 2938, + "label": "", + "to": 4530, + "category": "related" + }, + { + "from": 2940, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 2942, + "label": "", + "to": 2943, + "category": "related" + }, + { + "from": 3540, + "label": "", + "to": 4623, + "category": "related" + }, + { + "from": 2946, + "label": "", + "to": 2947, + "category": "related" + }, + { + "from": 3540, + "label": "", + "to": 2949, + "category": "related" + }, + { + "from": 3700, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 3093, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3093, + "category": "related" + }, + { + "from": 2962, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 3093, + "category": "related" + }, + { + "from": 2962, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 2962, + "label": "", + "to": 2963, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2965, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2967, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2969, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2971, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2973, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2975, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2977, + "category": "related" + }, + { + "from": 2978, + "label": "", + "to": 2985, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 2982, + "label": "", + "to": 2983, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 2985, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 2987, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 4269, + "category": "related" + }, + { + "from": 5652, + "label": "", + "to": 4269, + "category": "related" + }, + { + "from": 2992, + "label": "", + "to": 4269, + "category": "related" + }, + { + "from": 2996, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 2996, + "label": "", + "to": 2997, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 2999, + "category": "related" + }, + { + "from": 3168, + "label": "", + "to": 3001, + "category": "related" + }, + { + "from": 4728, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3538, + "label": "", + "to": 5261, + "category": "related" + }, + { + "from": 5408, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3008, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3010, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3012, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3014, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5668, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3018, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3020, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3022, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3024, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3026, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3028, + "label": "", + "to": 3029, + "category": "related" + }, + { + "from": 3030, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3036, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3038, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 3043, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5731, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3049, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3051, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3053, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3055, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3057, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 3743, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5723, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 4689, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 3069, + "category": "related" + }, + { + "from": 5200, + "label": "", + "to": 3071, + "category": "related" + }, + { + "from": 3072, + "label": "", + "to": 3083, + "category": "related" + }, + { + "from": 3074, + "label": "", + "to": 3075, + "category": "related" + }, + { + "from": 3076, + "label": "", + "to": 3083, + "category": "related" + }, + { + "from": 4764, + "label": "", + "to": 3083, + "category": "related" + }, + { + "from": 4172, + "label": "", + "to": 3081, + "category": "related" + }, + { + "from": 4622, + "label": "", + "to": 3083, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 3085, + "category": "related" + }, + { + "from": 4358, + "label": "", + "to": 3087, + "category": "related" + }, + { + "from": 5774, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3092, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 3092, + "label": "", + "to": 3093, + "category": "related" + }, + { + "from": 3094, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3818, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3098, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3100, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3102, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3104, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3106, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3108, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3110, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3114, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3116, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3118, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3120, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3426, + "label": "", + "to": 3125, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5887, + "category": "related" + }, + { + "from": 3132, + "label": "", + "to": 3129, + "category": "related" + }, + { + "from": 3132, + "label": "", + "to": 3131, + "category": "related" + }, + { + "from": 3132, + "label": "", + "to": 3133, + "category": "related" + }, + { + "from": 3134, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 3452, + "label": "", + "to": 3137, + "category": "related" + }, + { + "from": 3140, + "label": "", + "to": 3139, + "category": "related" + }, + { + "from": 3140, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 3142, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 3144, + "label": "", + "to": 5033, + "category": "related" + }, + { + "from": 3452, + "label": "", + "to": 3147, + "category": "related" + }, + { + "from": 3452, + "label": "", + "to": 3149, + "category": "related" + }, + { + "from": 3150, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 3152, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 3452, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3157, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3161, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4569, + "category": "related" + }, + { + "from": 4754, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3168, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3171, + "category": "related" + }, + { + "from": 3172, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3174, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3396, + "label": "", + "to": 5696, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5655, + "category": "related" + }, + { + "from": 3180, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5696, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 3184, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3186, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3188, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3190, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3192, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5696, + "label": "", + "to": 3195, + "category": "related" + }, + { + "from": 3426, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 3198, + "label": "", + "to": 5633, + "category": "related" + }, + { + "from": 3200, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 3202, + "label": "", + "to": 3203, + "category": "related" + }, + { + "from": 3204, + "label": "", + "to": 3215, + "category": "related" + }, + { + "from": 3210, + "label": "", + "to": 3207, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 3210, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 3426, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3215, + "category": "related" + }, + { + "from": 3216, + "label": "", + "to": 5247, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5247, + "category": "related" + }, + { + "from": 3220, + "label": "", + "to": 3221, + "category": "related" + }, + { + "from": 3885, + "label": "", + "to": 5247, + "category": "related" + }, + { + "from": 4946, + "label": "", + "to": 3225, + "category": "related" + }, + { + "from": 5418, + "label": "", + "to": 5247, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 5247, + "category": "related" + }, + { + "from": 6107, + "label": "", + "to": 3231, + "category": "related" + }, + { + "from": 3242, + "label": "", + "to": 3233, + "category": "related" + }, + { + "from": 3452, + "label": "", + "to": 3239, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3237, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 3239, + "category": "related" + }, + { + "from": 6107, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 3242, + "label": "", + "to": 3243, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3245, + "category": "related" + }, + { + "from": 3246, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3654, + "label": "", + "to": 3277, + "category": "related" + }, + { + "from": 3250, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3252, + "label": "", + "to": 3253, + "category": "related" + }, + { + "from": 3254, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3256, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3496, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3262, + "label": "", + "to": 3263, + "category": "related" + }, + { + "from": 3264, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 3444, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4148, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3273, + "category": "related" + }, + { + "from": 3274, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 3277, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3279, + "category": "related" + }, + { + "from": 3280, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3283, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3805, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 3289, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 3291, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3293, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3295, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4749, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3301, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3303, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3305, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3307, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 3309, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3313, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3315, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3317, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3321, + "category": "related" + }, + { + "from": 3540, + "label": "", + "to": 3323, + "category": "related" + }, + { + "from": 3540, + "label": "", + "to": 3325, + "category": "related" + }, + { + "from": 3580, + "label": "", + "to": 5107, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3330, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3334, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4752, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3338, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3340, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5830, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5492, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3348, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3350, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3352, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3354, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3356, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 4841, + "category": "related" + }, + { + "from": 4280, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3372, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 3364, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 3366, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5374, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 3372, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 3374, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 3380, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 5926, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 4611, + "category": "related" + }, + { + "from": 3388, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 5829, + "category": "related" + }, + { + "from": 3746, + "label": "", + "to": 3395, + "category": "related" + }, + { + "from": 3396, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 3398, + "label": "", + "to": 3399, + "category": "related" + }, + { + "from": 3400, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 3402, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 3412, + "label": "", + "to": 3407, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5953, + "category": "related" + }, + { + "from": 4428, + "label": "", + "to": 3419, + "category": "related" + }, + { + "from": 3412, + "label": "", + "to": 3413, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3415, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3417, + "category": "related" + }, + { + "from": 3418, + "label": "", + "to": 3419, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3425, + "category": "related" + }, + { + "from": 3426, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3429, + "category": "related" + }, + { + "from": 3430, + "label": "", + "to": 3431, + "category": "related" + }, + { + "from": 3432, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3435, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3437, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 5744, + "label": "", + "to": 3443, + "category": "related" + }, + { + "from": 3444, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3447, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3449, + "category": "related" + }, + { + "from": 3450, + "label": "", + "to": 4129, + "category": "related" + }, + { + "from": 3452, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3457, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3459, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 3461, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 4609, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3465, + "category": "related" + }, + { + "from": 5950, + "label": "", + "to": 3467, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 3469, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3471, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 3473, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 3475, + "category": "related" + }, + { + "from": 3476, + "label": "", + "to": 3477, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3479, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3481, + "category": "related" + }, + { + "from": 3482, + "label": "", + "to": 3483, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3487, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 3490, + "label": "", + "to": 3501, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3493, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3495, + "category": "related" + }, + { + "from": 3496, + "label": "", + "to": 3497, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3499, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3501, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3503, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3505, + "category": "related" + }, + { + "from": 4890, + "label": "", + "to": 5515, + "category": "related" + }, + { + "from": 3508, + "label": "", + "to": 4503, + "category": "related" + }, + { + "from": 3510, + "label": "", + "to": 4503, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4594, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3516, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3518, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3520, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 3522, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3524, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3528, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3530, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3533, + "category": "related" + }, + { + "from": 3534, + "label": "", + "to": 4503, + "category": "related" + }, + { + "from": 3536, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3538, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3540, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3542, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 3544, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 3546, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 3548, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3550, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3552, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3554, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3556, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4976, + "label": "", + "to": 3561, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3563, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5251, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3567, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 3646, + "label": "", + "to": 3571, + "category": "related" + }, + { + "from": 3646, + "label": "", + "to": 3573, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3575, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5165, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 3580, + "label": "", + "to": 3581, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3583, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3585, + "category": "related" + }, + { + "from": 3586, + "label": "", + "to": 3799, + "category": "related" + }, + { + "from": 3588, + "label": "", + "to": 3799, + "category": "related" + }, + { + "from": 5200, + "label": "", + "to": 3799, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 3593, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 3595, + "category": "related" + }, + { + "from": 3596, + "label": "", + "to": 3597, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 3599, + "category": "related" + }, + { + "from": 3618, + "label": "", + "to": 3905, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 5171, + "category": "related" + }, + { + "from": 3618, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 3609, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 3611, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 3613, + "category": "related" + }, + { + "from": 3618, + "label": "", + "to": 3615, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 3617, + "category": "related" + }, + { + "from": 3618, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 3620, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3622, + "label": "", + "to": 3632, + "category": "related" + }, + { + "from": 3624, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4938, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3628, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3630, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3632, + "label": "", + "to": 3633, + "category": "related" + }, + { + "from": 4974, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3636, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3640, + "label": "", + "to": 3641, + "category": "related" + }, + { + "from": 3642, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 3644, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3646, + "label": "", + "to": 3647, + "category": "related" + }, + { + "from": 3648, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3650, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 3652, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3654, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3656, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3658, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3660, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4284, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 3677, + "category": "related" + }, + { + "from": 3666, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3668, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3670, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5456, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3674, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 3677, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 3679, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 3689, + "category": "related" + }, + { + "from": 3694, + "label": "", + "to": 3685, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3689, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 3689, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 3691, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 3693, + "category": "related" + }, + { + "from": 3694, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 3697, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 3699, + "category": "related" + }, + { + "from": 3700, + "label": "", + "to": 4497, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 3703, + "category": "related" + }, + { + "from": 3704, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 3707, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 3709, + "category": "related" + }, + { + "from": 4828, + "label": "", + "to": 3805, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 3713, + "category": "related" + }, + { + "from": 3714, + "label": "", + "to": 3715, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 3717, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 3719, + "category": "related" + }, + { + "from": 3720, + "label": "", + "to": 3805, + "category": "related" + }, + { + "from": 4022, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 3724, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3727, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3731, + "category": "related" + }, + { + "from": 3732, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3735, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 3737, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3739, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 3741, + "category": "related" + }, + { + "from": 5136, + "label": "", + "to": 3743, + "category": "related" + }, + { + "from": 3746, + "label": "", + "to": 4789, + "category": "related" + }, + { + "from": 3746, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 3748, + "label": "", + "to": 3749, + "category": "related" + }, + { + "from": 3750, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3752, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5792, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3756, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3758, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3760, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3762, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3764, + "label": "", + "to": 3765, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 3767, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 3769, + "category": "related" + }, + { + "from": 3770, + "label": "", + "to": 3787, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 5481, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 3775, + "category": "related" + }, + { + "from": 3776, + "label": "", + "to": 4969, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 3779, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 3781, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 3783, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 3787, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 3787, + "category": "related" + }, + { + "from": 3798, + "label": "", + "to": 3789, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 3791, + "category": "related" + }, + { + "from": 3792, + "label": "", + "to": 3793, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 4706, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 3797, + "category": "related" + }, + { + "from": 3798, + "label": "", + "to": 3799, + "category": "related" + }, + { + "from": 3800, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 3802, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 3804, + "label": "", + "to": 3805, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 5036, + "label": "", + "to": 3809, + "category": "related" + }, + { + "from": 3810, + "label": "", + "to": 4611, + "category": "related" + }, + { + "from": 3812, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5456, + "label": "", + "to": 3997, + "category": "related" + }, + { + "from": 5404, + "label": "", + "to": 3817, + "category": "related" + }, + { + "from": 3818, + "label": "", + "to": 3819, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5456, + "label": "", + "to": 3823, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 3827, + "category": "related" + }, + { + "from": 5404, + "label": "", + "to": 3829, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3831, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3833, + "category": "related" + }, + { + "from": 3834, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4590, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3838, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3841, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3843, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 5311, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3847, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4689, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3852, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 3855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3857, + "category": "related" + }, + { + "from": 3858, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3860, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3862, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3865, + "category": "related" + }, + { + "from": 3866, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3868, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5229, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3873, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3875, + "category": "related" + }, + { + "from": 5390, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4098, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3881, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 3884, + "label": "", + "to": 3885, + "category": "related" + }, + { + "from": 3886, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3888, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3891, + "category": "related" + }, + { + "from": 3892, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3894, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 3897, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 3907, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 3905, + "category": "related" + }, + { + "from": 3902, + "label": "", + "to": 3905, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 3905, + "category": "related" + }, + { + "from": 3906, + "label": "", + "to": 3907, + "category": "related" + }, + { + "from": 3908, + "label": "", + "to": 3909, + "category": "related" + }, + { + "from": 3916, + "label": "", + "to": 3911, + "category": "related" + }, + { + "from": 3912, + "label": "", + "to": 4939, + "category": "related" + }, + { + "from": 3914, + "label": "", + "to": 3915, + "category": "related" + }, + { + "from": 3916, + "label": "", + "to": 3917, + "category": "related" + }, + { + "from": 3918, + "label": "", + "to": 5994, + "category": "related" + }, + { + "from": 5994, + "label": "", + "to": 3921, + "category": "related" + }, + { + "from": 3922, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5602, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3928, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3930, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3932, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3934, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3936, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3938, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3940, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3943, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 3945, + "category": "related" + }, + { + "from": 3964, + "label": "", + "to": 3947, + "category": "related" + }, + { + "from": 3964, + "label": "", + "to": 3949, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 3953, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 3964, + "label": "", + "to": 3957, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 3959, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3961, + "category": "related" + }, + { + "from": 3964, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 3964, + "label": "", + "to": 3965, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3967, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 5095, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 3971, + "category": "related" + }, + { + "from": 3972, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 3974, + "label": "", + "to": 3975, + "category": "related" + }, + { + "from": 3988, + "label": "", + "to": 3977, + "category": "related" + }, + { + "from": 3988, + "label": "", + "to": 3979, + "category": "related" + }, + { + "from": 5798, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 3982, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 3984, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 3987, + "category": "related" + }, + { + "from": 3988, + "label": "", + "to": 3989, + "category": "related" + }, + { + "from": 3990, + "label": "", + "to": 3991, + "category": "related" + }, + { + "from": 5970, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 3995, + "category": "related" + }, + { + "from": 5406, + "label": "", + "to": 3997, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5049, + "category": "related" + }, + { + "from": 4320, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 4003, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5047, + "category": "related" + }, + { + "from": 4006, + "label": "", + "to": 4007, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 4011, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5165, + "category": "related" + }, + { + "from": 4014, + "label": "", + "to": 4015, + "category": "related" + }, + { + "from": 4016, + "label": "", + "to": 5557, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 4019, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 4022, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4025, + "category": "related" + }, + { + "from": 4026, + "label": "", + "to": 4027, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4029, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4031, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4033, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4035, + "category": "related" + }, + { + "from": 4036, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4040, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4042, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4044, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5784, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4048, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4294, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5406, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5950, + "label": "", + "to": 4055, + "category": "related" + }, + { + "from": 4056, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4058, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4060, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4062, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4064, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5622, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 4069, + "category": "related" + }, + { + "from": 4096, + "label": "", + "to": 4071, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 4073, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 4075, + "category": "related" + }, + { + "from": 4096, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4476, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 4081, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4084, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4086, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 4089, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5502, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4106, + "label": "", + "to": 4095, + "category": "related" + }, + { + "from": 4096, + "label": "", + "to": 4097, + "category": "related" + }, + { + "from": 4098, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4106, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 4468, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4110, + "label": "", + "to": 4111, + "category": "related" + }, + { + "from": 4112, + "label": "", + "to": 4693, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 4115, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 4117, + "category": "related" + }, + { + "from": 4118, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 4121, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 4123, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 4125, + "category": "related" + }, + { + "from": 4126, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 4128, + "label": "", + "to": 4129, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4132, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 4134, + "label": "", + "to": 5899, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4138, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4140, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 5774, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4752, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4146, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 4148, + "label": "", + "to": 5025, + "category": "related" + }, + { + "from": 4172, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4172, + "label": "", + "to": 5005, + "category": "related" + }, + { + "from": 4154, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 4156, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 4158, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4160, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4162, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4164, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4172, + "label": "", + "to": 4167, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4170, + "label": "", + "to": 4171, + "category": "related" + }, + { + "from": 4172, + "label": "", + "to": 4173, + "category": "related" + }, + { + "from": 4174, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4176, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 4178, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 4180, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 4182, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 4196, + "label": "", + "to": 4187, + "category": "related" + }, + { + "from": 4196, + "label": "", + "to": 4189, + "category": "related" + }, + { + "from": 5598, + "label": "", + "to": 4191, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 4196, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4195, + "category": "related" + }, + { + "from": 4196, + "label": "", + "to": 4197, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4201, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4203, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5233, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4211, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 4211, + "category": "related" + }, + { + "from": 5450, + "label": "", + "to": 5880, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4217, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 4219, + "category": "related" + }, + { + "from": 4220, + "label": "", + "to": 4223, + "category": "related" + }, + { + "from": 4222, + "label": "", + "to": 4223, + "category": "related" + }, + { + "from": 4264, + "label": "", + "to": 4225, + "category": "related" + }, + { + "from": 4226, + "label": "", + "to": 4751, + "category": "related" + }, + { + "from": 4228, + "label": "", + "to": 4751, + "category": "related" + }, + { + "from": 4230, + "label": "", + "to": 4751, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 5591, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 4235, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 4241, + "category": "related" + }, + { + "from": 4242, + "label": "", + "to": 4243, + "category": "related" + }, + { + "from": 4244, + "label": "", + "to": 4245, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4269, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 4693, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4693, + "category": "related" + }, + { + "from": 4252, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4257, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4259, + "category": "related" + }, + { + "from": 4274, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4263, + "category": "related" + }, + { + "from": 4264, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 6101, + "label": "", + "to": 4269, + "category": "related" + }, + { + "from": 4268, + "label": "", + "to": 4269, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4271, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 4273, + "category": "related" + }, + { + "from": 4274, + "label": "", + "to": 4275, + "category": "related" + }, + { + "from": 4276, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 4278, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 4280, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 4282, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 4284, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4287, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4289, + "category": "related" + }, + { + "from": 4290, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4293, + "category": "related" + }, + { + "from": 4294, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4297, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4305, + "category": "related" + }, + { + "from": 4996, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4308, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4310, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4312, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4314, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4317, + "category": "related" + }, + { + "from": 4318, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4320, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4323, + "category": "related" + }, + { + "from": 4324, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4326, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4328, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4331, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4333, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4335, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4337, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 5229, + "category": "related" + }, + { + "from": 4340, + "label": "", + "to": 4341, + "category": "related" + }, + { + "from": 4342, + "label": "", + "to": 4347, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4345, + "category": "related" + }, + { + "from": 4346, + "label": "", + "to": 4347, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4349, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4351, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 4353, + "category": "related" + }, + { + "from": 4386, + "label": "", + "to": 4355, + "category": "related" + }, + { + "from": 4356, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4358, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4390, + "label": "", + "to": 4387, + "category": "related" + }, + { + "from": 4362, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4364, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4366, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4368, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4370, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4382, + "label": "", + "to": 4373, + "category": "related" + }, + { + "from": 4374, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4376, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4378, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4380, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4382, + "label": "", + "to": 4383, + "category": "related" + }, + { + "from": 4384, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4386, + "label": "", + "to": 4387, + "category": "related" + }, + { + "from": 4388, + "label": "", + "to": 4389, + "category": "related" + }, + { + "from": 4390, + "label": "", + "to": 4495, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4393, + "category": "related" + }, + { + "from": 4394, + "label": "", + "to": 4495, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4397, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4399, + "category": "related" + }, + { + "from": 4400, + "label": "", + "to": 4495, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4405, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4407, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4495, + "category": "related" + }, + { + "from": 4660, + "label": "", + "to": 4411, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4554, + "label": "", + "to": 4415, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4417, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4419, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4421, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4423, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4425, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4427, + "category": "related" + }, + { + "from": 4428, + "label": "", + "to": 5935, + "category": "related" + }, + { + "from": 5400, + "label": "", + "to": 5935, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4433, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4435, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4437, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4439, + "category": "related" + }, + { + "from": 4440, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4443, + "category": "related" + }, + { + "from": 4444, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4447, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4683, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4451, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4453, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4455, + "category": "related" + }, + { + "from": 4456, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4459, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4461, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4463, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5599, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4467, + "category": "related" + }, + { + "from": 4468, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4841, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 4473, + "category": "related" + }, + { + "from": 5136, + "label": "", + "to": 5591, + "category": "related" + }, + { + "from": 4476, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4479, + "category": "related" + }, + { + "from": 4480, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 5250, + "label": "", + "to": 4611, + "category": "related" + }, + { + "from": 5652, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4489, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 4491, + "category": "related" + }, + { + "from": 4492, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4495, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4497, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 4499, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4503, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4505, + "category": "related" + }, + { + "from": 4506, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4509, + "category": "related" + }, + { + "from": 4510, + "label": "", + "to": 4511, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4513, + "category": "related" + }, + { + "from": 4532, + "label": "", + "to": 4515, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4517, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4709, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4623, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4523, + "category": "related" + }, + { + "from": 4532, + "label": "", + "to": 4525, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4527, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4529, + "category": "related" + }, + { + "from": 4530, + "label": "", + "to": 4531, + "category": "related" + }, + { + "from": 4532, + "label": "", + "to": 4533, + "category": "related" + }, + { + "from": 4534, + "label": "", + "to": 4535, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 4539, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4541, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4543, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 4545, + "category": "related" + }, + { + "from": 4554, + "label": "", + "to": 4547, + "category": "related" + }, + { + "from": 4552, + "label": "", + "to": 4549, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 4551, + "category": "related" + }, + { + "from": 4552, + "label": "", + "to": 4553, + "category": "related" + }, + { + "from": 4554, + "label": "", + "to": 4555, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 4604, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 4559, + "category": "related" + }, + { + "from": 5622, + "label": "", + "to": 4561, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 4563, + "category": "related" + }, + { + "from": 5622, + "label": "", + "to": 4565, + "category": "related" + }, + { + "from": 5622, + "label": "", + "to": 4567, + "category": "related" + }, + { + "from": 4594, + "label": "", + "to": 4569, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 5179, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 4573, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 5637, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 4577, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 4579, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4604, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 4585, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4590, + "label": "", + "to": 4591, + "category": "related" + }, + { + "from": 5622, + "label": "", + "to": 4593, + "category": "related" + }, + { + "from": 4594, + "label": "", + "to": 4595, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 4597, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 4599, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5447, + "category": "related" + }, + { + "from": 4604, + "label": "", + "to": 4605, + "category": "related" + }, + { + "from": 4882, + "label": "", + "to": 4607, + "category": "related" + }, + { + "from": 4882, + "label": "", + "to": 4609, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4611, + "category": "related" + }, + { + "from": 4882, + "label": "", + "to": 4613, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 4615, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4623, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 5747, + "category": "related" + }, + { + "from": 4622, + "label": "", + "to": 4623, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 4627, + "category": "related" + }, + { + "from": 4636, + "label": "", + "to": 4629, + "category": "related" + }, + { + "from": 5652, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 4633, + "category": "related" + }, + { + "from": 5250, + "label": "", + "to": 4635, + "category": "related" + }, + { + "from": 4636, + "label": "", + "to": 4637, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4639, + "category": "related" + }, + { + "from": 4640, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4642, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4647, + "category": "related" + }, + { + "from": 4648, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4650, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4653, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4657, + "category": "related" + }, + { + "from": 4658, + "label": "", + "to": 4659, + "category": "related" + }, + { + "from": 4660, + "label": "", + "to": 5697, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4663, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4665, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4667, + "category": "related" + }, + { + "from": 4668, + "label": "", + "to": 4669, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 4671, + "category": "related" + }, + { + "from": 4672, + "label": "", + "to": 4673, + "category": "related" + }, + { + "from": 4674, + "label": "", + "to": 4675, + "category": "related" + }, + { + "from": 4768, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4768, + "label": "", + "to": 4679, + "category": "related" + }, + { + "from": 5330, + "label": "", + "to": 4681, + "category": "related" + }, + { + "from": 5402, + "label": "", + "to": 4683, + "category": "related" + }, + { + "from": 5402, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5330, + "label": "", + "to": 4837, + "category": "related" + }, + { + "from": 4688, + "label": "", + "to": 4689, + "category": "related" + }, + { + "from": 5402, + "label": "", + "to": 4691, + "category": "related" + }, + { + "from": 5874, + "label": "", + "to": 4693, + "category": "related" + }, + { + "from": 5402, + "label": "", + "to": 4695, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 4697, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5557, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5557, + "category": "related" + }, + { + "from": 4702, + "label": "", + "to": 4703, + "category": "related" + }, + { + "from": 4704, + "label": "", + "to": 4709, + "category": "related" + }, + { + "from": 4706, + "label": "", + "to": 4707, + "category": "related" + }, + { + "from": 4708, + "label": "", + "to": 4709, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4711, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4713, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4715, + "category": "related" + }, + { + "from": 4716, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4719, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4721, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4723, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4725, + "category": "related" + }, + { + "from": 4726, + "label": "", + "to": 5128, + "category": "related" + }, + { + "from": 4728, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4731, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 4735, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4737, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 4739, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4741, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4743, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4745, + "category": "related" + }, + { + "from": 5450, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4749, + "category": "related" + }, + { + "from": 4750, + "label": "", + "to": 4751, + "category": "related" + }, + { + "from": 4752, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4754, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 5387, + "category": "related" + }, + { + "from": 4758, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 4760, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4762, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4764, + "label": "", + "to": 5387, + "category": "related" + }, + { + "from": 4766, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4768, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4770, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4774, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 5250, + "label": "", + "to": 4777, + "category": "related" + }, + { + "from": 4778, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 5300, + "label": "", + "to": 4783, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 4786, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4788, + "label": "", + "to": 4789, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 4792, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4794, + "label": "", + "to": 4795, + "category": "related" + }, + { + "from": 4798, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 4798, + "label": "", + "to": 4799, + "category": "related" + }, + { + "from": 4800, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4802, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 4816, + "label": "", + "to": 4805, + "category": "related" + }, + { + "from": 5450, + "label": "", + "to": 4807, + "category": "related" + }, + { + "from": 5858, + "label": "", + "to": 4809, + "category": "related" + }, + { + "from": 4810, + "label": "", + "to": 4821, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4827, + "category": "related" + }, + { + "from": 5450, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 4816, + "label": "", + "to": 4817, + "category": "related" + }, + { + "from": 5858, + "label": "", + "to": 4819, + "category": "related" + }, + { + "from": 4820, + "label": "", + "to": 4821, + "category": "related" + }, + { + "from": 5858, + "label": "", + "to": 4823, + "category": "related" + }, + { + "from": 5858, + "label": "", + "to": 4825, + "category": "related" + }, + { + "from": 4826, + "label": "", + "to": 4827, + "category": "related" + }, + { + "from": 4828, + "label": "", + "to": 4837, + "category": "related" + }, + { + "from": 4830, + "label": "", + "to": 4837, + "category": "related" + }, + { + "from": 4844, + "label": "", + "to": 5633, + "category": "related" + }, + { + "from": 4834, + "label": "", + "to": 4835, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 4837, + "category": "related" + }, + { + "from": 4838, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4844, + "label": "", + "to": 4841, + "category": "related" + }, + { + "from": 4842, + "label": "", + "to": 4843, + "category": "related" + }, + { + "from": 4844, + "label": "", + "to": 4845, + "category": "related" + }, + { + "from": 4890, + "label": "", + "to": 4847, + "category": "related" + }, + { + "from": 4848, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4850, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4852, + "label": "", + "to": 5887, + "category": "related" + }, + { + "from": 4854, + "label": "", + "to": 5887, + "category": "related" + }, + { + "from": 4890, + "label": "", + "to": 4857, + "category": "related" + }, + { + "from": 5280, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4861, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5598, + "label": "", + "to": 4865, + "category": "related" + }, + { + "from": 4866, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4869, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5887, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 4875, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4877, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 4879, + "category": "related" + }, + { + "from": 4890, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 4882, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4884, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 4887, + "category": "related" + }, + { + "from": 4888, + "label": "", + "to": 4889, + "category": "related" + }, + { + "from": 4890, + "label": "", + "to": 4891, + "category": "related" + }, + { + "from": 5830, + "label": "", + "to": 4893, + "category": "related" + }, + { + "from": 5830, + "label": "", + "to": 4895, + "category": "related" + }, + { + "from": 5830, + "label": "", + "to": 4897, + "category": "related" + }, + { + "from": 5830, + "label": "", + "to": 4899, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 4901, + "category": "related" + }, + { + "from": 4902, + "label": "", + "to": 4903, + "category": "related" + }, + { + "from": 4904, + "label": "", + "to": 4905, + "category": "related" + }, + { + "from": 4906, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 4908, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4910, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 5312, + "label": "", + "to": 4913, + "category": "related" + }, + { + "from": 4914, + "label": "", + "to": 5279, + "category": "related" + }, + { + "from": 4916, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4918, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4920, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4922, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4924, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4926, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 4928, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 5696, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 5304, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 4936, + "label": "", + "to": 4937, + "category": "related" + }, + { + "from": 4938, + "label": "", + "to": 4939, + "category": "related" + }, + { + "from": 4944, + "label": "", + "to": 4941, + "category": "related" + }, + { + "from": 4942, + "label": "", + "to": 4943, + "category": "related" + }, + { + "from": 4944, + "label": "", + "to": 4945, + "category": "related" + }, + { + "from": 4946, + "label": "", + "to": 4947, + "category": "related" + }, + { + "from": 4948, + "label": "", + "to": 4951, + "category": "related" + }, + { + "from": 4950, + "label": "", + "to": 4951, + "category": "related" + }, + { + "from": 4952, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 4954, + "label": "", + "to": 4955, + "category": "related" + }, + { + "from": 4956, + "label": "", + "to": 5165, + "category": "related" + }, + { + "from": 4958, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 4960, + "label": "", + "to": 5165, + "category": "related" + }, + { + "from": 4976, + "label": "", + "to": 4963, + "category": "related" + }, + { + "from": 4996, + "label": "", + "to": 4965, + "category": "related" + }, + { + "from": 4966, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 4976, + "label": "", + "to": 4969, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4971, + "category": "related" + }, + { + "from": 5910, + "label": "", + "to": 4973, + "category": "related" + }, + { + "from": 4974, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 4976, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 4996, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5408, + "label": "", + "to": 5309, + "category": "related" + }, + { + "from": 5408, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4985, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4987, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4989, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4991, + "category": "related" + }, + { + "from": 4992, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 4995, + "category": "related" + }, + { + "from": 4996, + "label": "", + "to": 4997, + "category": "related" + }, + { + "from": 5388, + "label": "", + "to": 5099, + "category": "related" + }, + { + "from": 5000, + "label": "", + "to": 5001, + "category": "related" + }, + { + "from": 5388, + "label": "", + "to": 5003, + "category": "related" + }, + { + "from": 5004, + "label": "", + "to": 5005, + "category": "related" + }, + { + "from": 5388, + "label": "", + "to": 5007, + "category": "related" + }, + { + "from": 5388, + "label": "", + "to": 5009, + "category": "related" + }, + { + "from": 5010, + "label": "", + "to": 5011, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5461, + "category": "related" + }, + { + "from": 5014, + "label": "", + "to": 5015, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5255, + "category": "related" + }, + { + "from": 5054, + "label": "", + "to": 5021, + "category": "related" + }, + { + "from": 5038, + "label": "", + "to": 5023, + "category": "related" + }, + { + "from": 5054, + "label": "", + "to": 5025, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5027, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5029, + "category": "related" + }, + { + "from": 5030, + "label": "", + "to": 5049, + "category": "related" + }, + { + "from": 5032, + "label": "", + "to": 5033, + "category": "related" + }, + { + "from": 5054, + "label": "", + "to": 5035, + "category": "related" + }, + { + "from": 5036, + "label": "", + "to": 5049, + "category": "related" + }, + { + "from": 5038, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5041, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5045, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5047, + "category": "related" + }, + { + "from": 5048, + "label": "", + "to": 5049, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5051, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5053, + "category": "related" + }, + { + "from": 5054, + "label": "", + "to": 5055, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5057, + "category": "related" + }, + { + "from": 5058, + "label": "", + "to": 5309, + "category": "related" + }, + { + "from": 5984, + "label": "", + "to": 5062, + "category": "related" + }, + { + "from": 5062, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5751, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 5069, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5071, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5073, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5075, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 5077, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5079, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5081, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5083, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5085, + "category": "related" + }, + { + "from": 5136, + "label": "", + "to": 5087, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5089, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5091, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5093, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 5095, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5097, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5099, + "category": "related" + }, + { + "from": 5100, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5103, + "category": "related" + }, + { + "from": 5104, + "label": "", + "to": 5128, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5107, + "category": "related" + }, + { + "from": 5108, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5229, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5115, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5117, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5121, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5123, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5125, + "category": "related" + }, + { + "from": 5126, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5128, + "label": "", + "to": 5994, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 5132, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5135, + "category": "related" + }, + { + "from": 5136, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5139, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5141, + "category": "related" + }, + { + "from": 5142, + "label": "", + "to": 5143, + "category": "related" + }, + { + "from": 5164, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5146, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5148, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5150, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5152, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5154, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5156, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5171, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 5163, + "category": "related" + }, + { + "from": 5164, + "label": "", + "to": 5165, + "category": "related" + }, + { + "from": 5168, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5168, + "label": "", + "to": 5169, + "category": "related" + }, + { + "from": 5170, + "label": "", + "to": 5171, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 5173, + "category": "related" + }, + { + "from": 5174, + "label": "", + "to": 5175, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5177, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5179, + "category": "related" + }, + { + "from": 5204, + "label": "", + "to": 5181, + "category": "related" + }, + { + "from": 5598, + "label": "", + "to": 5183, + "category": "related" + }, + { + "from": 5204, + "label": "", + "to": 5245, + "category": "related" + }, + { + "from": 5186, + "label": "", + "to": 5807, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5189, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5191, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5195, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5197, + "category": "related" + }, + { + "from": 5204, + "label": "", + "to": 5199, + "category": "related" + }, + { + "from": 5200, + "label": "", + "to": 5201, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5203, + "category": "related" + }, + { + "from": 5204, + "label": "", + "to": 5205, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 5309, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 5209, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 5211, + "category": "related" + }, + { + "from": 5212, + "label": "", + "to": 5213, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5224, + "label": "", + "to": 5217, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 5219, + "category": "related" + }, + { + "from": 5446, + "label": "", + "to": 5221, + "category": "related" + }, + { + "from": 5222, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5224, + "label": "", + "to": 5225, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 5751, + "category": "related" + }, + { + "from": 5784, + "label": "", + "to": 5229, + "category": "related" + }, + { + "from": 5840, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5232, + "label": "", + "to": 5233, + "category": "related" + }, + { + "from": 5278, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 5237, + "category": "related" + }, + { + "from": 5280, + "label": "", + "to": 5239, + "category": "related" + }, + { + "from": 5278, + "label": "", + "to": 5241, + "category": "related" + }, + { + "from": 5242, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5280, + "label": "", + "to": 5245, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 5247, + "category": "related" + }, + { + "from": 5668, + "label": "", + "to": 5249, + "category": "related" + }, + { + "from": 5250, + "label": "", + "to": 5251, + "category": "related" + }, + { + "from": 5840, + "label": "", + "to": 5253, + "category": "related" + }, + { + "from": 5840, + "label": "", + "to": 5255, + "category": "related" + }, + { + "from": 5278, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5278, + "label": "", + "to": 5259, + "category": "related" + }, + { + "from": 5260, + "label": "", + "to": 5261, + "category": "related" + }, + { + "from": 5262, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5840, + "label": "", + "to": 5265, + "category": "related" + }, + { + "from": 5266, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5268, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5270, + "label": "", + "to": 5271, + "category": "related" + }, + { + "from": 5280, + "label": "", + "to": 5273, + "category": "related" + }, + { + "from": 5274, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5276, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5278, + "label": "", + "to": 5279, + "category": "related" + }, + { + "from": 5280, + "label": "", + "to": 5281, + "category": "related" + }, + { + "from": 5300, + "label": "", + "to": 5283, + "category": "related" + }, + { + "from": 5284, + "label": "", + "to": 5641, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5641, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5293, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5293, + "category": "related" + }, + { + "from": 5294, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5296, + "label": "", + "to": 5297, + "category": "related" + }, + { + "from": 5304, + "label": "", + "to": 5387, + "category": "related" + }, + { + "from": 5300, + "label": "", + "to": 5301, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 5304, + "label": "", + "to": 5305, + "category": "related" + }, + { + "from": 5306, + "label": "", + "to": 5307, + "category": "related" + }, + { + "from": 5346, + "label": "", + "to": 5309, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5311, + "category": "related" + }, + { + "from": 5312, + "label": "", + "to": 5313, + "category": "related" + }, + { + "from": 5346, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5317, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5319, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5321, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5325, + "category": "related" + }, + { + "from": 5326, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5329, + "category": "related" + }, + { + "from": 5330, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5332, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5335, + "category": "related" + }, + { + "from": 5336, + "label": "", + "to": 5337, + "category": "related" + }, + { + "from": 5338, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5340, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5342, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5344, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5346, + "label": "", + "to": 5667, + "category": "related" + }, + { + "from": 5348, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 5351, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5354, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5356, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5358, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5387, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 5723, + "category": "related" + }, + { + "from": 5366, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5368, + "label": "", + "to": 5369, + "category": "related" + }, + { + "from": 5382, + "label": "", + "to": 5371, + "category": "related" + }, + { + "from": 5372, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5374, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 5377, + "category": "related" + }, + { + "from": 5378, + "label": "", + "to": 5387, + "category": "related" + }, + { + "from": 5380, + "label": "", + "to": 5387, + "category": "related" + }, + { + "from": 5382, + "label": "", + "to": 5383, + "category": "related" + }, + { + "from": 5384, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5386, + "label": "", + "to": 5387, + "category": "related" + }, + { + "from": 5388, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5390, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5392, + "label": "", + "to": 5393, + "category": "related" + }, + { + "from": 5394, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5398, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5400, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5402, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5404, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5406, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5408, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5410, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5412, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5414, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5416, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5418, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5422, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5602, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5426, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5428, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5431, + "category": "related" + }, + { + "from": 5432, + "label": "", + "to": 5433, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5935, + "category": "related" + }, + { + "from": 5446, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 5444, + "label": "", + "to": 5443, + "category": "related" + }, + { + "from": 5444, + "label": "", + "to": 5891, + "category": "related" + }, + { + "from": 5446, + "label": "", + "to": 5447, + "category": "related" + }, + { + "from": 5448, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 5450, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 5452, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 5668, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5456, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 6090, + "label": "", + "to": 5459, + "category": "related" + }, + { + "from": 5970, + "label": "", + "to": 5461, + "category": "related" + }, + { + "from": 6090, + "label": "", + "to": 5463, + "category": "related" + }, + { + "from": 5464, + "label": "", + "to": 5465, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5467, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5469, + "category": "related" + }, + { + "from": 5470, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5472, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5475, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5477, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5479, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5481, + "category": "related" + }, + { + "from": 5482, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5484, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5486, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5488, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5490, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5492, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5495, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5497, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5499, + "category": "related" + }, + { + "from": 5500, + "label": "", + "to": 5515, + "category": "related" + }, + { + "from": 5502, + "label": "", + "to": 5515, + "category": "related" + }, + { + "from": 5504, + "label": "", + "to": 5505, + "category": "related" + }, + { + "from": 5506, + "label": "", + "to": 5507, + "category": "related" + }, + { + "from": 5508, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5511, + "category": "related" + }, + { + "from": 5512, + "label": "", + "to": 5513, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5515, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5517, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5519, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5521, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5523, + "category": "related" + }, + { + "from": 5538, + "label": "", + "to": 5525, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5527, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5529, + "category": "related" + }, + { + "from": 5530, + "label": "", + "to": 5531, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5533, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5537, + "category": "related" + }, + { + "from": 5538, + "label": "", + "to": 5539, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5541, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5543, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5545, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5547, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5549, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5551, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5553, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 5555, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5557, + "category": "related" + }, + { + "from": 5558, + "label": "", + "to": 5585, + "category": "related" + }, + { + "from": 5560, + "label": "", + "to": 5585, + "category": "related" + }, + { + "from": 5562, + "label": "", + "to": 5585, + "category": "related" + }, + { + "from": 5564, + "label": "", + "to": 5571, + "category": "related" + }, + { + "from": 5566, + "label": "", + "to": 5585, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 5569, + "category": "related" + }, + { + "from": 5582, + "label": "", + "to": 5571, + "category": "related" + }, + { + "from": 5572, + "label": "", + "to": 5585, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 5575, + "category": "related" + }, + { + "from": 5576, + "label": "", + "to": 5577, + "category": "related" + }, + { + "from": 5578, + "label": "", + "to": 5579, + "category": "related" + }, + { + "from": 5580, + "label": "", + "to": 5585, + "category": "related" + }, + { + "from": 5582, + "label": "", + "to": 5583, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 5585, + "category": "related" + }, + { + "from": 5588, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5588, + "label": "", + "to": 5589, + "category": "related" + }, + { + "from": 5744, + "label": "", + "to": 5591, + "category": "related" + }, + { + "from": 5592, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 5594, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 5598, + "label": "", + "to": 5597, + "category": "related" + }, + { + "from": 5598, + "label": "", + "to": 5599, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 5602, + "label": "", + "to": 5603, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5605, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5607, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5609, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5611, + "category": "related" + }, + { + "from": 5612, + "label": "", + "to": 5613, + "category": "related" + }, + { + "from": 5614, + "label": "", + "to": 5615, + "category": "related" + }, + { + "from": 5616, + "label": "", + "to": 5659, + "category": "related" + }, + { + "from": 5618, + "label": "", + "to": 5619, + "category": "related" + }, + { + "from": 5620, + "label": "", + "to": 5653, + "category": "related" + }, + { + "from": 5622, + "label": "", + "to": 5653, + "category": "related" + }, + { + "from": 5624, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5627, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5629, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5631, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5633, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5635, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5637, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5639, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5641, + "category": "related" + }, + { + "from": 5642, + "label": "", + "to": 5653, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5645, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5647, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5649, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5652, + "label": "", + "to": 5653, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5655, + "category": "related" + }, + { + "from": 5656, + "label": "", + "to": 5657, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5659, + "category": "related" + }, + { + "from": 5660, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5662, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5928, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5722, + "label": "", + "to": 5667, + "category": "related" + }, + { + "from": 5668, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5670, + "label": "", + "to": 5671, + "category": "related" + }, + { + "from": 5672, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5674, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5696, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5678, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5848, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5682, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5684, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5686, + "label": "", + "to": 5697, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5689, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5691, + "category": "related" + }, + { + "from": 5692, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5694, + "label": "", + "to": 5695, + "category": "related" + }, + { + "from": 5696, + "label": "", + "to": 5697, + "category": "related" + }, + { + "from": 5698, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5701, + "category": "related" + }, + { + "from": 5702, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5704, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5706, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5708, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5710, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5713, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5715, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5717, + "category": "related" + }, + { + "from": 5718, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5720, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5722, + "label": "", + "to": 5723, + "category": "related" + }, + { + "from": 5724, + "label": "", + "to": 5725, + "category": "related" + }, + { + "from": 5728, + "label": "", + "to": 5727, + "category": "related" + }, + { + "from": 5728, + "label": "", + "to": 5729, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5731, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5733, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5735, + "category": "related" + }, + { + "from": 5744, + "label": "", + "to": 5737, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5739, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5741, + "category": "related" + }, + { + "from": 5742, + "label": "", + "to": 5743, + "category": "related" + }, + { + "from": 5744, + "label": "", + "to": 5745, + "category": "related" + }, + { + "from": 5746, + "label": "", + "to": 5747, + "category": "related" + }, + { + "from": 5748, + "label": "", + "to": 5749, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5751, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5753, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5755, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5757, + "category": "related" + }, + { + "from": 5758, + "label": "", + "to": 5759, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5761, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5763, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5765, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5767, + "category": "related" + }, + { + "from": 5786, + "label": "", + "to": 5769, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5771, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5773, + "category": "related" + }, + { + "from": 5774, + "label": "", + "to": 5775, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5777, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5779, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5781, + "category": "related" + }, + { + "from": 5782, + "label": "", + "to": 5783, + "category": "related" + }, + { + "from": 5784, + "label": "", + "to": 5785, + "category": "related" + }, + { + "from": 5786, + "label": "", + "to": 5787, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 5789, + "category": "related" + }, + { + "from": 5792, + "label": "", + "to": 5791, + "category": "related" + }, + { + "from": 5792, + "label": "", + "to": 5793, + "category": "related" + }, + { + "from": 5794, + "label": "", + "to": 5807, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5797, + "category": "related" + }, + { + "from": 5798, + "label": "", + "to": 5799, + "category": "related" + }, + { + "from": 5800, + "label": "", + "to": 5807, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 5858, + "label": "", + "to": 5807, + "category": "related" + }, + { + "from": 5806, + "label": "", + "to": 5807, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5809, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 5811, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 5813, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 5815, + "category": "related" + }, + { + "from": 5820, + "label": "", + "to": 5817, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 5819, + "category": "related" + }, + { + "from": 5820, + "label": "", + "to": 5821, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 5823, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 5825, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 5827, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 5829, + "category": "related" + }, + { + "from": 5830, + "label": "", + "to": 5831, + "category": "related" + }, + { + "from": 6041, + "label": "", + "to": 5833, + "category": "related" + }, + { + "from": 5834, + "label": "", + "to": 5835, + "category": "related" + }, + { + "from": 5836, + "label": "", + "to": 5837, + "category": "related" + }, + { + "from": 5838, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5840, + "label": "", + "to": 5841, + "category": "related" + }, + { + "from": 5842, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5844, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5846, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5848, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5850, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5852, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5854, + "label": "", + "to": 5855, + "category": "related" + }, + { + "from": 5874, + "label": "", + "to": 5857, + "category": "related" + }, + { + "from": 5858, + "label": "", + "to": 5880, + "category": "related" + }, + { + "from": 5860, + "label": "", + "to": 5861, + "category": "related" + }, + { + "from": 5874, + "label": "", + "to": 5863, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5865, + "category": "related" + }, + { + "from": 5874, + "label": "", + "to": 5867, + "category": "related" + }, + { + "from": 5886, + "label": "", + "to": 5869, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5871, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 5873, + "category": "related" + }, + { + "from": 5874, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5876, + "label": "", + "to": 5877, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 5879, + "category": "related" + }, + { + "from": 5880, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 5883, + "category": "related" + }, + { + "from": 5884, + "label": "", + "to": 5885, + "category": "related" + }, + { + "from": 5886, + "label": "", + "to": 5887, + "category": "related" + }, + { + "from": 5888, + "label": "", + "to": 5889, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5891, + "category": "related" + }, + { + "from": 5892, + "label": "", + "to": 5893, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5994, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5897, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5899, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5901, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5903, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5905, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 5907, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5911, + "category": "related" + }, + { + "from": 5910, + "label": "", + "to": 5911, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5913, + "category": "related" + }, + { + "from": 5914, + "label": "", + "to": 5915, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5917, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5919, + "category": "related" + }, + { + "from": 5920, + "label": "", + "to": 5921, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5923, + "category": "related" + }, + { + "from": 5924, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5926, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5928, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5931, + "category": "related" + }, + { + "from": 5932, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5934, + "label": "", + "to": 5935, + "category": "related" + }, + { + "from": 5936, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5938, + "label": "", + "to": 5939, + "category": "related" + }, + { + "from": 5940, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5944, + "label": "", + "to": 5947, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5947, + "category": "related" + }, + { + "from": 5948, + "label": "", + "to": 5949, + "category": "related" + }, + { + "from": 5950, + "label": "", + "to": 5951, + "category": "related" + }, + { + "from": 5952, + "label": "", + "to": 5953, + "category": "related" + }, + { + "from": 5996, + "label": "", + "to": 5955, + "category": "related" + }, + { + "from": 5956, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5958, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5960, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 6087, + "label": "", + "to": 5963, + "category": "related" + }, + { + "from": 5964, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5966, + "label": "", + "to": 5967, + "category": "related" + }, + { + "from": 5968, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5970, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5972, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5974, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 6087, + "label": "", + "to": 5977, + "category": "related" + }, + { + "from": 5978, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5980, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5982, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5984, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5986, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5988, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5990, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5992, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5994, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5996, + "label": "", + "to": 5997, + "category": "related" + }, + { + "from": 5998, + "label": "", + "to": 6001, + "category": "related" + }, + { + "from": 6000, + "label": "", + "to": 6001, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 6106, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6107, + "label": "", + "to": 6087, + "category": "related" + }, + { + "from": 6108, + "label": "", + "to": 6093, + "category": "related" + }, + { + "from": 6087, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 6093, + "category": "related" + }, + { + "from": 6104, + "label": "", + "to": 6093, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 6093, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 6112, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 6084, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 6101, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 6093, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 6072, + "category": "related" + }, + { + "from": 6104, + "label": "", + "to": 6112, + "category": "related" + }, + { + "from": 6108, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 6101, + "category": "related" + }, + { + "from": 6106, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6099, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6107, + "label": "", + "to": 6112, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 6041, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 6112, + "category": "related" + }, + { + "from": 6099, + "label": "", + "to": 6093, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6108, + "label": "", + "to": 6102, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 6087, + "category": "related" + }, + { + "from": 6097, + "label": "", + "to": 6101, + "category": "related" + }, + { + "from": 6080, + "label": "", + "to": 6087, + "category": "related" + }, + { + "from": 6093, + "label": "", + "to": 6087, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 6106, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 6108, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 6104, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 6107, + "category": "related" + }, + { + "from": 6106, + "label": "", + "to": 6080, + "category": "related" + }, + { + "from": 6080, + "label": "", + "to": 6084, + "category": "related" + }, + { + "from": 6072, + "label": "", + "to": 6101, + "category": "related" + }, + { + "from": 6106, + "label": "", + "to": 6084, + "category": "related" + }, + { + "from": 6076, + "label": "", + "to": 6104, + "category": "related" + }, + { + "from": 6099, + "label": "", + "to": 6111, + "category": "related" + }, + { + "from": 6080, + "label": "", + "to": 6101, + "category": "related" + }, + { + "from": 6106, + "label": "", + "to": 6102, + "category": "related" + }, + { + "from": 6084, + "label": "", + "to": 6107, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 6087, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 6112, + "category": "related" + }, + { + "from": 6090, + "label": "", + "to": 6102, + "category": "related" + }, + { + "from": 6107, + "label": "", + "to": 6093, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 6101, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 6097, + "category": "related" + }, + { + "from": 6098, + "label": "", + "to": 6099, + "category": "related" + }, + { + "from": 6111, + "label": "", + "to": 6101, + "category": "related" + }, + { + "from": 6102, + "label": "", + "to": 6104, + "category": "related" + }, + { + "from": 6104, + "label": "", + "to": 6107, + "category": "related" + }, + { + "from": 6106, + "label": "", + "to": 6107, + "category": "related" + }, + { + "from": 6108, + "label": "", + "to": 6112, + "category": "related" + }, + { + "from": 6110, + "label": "", + "to": 6111, + "category": "related" + }, + { + "from": 6112, + "label": "", + "to": 6113, + "category": "related" + } + ], + "edges": [ + { + "id": 6097, + "label": "Punjab", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 1775, + "label": "Location", + "category": "Location", + "ner": null, + "value": 0 + }, + { + "id": 5910, + "label": "Farooq", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2549, + "label": "issued notices", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1557, + "label": "shot", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5, + "label": "is Farooq", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6112, + "label": "Pakistan", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 8, + "label": "SOE", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4535, + "label": "Organization", + "category": "Organization", + "ner": null, + "value": 0 + }, + { + "id": 5774, + "label": "Nawaz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 11, + "label": "criticised judge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6093, + "label": "PTI", + "category": "other", + "ner": "ORG", + "value": "ORG" + }, + { + "id": 14, + "label": "the World Bank", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 16, + "label": "Fawad Chaudhry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6113, + "label": "Person", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 18, + "label": "Moonis Elahi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 20, + "label": "20pc", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6099, + "label": "SC", + "category": "other", + "ner": "ORG", + "value": "ORG" + }, + { + "id": 5885, + "label": "take", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 24, + "label": "WMO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 26, + "label": "the Punjab Assembly", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5014, + "label": "it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 29, + "label": "becomes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 30, + "label": "the apex court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 32, + "label": "Alam", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 33, + "label": "requested wing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 34, + "label": "options", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5997, + "label": "are", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5996, + "label": "prisons", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 37, + "label": "face pressure", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 38, + "label": "IHC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5936, + "label": "by", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1011, + "label": "escorted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2464, + "label": "Gandapur", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3770, + "label": "Authority", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 45, + "label": "issued rules", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 47, + "label": "clear", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 48, + "label": "rulers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5759, + "label": "were", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4716, + "label": "PAC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2962, + "label": "NAB", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 54, + "label": "contractor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 55, + "label": "has nothing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5284, + "label": "voice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5433, + "label": "says", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 68, + "label": "FBR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 59, + "label": "enhanced rate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 61, + "label": "overstepped powers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2468, + "label": "boy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3885, + "label": "injured", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5278, + "label": "decision", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 65, + "label": "accommodated LAHORE", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 66, + "label": "jeeps", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 67, + "label": "sold", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 638, + "label": "SRO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 72, + "label": "AAP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3321, + "label": "knows", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 74, + "label": "Mahil", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2438, + "label": "ADB", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4689, + "label": "continues", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1857, + "label": "described", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 80, + "label": "South Waziristan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 640, + "label": "vaccines", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 83, + "label": "needed whatever", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5742, + "label": "number", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3147, + "label": "jumped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 86, + "label": "Wida", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5785, + "label": "observed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 88, + "label": "LDA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 90, + "label": "HEIs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 108, + "label": "owner", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3907, + "label": "run", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 94, + "label": "EIA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 96, + "label": "clip", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 97, + "label": "features relative", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5410, + "label": "minister", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4055, + "label": "considered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 100, + "label": "Bhutto", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5523, + "label": "came", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4709, + "label": "caused", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5394, + "label": "Naveed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3884, + "label": "Hussain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5517, + "label": "offered prayers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 109, + "label": "sought proceedings", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 110, + "label": "Polls", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3085, + "label": "scheduled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1864, + "label": "inquiry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5977, + "label": "is", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2616, + "label": "group", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 115, + "label": "supporting Gujjar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1204, + "label": "Amritpal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 118, + "label": "bags", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 119, + "label": "distributed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 120, + "label": "tremors", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 121, + "label": "felt", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 122, + "label": "location", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1661, + "label": "starting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2218, + "label": "incident", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5511, + "label": "reported", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5938, + "label": "day", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3137, + "label": "drowned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5260, + "label": "family", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 129, + "label": "visited Market", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 940, + "label": "Aurangzeb", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 131, + "label": "took jibe", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5224, + "label": "Mir", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 133, + "label": "lodged FIR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3402, + "label": "official", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 135, + "label": "wondered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5378, + "label": "operations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2607, + "label": "conducted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4480, + "label": "victims", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2061, + "label": "treated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1580, + "label": "law", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 141, + "label": "take course", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3538, + "label": "officer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 143, + "label": "told officer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 146, + "label": "COAS", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 145, + "label": "remarked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 147, + "label": "appreciated vigil", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3380, + "label": "persons", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 151, + "label": "were residents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5748, + "label": "crop", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5107, + "label": "affected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5325, + "label": "told Dawn", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 156, + "label": "launch", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 157, + "label": "enjoy elections", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3216, + "label": "personnel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 159, + "label": "gather", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 161, + "label": "received information", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4802, + "label": "who", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4503, + "label": "sent", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4595, + "label": "took bodies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3789, + "label": "arranged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 168, + "label": "Jirga", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 169, + "label": "organised protest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 170, + "label": "patrols", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3743, + "label": "remain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 172, + "label": "PCB", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 379, + "label": "agrees", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5588, + "label": "mother", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 177, + "label": "robbed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5404, + "label": "Nisar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 719, + "label": "played role", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 302, + "label": "move", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 181, + "label": "coincides", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3932, + "label": "embassy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3546, + "label": "flyover", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 185, + "label": "constructed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 186, + "label": "sectors", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 188, + "label": "PSB", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2200, + "label": "cabinet", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4604, + "label": "formed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2553, + "label": "trapped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 916, + "label": "applications", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 195, + "label": "awarded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6041, + "label": "CDA", + "category": "other", + "ner": "ORG", + "value": "ORG" + }, + { + "id": 5547, + "label": "wanted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 287, + "label": "acquired", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 200, + "label": "enforcers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 201, + "label": "arrested Baloch", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 203, + "label": "be buzzword", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 204, + "label": "hospital", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 205, + "label": "had units", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2887, + "label": "fired", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5448, + "label": "He", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4943, + "label": "identified", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2662, + "label": "spokesperson", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 211, + "label": "distanced military", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5506, + "label": "people", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4821, + "label": "turned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5990, + "label": "governments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 215, + "label": "succeeded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5944, + "label": "that", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3809, + "label": "provided", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3642, + "label": "act", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 221, + "label": "done", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 224, + "label": "That", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 226, + "label": "Shahwani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1045, + "label": "targeted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3418, + "label": "diseases", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 229, + "label": "registered rise", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 230, + "label": "theft", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 231, + "label": "committed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 232, + "label": "SCO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 233, + "label": "is group", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1958, + "label": "attack", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 235, + "label": "highlighted shift", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 430, + "label": "Commission", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 237, + "label": "observed sense", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4134, + "label": "court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 239, + "label": "suspended operation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3092, + "label": "women", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 242, + "label": "peace", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5175, + "label": "restored", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4242, + "label": "agency", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5855, + "label": "said", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5858, + "label": "parties", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 247, + "label": "shown inclination", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 248, + "label": "nominees", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 249, + "label": "approach them", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4754, + "label": "study", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 251, + "label": "reflected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4770, + "label": "department", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4259, + "label": "trying", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 254, + "label": "machine", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 259, + "label": "collided", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 256, + "label": "car", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 258, + "label": "motorcycles", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 260, + "label": "negligence", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 261, + "label": "resulted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 262, + "label": "programme", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4211, + "label": "approved", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2368, + "label": "accused", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 266, + "label": "main", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2860, + "label": "we", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5771, + "label": "try", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4196, + "label": "committee", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 271, + "label": "issued direction", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3862, + "label": "member", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 629, + "label": "laid area", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5602, + "label": "secretary", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 277, + "label": "visited facility", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 280, + "label": "States", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 279, + "label": "launched operations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 281, + "label": "left door", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5745, + "label": "left", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 284, + "label": "imports", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 285, + "label": "consumed 5.12bn", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 288, + "label": "Land", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4658, + "label": "policemen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 291, + "label": "tasked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 292, + "label": "MNAs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 293, + "label": "attend session", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 295, + "label": "caused disintegration", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1790, + "label": "RDA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3533, + "label": "admitted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 303, + "label": "follows decision", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5054, + "label": "Assembly", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 305, + "label": "demanded decrease", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 306, + "label": "Eidul Fitr", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 309, + "label": "direct FBR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5616, + "label": "he", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 311, + "label": "unseated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 312, + "label": "auction", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5023, + "label": "take place", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5958, + "label": "which", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5887, + "label": "help", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1544, + "label": "teams", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5829, + "label": "conducted operation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 318, + "label": "cell", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 319, + "label": "reactivated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 320, + "label": "Afghan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 322, + "label": "time", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 323, + "label": "was hour", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5128, + "label": "work", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 325, + "label": "given hope", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 396, + "label": "Iftikhar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5892, + "label": "government", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 329, + "label": "providing support", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4728, + "label": "She", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5073, + "label": "stated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5652, + "label": "body", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 333, + "label": "dispatched", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 335, + "label": "bore wounds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5656, + "label": "party", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 337, + "label": "kept award", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 338, + "label": "Member", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2215, + "label": "raised questions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 341, + "label": "constituted committees", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4939, + "label": "posted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 345, + "label": "elected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4888, + "label": "chief", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 347, + "label": "claims life", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 348, + "label": "departments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 349, + "label": "cast votes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3800, + "label": "hospitals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 351, + "label": "treated patients", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1914, + "label": "Nasir", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 353, + "label": "asked authorities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 354, + "label": "Wajahat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 355, + "label": "visited station", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5562, + "label": "share", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 357, + "label": "was billionand", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 358, + "label": "attempts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3964, + "label": "Asif", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 361, + "label": "chose", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2707, + "label": "issued", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 364, + "label": "paper", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5951, + "label": "was", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3810, + "label": "project", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 369, + "label": "mired", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 371, + "label": "received response", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 372, + "label": "Honda", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4857, + "label": "shifted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4060, + "label": "coalition", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 380, + "label": "GUJRAT", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5313, + "label": "suspended", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1660, + "label": "movement", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2014, + "label": "residents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 385, + "label": "struggled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3132, + "label": "youth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1590, + "label": "judges", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5846, + "label": "members", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5081, + "label": "died", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2813, + "label": "staged protest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 833, + "label": "placed order", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4760, + "label": "Chaudhry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5335, + "label": "claimed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 400, + "label": "Passco", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 401, + "label": "buy produce", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5204, + "label": "participants", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 403, + "label": "are Ijaz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3020, + "label": "DPO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 405, + "label": "formed teams", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 406, + "label": "value", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5171, + "label": "stood", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5450, + "label": "leaders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 409, + "label": "reported footfall", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1773, + "label": "stressed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 412, + "label": "Hoti", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5751, + "label": "held meeting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 414, + "label": "parts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 416, + "label": "temperatures", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3075, + "label": "recorded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 418, + "label": "growth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5179, + "label": "be", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5728, + "label": "exports", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5505, + "label": "remained", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 424, + "label": "confrontation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 425, + "label": "created", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4792, + "label": "husband", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 427, + "label": "associated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2156, + "label": "conditions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 429, + "label": "occur", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4383, + "label": "extended date", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 434, + "label": "Institute", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 433, + "label": "started project", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5873, + "label": "closed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2279, + "label": "suggested", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2180, + "label": "price", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3990, + "label": "NA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 441, + "label": "approve expenditure", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4848, + "label": "prayers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 443, + "label": "offered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 444, + "label": "Shaf\u00adiullah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 446, + "label": "encounters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5293, + "label": "stopped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 450, + "label": "trains", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6104, + "label": "the Supreme Court", + "category": "other", + "ner": "ORG", + "value": "ORG" + }, + { + "id": 5920, + "label": "Court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 455, + "label": "comprised justice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1674, + "label": "accident", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2219, + "label": "happened", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5566, + "label": "Ali", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 459, + "label": "joined department", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1974, + "label": "circles", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 461, + "label": "assailed authorities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3204, + "label": "treatment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2150, + "label": "Irfan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 467, + "label": "completed studies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4382, + "label": "Bureau", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 469, + "label": "launched probe", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2640, + "label": "officers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3233, + "label": "working", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 472, + "label": "director", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2379, + "label": "attended meeting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3912, + "label": "Latif", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5569, + "label": "killed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1671, + "label": "detained", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 479, + "label": "had options", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 481, + "label": "exported tonnes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 483, + "label": "stepped efforts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 485, + "label": "moving", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 487, + "label": "presented", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 489, + "label": "appears ninth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 490, + "label": "Sida", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 491, + "label": "feeds Wah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 492, + "label": "attempt", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4995, + "label": "decided", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 496, + "label": "campaign", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5591, + "label": "going", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5418, + "label": "Abbas", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 500, + "label": "audios", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1965, + "label": "released", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5261, + "label": "got", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2622, + "label": "rate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 507, + "label": "enhanced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3779, + "label": "head", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 509, + "label": "led delegation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1603, + "label": "shared", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5186, + "label": "It", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 515, + "label": "merits", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 516, + "label": "circuit", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 518, + "label": "Shehbaz Sharif", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 521, + "label": "contacted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 523, + "label": "reply", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5300, + "label": "areas", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4966, + "label": "bench", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 533, + "label": "restored lease", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 535, + "label": "summoned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2541, + "label": "allowed bail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 539, + "label": "resumed hearing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 540, + "label": "JIT", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 541, + "label": "scrapped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 542, + "label": "Jabal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1353, + "label": "spoke", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5173, + "label": "registered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3242, + "label": "mills", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 547, + "label": "exhausted stocks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5746, + "label": "losses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3921, + "label": "become", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3417, + "label": "implicated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 556, + "label": "constitution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 557, + "label": "revoked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 559, + "label": "miss deadline", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 560, + "label": "cost", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 562, + "label": "sabotage", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5899, + "label": "ruled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 564, + "label": "Organisation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2652, + "label": "countries", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 567, + "label": "navigate impacts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 596, + "label": "stakeholders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 569, + "label": "developed consensus", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 570, + "label": "son", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 572, + "label": "TOBA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 574, + "label": "flight", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 577, + "label": "prayed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 581, + "label": "continued tirade", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 584, + "label": "policy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 585, + "label": "recognise role", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 587, + "label": "using tactics", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5633, + "label": "go", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 591, + "label": "taking patients", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4668, + "label": "action", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1487, + "label": "ordered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5500, + "label": "children", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 595, + "label": "reporting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 597, + "label": "sit", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5099, + "label": "alleged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 601, + "label": "slashed Programme", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 602, + "label": "bombing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 603, + "label": "related", + "category": "related", + "ner": null, + "value": 0 + }, + { + "id": 605, + "label": "solve challenges", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3374, + "label": "criminals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 607, + "label": "kidnapping people", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5697, + "label": "involved", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4390, + "label": "plan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 611, + "label": "chalked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 613, + "label": "envisaged reduction", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 689, + "label": "bound", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1631, + "label": "misused", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 619, + "label": "drawn", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6110, + "label": "Khan", + "category": "other", + "ner": "PERSON", + "value": "PERSON" + }, + { + "id": 623, + "label": "written letters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3426, + "label": "workers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3174, + "label": "Bacha", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 631, + "label": "provided woman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 632, + "label": "melting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2591, + "label": "need", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 643, + "label": "visited Museum", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 980, + "label": "conversation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 646, + "label": "scale", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5952, + "label": "she", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1830, + "label": "position", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 652, + "label": "aim", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 748, + "label": "Yasir", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 656, + "label": "wave", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 658, + "label": "nation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1415, + "label": "live", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2134, + "label": "parents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5620, + "label": "vehicles", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 665, + "label": "left station", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4182, + "label": "notification", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 668, + "label": "cargo", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 669, + "label": "dock", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 671, + "label": "instructed hospitals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 672, + "label": "Ismail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4623, + "label": "confirmed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1066, + "label": "victim", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5237, + "label": "belonged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3274, + "label": "SHO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 678, + "label": "examination", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1444, + "label": "CTD", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4138, + "label": "Officials", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5538, + "label": "ban", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 685, + "label": "imposed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 690, + "label": "players", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 687, + "label": "competing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 691, + "label": "include Push\u00adpika", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 695, + "label": "posted growth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 697, + "label": "carried trade", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 698, + "label": "congregations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5949, + "label": "held", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 702, + "label": "Bajwa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 703, + "label": "held accountable", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4976, + "label": "order", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 707, + "label": "offer opportunities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 709, + "label": "ended lockdown", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1567, + "label": "made efforts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2664, + "label": "appointment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 713, + "label": "illegal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4669, + "label": "allowed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 716, + "label": "Toyota", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 717, + "label": "extend Ltd", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 718, + "label": "agents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1722, + "label": "management", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 721, + "label": "ensured", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 723, + "label": "constituted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 725, + "label": "rid it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 726, + "label": "Chairman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4111, + "label": "complained", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3280, + "label": "Sadiq", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4971, + "label": "insisted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 731, + "label": "contacted Chaudhry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5265, + "label": "took", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 734, + "label": "Sanjrani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 735, + "label": "acting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2636, + "label": "army", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 740, + "label": "Khyber", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1441, + "label": "put", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 745, + "label": "was leader", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 747, + "label": "ordered restoration", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5984, + "label": "We", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5297, + "label": "demanded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2454, + "label": "general", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 754, + "label": "Sheet", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 755, + "label": "ended", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 757, + "label": "having difficulty", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2779, + "label": "accepted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 762, + "label": "Taliban", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2343, + "label": "claimed responsibility", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 765, + "label": "play dayer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4766, + "label": "judgement", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 768, + "label": "witnesses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 769, + "label": "reported conflict", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 771, + "label": "disappeared", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2754, + "label": "others", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 773, + "label": "given aid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5336, + "label": "officials", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5817, + "label": "added", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6107, + "label": "Balochistan", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 783, + "label": "awarded ticket", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3974, + "label": "speaker", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 785, + "label": "asked head", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3707, + "label": "maintained", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5924, + "label": "session", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 789, + "label": "termed orders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 791, + "label": "moved Court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 795, + "label": "recommended", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 794, + "label": "reward", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5914, + "label": "operation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5005, + "label": "began", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 798, + "label": "up", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5907, + "label": "continue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 800, + "label": "actors", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 802, + "label": "fight", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 804, + "label": "encroachments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 805, + "label": "removed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6111, + "label": "Dawn", + "category": "other", + "ner": "PERSON", + "value": "PERSON" + }, + { + "id": 807, + "label": "understands", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5482, + "label": "Mustafa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 810, + "label": "politicians", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 812, + "label": "truck", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5189, + "label": "coming", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 814, + "label": "Ayesha", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 823, + "label": "assured", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 819, + "label": "submitted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4708, + "label": "commissioner", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 821, + "label": "attended Convention", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5948, + "label": "they", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4828, + "label": "Wahab", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4273, + "label": "had", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 829, + "label": "cooperated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 835, + "label": "considering", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 837, + "label": "participating", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 840, + "label": "Germany", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 839, + "label": "help Pakistan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 841, + "label": "cooperate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4042, + "label": "Bank", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 843, + "label": "committed billion", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1535, + "label": "expected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 847, + "label": "assured him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4228, + "label": "unit", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 849, + "label": "conduct survey", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 851, + "label": "reached", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5222, + "label": "Shah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 855, + "label": "accompanied minister", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3563, + "label": "told police", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 860, + "label": "Soomro", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 859, + "label": "filed comments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 861, + "label": "stated this", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 865, + "label": "suffered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3098, + "label": "resident", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 869, + "label": "assisted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3356, + "label": "General", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 871, + "label": "handed flag", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 874, + "label": "houses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1985, + "label": "damaged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 876, + "label": "roofs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3793, + "label": "collapsed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5356, + "label": "bodies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5247, + "label": "rushed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5779, + "label": "taken", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5794, + "label": "Ahmed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6102, + "label": "Lahore", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 885, + "label": "is one", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4996, + "label": "chairman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 887, + "label": "gave presentation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 889, + "label": "booked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 890, + "label": "platform", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3264, + "label": "petitioners", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 893, + "label": "challenged decision", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6098, + "label": "PPP", + "category": "other", + "ner": "ORG", + "value": "ORG" + }, + { + "id": 896, + "label": "national", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 897, + "label": "set free", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 898, + "label": "developers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 899, + "label": "establish interchanges", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6087, + "label": "Sindh", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 2660, + "label": "Haq", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 903, + "label": "hinted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 905, + "label": "declared it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4834, + "label": "Road", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 907, + "label": "corridor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 909, + "label": "be accessroadwhich", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4590, + "label": "Tahir", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 913, + "label": "is person", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 914, + "label": "indicators", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 915, + "label": "playing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 917, + "label": "received", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5374, + "label": "child", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 919, + "label": "had system", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2418, + "label": "sources", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 921, + "label": "confided", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 923, + "label": "asked CBA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 925, + "label": "extended wishes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 927, + "label": "inspected scene", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 929, + "label": "performing duty", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4938, + "label": "Mohammad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3737, + "label": "transferred", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3192, + "label": "Saeed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 939, + "label": "assigned probe", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4826, + "label": "report", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4331, + "label": "noted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 944, + "label": "Isa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5955, + "label": "asked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4901, + "label": "accompanied", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5994, + "label": "needs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 950, + "label": "voices", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5183, + "label": "raised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5330, + "label": "ministry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5125, + "label": "facing shortage", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 955, + "label": "based", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 958, + "label": "prayer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6076, + "label": "ECP", + "category": "other", + "ner": "ORG", + "value": "ORG" + }, + { + "id": 961, + "label": "tells consultation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5091, + "label": "reviewed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 972, + "label": "managers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1758, + "label": "matter", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 975, + "label": "remains", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4789, + "label": "denied", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 982, + "label": "SBC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4219, + "label": "mentioned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 985, + "label": "was solution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5880, + "label": "meeting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 989, + "label": "approved proposal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 994, + "label": "chiefs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4084, + "label": "This", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3720, + "label": "constable", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3501, + "label": "laid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1000, + "label": "rest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4768, + "label": "Department", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1003, + "label": "confiscated bags", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1005, + "label": "intimidating farmers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1007, + "label": "provided digest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2478, + "label": "period", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1009, + "label": "begins", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4328, + "label": "leader", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1013, + "label": "play role", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1016, + "label": "brother", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3567, + "label": "allotted ticket", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1019, + "label": "supported cause", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1021, + "label": "was who", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4036, + "label": "Afridi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4491, + "label": "charged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5830, + "label": "judge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1025, + "label": "appointed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3632, + "label": "plans", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1029, + "label": "appointed assistant", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1031, + "label": "fired 69", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3798, + "label": "event", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1033, + "label": "inaugurated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1607, + "label": "told reporters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1039, + "label": "provide opportunity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1041, + "label": "planned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1044, + "label": "Hidayatullah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1047, + "label": "taken lists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1049, + "label": "reduce productivity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1050, + "label": "some", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4534, + "label": "FIR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1053, + "label": "included section", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1055, + "label": "expressed fears", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1057, + "label": "interviewed aspirants", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1058, + "label": "complications", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1063, + "label": "lost eye", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5354, + "label": "They", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1069, + "label": "empowered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1990, + "label": "stands", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1073, + "label": "made call", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1074, + "label": "Pakhtunkhwa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1077, + "label": "presents challenges", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1079, + "label": "recognise liability", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1081, + "label": "reserved wards", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1083, + "label": "facilitated leaders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3583, + "label": "briefed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1087, + "label": "launch campaign", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3783, + "label": "refused", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1091, + "label": "requested SC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1093, + "label": "directed ministry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5655, + "label": "failed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1097, + "label": "wrote letters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4345, + "label": "warned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5863, + "label": "evacuated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3220, + "label": "total", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1104, + "label": "Talpur", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4495, + "label": "come", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2648, + "label": "one", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5477, + "label": "living", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1113, + "label": "clarified limits", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1115, + "label": "suspended notification", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1119, + "label": "elevated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2703, + "label": "increased", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1126, + "label": "influx", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1128, + "label": "printer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1129, + "label": "tested", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1130, + "label": "travellers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1131, + "label": "tested negative", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6084, + "label": "Islamabad", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 1135, + "label": "inoculated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1136, + "label": "anonymity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1138, + "label": "risk", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4951, + "label": "reduced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3648, + "label": "Usman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1145, + "label": "emerged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1147, + "label": "kidnapped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2965, + "label": "lost lives", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4178, + "label": "three", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1161, + "label": "connected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1154, + "label": "MNA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1156, + "label": "million", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5653, + "label": "recovered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1159, + "label": "functioning", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5504, + "label": "road", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3746, + "label": "statement", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1163, + "label": "quoted her", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1165, + "label": "closed proceedings", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1167, + "label": "receiving guests", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5580, + "label": "team", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4751, + "label": "established", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5724, + "label": "police", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4533, + "label": "shifted him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1173, + "label": "issued statement", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1174, + "label": "residence", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1215, + "label": "raided", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1176, + "label": "Ilyas", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5763, + "label": "disqualified", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5259, + "label": "made", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1247, + "label": "appreciated role", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1183, + "label": "visited institution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4695, + "label": "led", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2366, + "label": "station", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4569, + "label": "registered case", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1192, + "label": "guests", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1193, + "label": "resorted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1196, + "label": "Review", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1198, + "label": "Humna", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1199, + "label": "combined", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3140, + "label": "wife", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1201, + "label": "replied", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2862, + "label": "deceased", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1203, + "label": "was offender", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5715, + "label": "arrested", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1212, + "label": "residences", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4946, + "label": "scores", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1221, + "label": "has travel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2890, + "label": "Residents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4096, + "label": "situation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1225, + "label": "serve", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1227, + "label": "getting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1228, + "label": "ruling", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3215, + "label": "given", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1231, + "label": "tackled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1233, + "label": "evolving", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1305, + "label": "declared", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1239, + "label": "seeks investigation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5003, + "label": "dismissed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5168, + "label": "part", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1243, + "label": "picked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1245, + "label": "disputed reports", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1249, + "label": "finalised list", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1251, + "label": "deliberated improvements", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5382, + "label": "doctors", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1257, + "label": "condemned raid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1259, + "label": "ruled Pakhtunkhwa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1261, + "label": "conducted meeting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1262, + "label": "those", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5784, + "label": "president", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5950, + "label": "Constitution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1267, + "label": "fell victim", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4044, + "label": "Jameel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1277, + "label": "regretted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1279, + "label": "lived", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1802, + "label": "media", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1281, + "label": "highlight issues", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2030, + "label": "colleagues", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1284, + "label": "reservations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4869, + "label": "addressed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1286, + "label": "reason", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1287, + "label": "was cylinder", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1289, + "label": "has history", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1290, + "label": "FIRs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1292, + "label": "Inspector", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1293, + "label": "started investigation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4974, + "label": "Raza", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1295, + "label": "told audience", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1296, + "label": "Haque", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1298, + "label": "Sher", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1300, + "label": "conspiracy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1306, + "label": "Pakhtuns", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1303, + "label": "tolerate terrorism", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1307, + "label": "allow killing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2246, + "label": "Gill", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1309, + "label": "denied ticket", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1312, + "label": "NCJP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1313, + "label": "conducted research", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1314, + "label": "institute", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1315, + "label": "provide training", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1317, + "label": "talked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1319, + "label": "extended support", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1321, + "label": "advised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1323, + "label": "talking", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5393, + "label": "been", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1327, + "label": "directed corporations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1328, + "label": "loans", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1329, + "label": "surged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4554, + "label": "crisis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1331, + "label": "occurs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5309, + "label": "arrived", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1335, + "label": "noticed them", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1337, + "label": "recommended FIR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1338, + "label": "Khokhar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1341, + "label": "offer plots", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1344, + "label": "Ayaz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1346, + "label": "Muzaffar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3640, + "label": "funds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1351, + "label": "assigned duties", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1355, + "label": "making mockery", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1356, + "label": "protests", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3689, + "label": "attended", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3694, + "label": "community", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1361, + "label": "cover government", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1363, + "label": "bombarded him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1364, + "label": "workshop", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4683, + "label": "aimed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4585, + "label": "appeared", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3094, + "label": "father", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1372, + "label": "cracks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1374, + "label": "Butt", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1376, + "label": "passing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6080, + "label": "Khyber Pakhtunkhwa", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 1384, + "label": "owners", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1385, + "label": "encroached areas", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5888, + "label": "authorities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3476, + "label": "administration", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1389, + "label": "fixed rates", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1391, + "label": "imposed section", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1393, + "label": "suspended Ali", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5036, + "label": "land", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3812, + "label": "projects", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1400, + "label": "complaints", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1402, + "label": "hearing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1403, + "label": "covered", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5232, + "label": "case", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6106, + "label": "Imran Khan", + "category": "other", + "ner": "PERSON", + "value": "PERSON" + }, + { + "id": 1924, + "label": "Minhas", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1410, + "label": "Gondal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1413, + "label": "deserved assistance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1416, + "label": "agriculture", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5515, + "label": "suffering", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1744, + "label": "Langer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1420, + "label": "integrity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4837, + "label": "announced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1424, + "label": "Khosa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1428, + "label": "Mughal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4830, + "label": "Maulana", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4164, + "label": "Ishaq", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1436, + "label": "elements", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1437, + "label": "conspiring", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3372, + "label": "militants", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1439, + "label": "carried attack", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1443, + "label": "gunned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1445, + "label": "pursuing goal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1446, + "label": "am", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1448, + "label": "economy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1450, + "label": "goal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1452, + "label": "generation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1454, + "label": "Sector", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1458, + "label": "reality", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1462, + "label": "Vaccine", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1464, + "label": "objective", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5502, + "label": "patient", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1469, + "label": "learn", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1470, + "label": "mpox", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1473, + "label": "sought remand", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1475, + "label": "instituted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1476, + "label": "Little", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2231, + "label": "known", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1479, + "label": "say", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1480, + "label": "results", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2967, + "label": "shown", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4440, + "label": "Council", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1485, + "label": "kept", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4640, + "label": "DC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1488, + "label": "growers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1489, + "label": "raise hue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5446, + "label": "Ahmad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1493, + "label": "opened fire", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3542, + "label": "section", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1495, + "label": "rescued cat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1496, + "label": "entries", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2717, + "label": "contributed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5820, + "label": "lawyer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1513, + "label": "contended", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5492, + "label": "Ltd", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1507, + "label": "imposed restrictions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5834, + "label": "counsel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1517, + "label": "is consideration", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3330, + "label": "spokesman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1526, + "label": "lot", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1530, + "label": "threat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1536, + "label": "facing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1534, + "label": "rainfall", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1537, + "label": "utilised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1538, + "label": "Fawad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1540, + "label": "dialogue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4594, + "label": "Police", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2205, + "label": "deputed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1547, + "label": "recovered pistols", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1549, + "label": "searched house", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5201, + "label": "started", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1559, + "label": "renews call", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1561, + "label": "renewed calls", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1569, + "label": "move court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1571, + "label": "made mistakes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1573, + "label": "believed that", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4725, + "label": "represented", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1577, + "label": "examined area", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1579, + "label": "approach court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1581, + "label": "enforced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1582, + "label": "Satti", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3987, + "label": "sitting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1589, + "label": "initiate proceeding", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1593, + "label": "disclosed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1655, + "label": "shows", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1596, + "label": "E-12", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4913, + "label": "launched", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1601, + "label": "offers recommendations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1608, + "label": "development", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5934, + "label": "country", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1612, + "label": "race", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1613, + "label": "looks affair", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1614, + "label": "Exceptions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1693, + "label": "saying", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1617, + "label": "supporting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1618, + "label": "caretakers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1619, + "label": "stay", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5557, + "label": "told", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1626, + "label": "companies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1632, + "label": "cattle", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6072, + "label": "Sudan", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 1638, + "label": "Siyal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1637, + "label": "confirmed number", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1639, + "label": "proved himself", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1641, + "label": "has categories", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6101, + "label": "Karachi", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 1645, + "label": "experienced number", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1647, + "label": "dealing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1649, + "label": "amending laws", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1651, + "label": "overcome challenge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1653, + "label": "maintains policy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1654, + "label": "research", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1656, + "label": "writer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1657, + "label": "is assistant", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1659, + "label": "avoid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2311, + "label": "wrote letter", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4062, + "label": "Mansoor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1665, + "label": "identified policemen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2396, + "label": "Shahid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3083, + "label": "occurred", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2189, + "label": "took place", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4172, + "label": "area", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1677, + "label": "involved provinces", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1678, + "label": "seat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3917, + "label": "fell", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1680, + "label": "suggestion", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1683, + "label": "followed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1684, + "label": "Azhar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4691, + "label": "paid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1688, + "label": "commerce", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1689, + "label": "reflects one", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1695, + "label": "took him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1697, + "label": "arrested youths", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4969, + "label": "withdrawn", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1702, + "label": "Market", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1701, + "label": "lacked buyers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4173, + "label": "falls", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1705, + "label": "asked RDA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1707, + "label": "considering idea", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1709, + "label": "goes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1711, + "label": "deputed teams", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1713, + "label": "assured party", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1715, + "label": "asked Unit", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1717, + "label": "notified transfer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1721, + "label": "joined police", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1727, + "label": "nominated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1729, + "label": "killing men", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4650, + "label": "Alvi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1737, + "label": "urged countrymen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4866, + "label": "ceremony", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1746, + "label": "batter", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1748, + "label": "Randhawa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5212, + "label": "Khuhro", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1752, + "label": "nazim", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1757, + "label": "arrested Ahmed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3936, + "label": "Iqbal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2985, + "label": "wounded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4637, + "label": "sustained injuries", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1766, + "label": "University", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1765, + "label": "established centre", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1767, + "label": "asked hospitals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3108, + "label": "Bakhtawari", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1771, + "label": "directed governments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1772, + "label": "Educationists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6090, + "label": "India", + "category": "other", + "ner": "GPE", + "value": "GPE" + }, + { + "id": 1777, + "label": "construct corridor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1779, + "label": "made plan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1780, + "label": "Rana", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1784, + "label": "arrangements", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4201, + "label": "completed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1791, + "label": "awarded contract", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3544, + "label": "implementation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2201, + "label": "informed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1797, + "label": "take learning", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1801, + "label": "stopped motorcyclist", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1803, + "label": "was source", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2023, + "label": "participate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1807, + "label": "mentioned speeches", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1813, + "label": "takes that", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1815, + "label": "remanded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5525, + "label": "warns", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1826, + "label": "Wire", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2940, + "label": "increase", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1829, + "label": "benefit tourists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1831, + "label": "declining", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1832, + "label": "Company", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1834, + "label": "teachers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4056, + "label": "majority", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1837, + "label": "had knowledge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1839, + "label": "become tools", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1841, + "label": "play", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1843, + "label": "was market", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1848, + "label": "slot", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1850, + "label": "perceptions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1867, + "label": "shelved", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1868, + "label": "Fishermen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1870, + "label": "judgment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1874, + "label": "clearance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1880, + "label": "everything", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1886, + "label": "society", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1888, + "label": "witnessed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1893, + "label": "promote tourism", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1894, + "label": "delimitation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1896, + "label": "Shafiq", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1898, + "label": "extremism", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3758, + "label": "Party", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1904, + "label": "audio", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1906, + "label": "Bahadur", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1912, + "label": "Sanaullah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5200, + "label": "rally", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1918, + "label": "Conference", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1920, + "label": "Chughtai", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1922, + "label": "CPO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5392, + "label": "Dehwar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5304, + "label": "census", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1929, + "label": "damaged interests", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5398, + "label": "Gul", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2848, + "label": "access", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1936, + "label": "Raees", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1943, + "label": "taken Singh", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1947, + "label": "picketed road", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1949, + "label": "got off", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4704, + "label": "blasts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1953, + "label": "issued alert", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1955, + "label": "announced bounty", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1957, + "label": "started procurement", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1960, + "label": "possibility", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1967, + "label": "including", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3210, + "label": "system", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5307, + "label": "extended", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4126, + "label": "bail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1977, + "label": "have access", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1978, + "label": "professionals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3787, + "label": "set", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1984, + "label": "mob", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1986, + "label": "PESHAWAR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6108, + "label": "PML", + "category": "other", + "ner": "ORG", + "value": "ORG" + }, + { + "id": 1995, + "label": "lend strength", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 1997, + "label": "discuss possibility", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4697, + "label": "learnt", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2001, + "label": "approved appointment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2003, + "label": "apprised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2007, + "label": "discussed arrangements", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2441, + "label": "resolved", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2012, + "label": "Lal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2018, + "label": "approval", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4777, + "label": "found", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4800, + "label": "wing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5798, + "label": "negotiations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3203, + "label": "freed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5174, + "label": "cases", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5274, + "label": "vote", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5731, + "label": "counted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2036, + "label": "individuals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2038, + "label": "raids", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2040, + "label": "Bangle", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2044, + "label": "Information", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2048, + "label": "assets", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2050, + "label": "Khoso", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3388, + "label": "reports", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2062, + "label": "ones", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2064, + "label": "Controller", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2070, + "label": "MPAs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5508, + "label": "condition", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2077, + "label": "took notice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2079, + "label": "told presser", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2081, + "label": "approved establishment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3057, + "label": "prepared", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5624, + "label": "fact", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2087, + "label": "exported rice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2088, + "label": "support", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2089, + "label": "hyped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2091, + "label": "book deficit", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4841, + "label": "faced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2095, + "label": "has vaccine", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2097, + "label": "made progress", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2099, + "label": "provided authorities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2101, + "label": "need training", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2103, + "label": "is member", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2105, + "label": "had position", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2107, + "label": "had children", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2113, + "label": "has ability", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2114, + "label": "deployment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5614, + "label": "KP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2117, + "label": "utilised worth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2118, + "label": "discussions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2120, + "label": "BoR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2124, + "label": "progress", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2126, + "label": "commitments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2130, + "label": "transactions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5402, + "label": "efforts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2136, + "label": "Hamdani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2141, + "label": "cleared dues", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2143, + "label": "handled situation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5279, + "label": "implemented", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2146, + "label": "verdict", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2149, + "label": "functioned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2152, + "label": "DG", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2155, + "label": "decide", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2158, + "label": "Taimoor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2160, + "label": "Wani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2162, + "label": "Relatives", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2167, + "label": "disallowing millers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2168, + "label": "Nawab", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3534, + "label": "samples", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2172, + "label": "stance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2175, + "label": "hold meeting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2181, + "label": "soared", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2183, + "label": "praised efforts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2184, + "label": "Ashraf", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2187, + "label": "alleges", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2190, + "label": "protester", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2194, + "label": "Siddiqi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2197, + "label": "confirmed incident", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2198, + "label": "Kose", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2203, + "label": "lured her", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2736, + "label": "staff", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2206, + "label": "Mirza", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2208, + "label": "insider", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4499, + "label": "was acquaintance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2213, + "label": "consider", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2223, + "label": "nabbed driver", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2225, + "label": "had facilities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2227, + "label": "visited spot", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2228, + "label": "entry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2229, + "label": "was development", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2234, + "label": "Amjad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2235, + "label": "storming", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2238, + "label": "Mazari", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2240, + "label": "Fisheries", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5815, + "label": "informed court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3396, + "label": "Wazir", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3988, + "label": "parliament", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5229, + "label": "pointed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5001, + "label": "emphasised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2255, + "label": "allotted symbols", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2373, + "label": "engaged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2261, + "label": "tweeted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2264, + "label": "house", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4347, + "label": "met", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2265, + "label": "given verdict", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2267, + "label": "criticised detention", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2268, + "label": "Attacking", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2270, + "label": "Rasheed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4786, + "label": "Mann", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2276, + "label": "Amman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2277, + "label": "arrive", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2280, + "label": "aggression", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2282, + "label": "Rahim", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4274, + "label": "notice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2286, + "label": "Adviser", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2290, + "label": "Secretariat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2292, + "label": "Munir", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2294, + "label": "Korai", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2296, + "label": "organiser", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2298, + "label": "Akram", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2302, + "label": "Sherpao", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2304, + "label": "commission", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2933, + "label": "shot dead", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2312, + "label": "32pc", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2825, + "label": "showed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2316, + "label": "CD70", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2572, + "label": "Zardari", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2322, + "label": "leaks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5966, + "label": "facilities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2327, + "label": "purchase oil", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2329, + "label": "buy fuels", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2786, + "label": "groups", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2334, + "label": "Zafar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2336, + "label": "coaches", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2338, + "label": "highways", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2341, + "label": "wishes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2344, + "label": "crime", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2346, + "label": "data", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2349, + "label": "has deaths", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2351, + "label": "established sites", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2355, + "label": "violation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2356, + "label": "incubators", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2358, + "label": "Report", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4417, + "label": "continued", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2371, + "label": "found body", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2375, + "label": "conducted raids", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2381, + "label": "performed groundbreaking", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2383, + "label": "got assemblies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2385, + "label": "launched campaign", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2386, + "label": "cousin", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2388, + "label": "Mohsin", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2391, + "label": "directed Ministry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2932, + "label": "man", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2394, + "label": "spillways", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2407, + "label": "opened", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2397, + "label": "told minister", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2399, + "label": "used language", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2402, + "label": "several", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2405, + "label": "expressed disconcertment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2406, + "label": "crossings", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2705, + "label": "deployed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2412, + "label": "Magsi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2414, + "label": "KARACHI", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4788, + "label": "Lathani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5598, + "label": "issue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2424, + "label": "Hazrat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2426, + "label": "Com\u00admission", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4778, + "label": "Awan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5674, + "label": "force", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2433, + "label": "torched hideouts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2435, + "label": "equipped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2436, + "label": "Pervaiz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2440, + "label": "issues", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4006, + "label": "PM", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2444, + "label": "Jaklenec", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5400, + "label": "Elahi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2450, + "label": "insiders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2452, + "label": "Riaz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2456, + "label": "Humayun", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2458, + "label": "DIG", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2460, + "label": "Wajid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2462, + "label": "Shaikh", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5388, + "label": "petition", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5583, + "label": "assaulted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3139, + "label": "gone", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2474, + "label": "Bareech", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2476, + "label": "Sahito", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2480, + "label": "Atlas", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2482, + "label": "Bali", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2484, + "label": "Haroon", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2487, + "label": "release funds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2491, + "label": "cut", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2493, + "label": "allo\u00adwed imports", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2494, + "label": "valley", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2497, + "label": "deployed personnel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2499, + "label": "shifted injured", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2501, + "label": "issuing statements", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2502, + "label": "interest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2503, + "label": "created impression", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2505, + "label": "linked incident", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2507, + "label": "visiting areas", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2509, + "label": "told media", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5495, + "label": "build houses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2515, + "label": "serving", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4706, + "label": "city", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2519, + "label": "arrested Siddiqullah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2521, + "label": "arrested lifters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2523, + "label": "destroyed hideouts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2525, + "label": "restrain respondents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2527, + "label": "rejected petition", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2531, + "label": "direct ECP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2533, + "label": "ordered investigation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5165, + "label": "directed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2537, + "label": "allow", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2539, + "label": "compelled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2543, + "label": "sent judge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2545, + "label": "acquitted collector", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2547, + "label": "passed order", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2551, + "label": "leave stone", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2554, + "label": "citizens", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2555, + "label": "have status", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2559, + "label": "devised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2560, + "label": "horses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2561, + "label": "make it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2562, + "label": "Murad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2564, + "label": "Yaqoob", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2566, + "label": "Arabia", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2567, + "label": "evacuates scores", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2568, + "label": "Khalid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2828, + "label": "source", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2574, + "label": "Naqi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2576, + "label": "Gilani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2578, + "label": "Tohidi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3622, + "label": "premier", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2584, + "label": "requirements", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2585, + "label": "respected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5058, + "label": "agreement", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2587, + "label": "signed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5800, + "label": "China", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2593, + "label": "announced measures", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2595, + "label": "arrested robber", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2599, + "label": "impounded van", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2601, + "label": "recovered tank", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2603, + "label": "investigating incident", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5380, + "label": "raid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2605, + "label": "destroyed environment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2609, + "label": "destined", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2611, + "label": "distanced themselves", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2618, + "label": "shiwala", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2620, + "label": "Kundi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2624, + "label": "climate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2626, + "label": "mobility", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2628, + "label": "DeSimone", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2630, + "label": "tribunal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2632, + "label": "tapping", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2638, + "label": "Tarar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2642, + "label": "Mehmood", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2646, + "label": "One", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4140, + "label": "Sarwar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2653, + "label": "are Afghanistan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2654, + "label": "Chatta", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2838, + "label": "SSP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2666, + "label": "speakers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2668, + "label": "purpose", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2670, + "label": "representation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2672, + "label": "Marth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2676, + "label": "effectiveness", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2682, + "label": "hailstorm", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2686, + "label": "HRCP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2688, + "label": "Cat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2690, + "label": "structure", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2692, + "label": "request", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2698, + "label": "TTP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2702, + "label": "use", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2704, + "label": "Rawalpindi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2708, + "label": "Ayub", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2713, + "label": "disposed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5390, + "label": "Malik", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2716, + "label": "Mahmood", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2719, + "label": "mobilised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2720, + "label": "business", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2725, + "label": "initiated drive", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2726, + "label": "examinations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2731, + "label": "captured", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2732, + "label": "spell", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2735, + "label": "consulted Washington", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2738, + "label": "rain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2741, + "label": "was place", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2743, + "label": "explained", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2745, + "label": "set checkpoints", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2747, + "label": "registered cases", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2749, + "label": "clashed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2751, + "label": "identified deceased", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2753, + "label": "arrested gamblers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2758, + "label": "youngsters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5047, + "label": "granted bail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2766, + "label": "four", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2769, + "label": "informed Court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2773, + "label": "dispatched bodies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3805, + "label": "martyred", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5408, + "label": "person", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2778, + "label": "result", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2780, + "label": "friend", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2783, + "label": "expressed intention", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2787, + "label": "attacked other", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2788, + "label": "Times", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2790, + "label": "accidents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2793, + "label": "released Rs19.59bn", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2794, + "label": "APP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2797, + "label": "provide prospects", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2799, + "label": "announced package", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2800, + "label": "Raid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2805, + "label": "show", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2803, + "label": "facing crisis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4014, + "label": "documents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2806, + "label": "production", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3413, + "label": "decreased", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2809, + "label": "provided billion", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2811, + "label": "fulfilled conditions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4492, + "label": "People", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2815, + "label": "thronged shops", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5860, + "label": "security", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2817, + "label": "remained concern", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2819, + "label": "poured", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2821, + "label": "asked government", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2822, + "label": "teenager", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2827, + "label": "travelling", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2824, + "label": "List", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2826, + "label": "commuters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5306, + "label": "services", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2831, + "label": "needed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2841, + "label": "preparing maps", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2849, + "label": "is lowest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5744, + "label": "sector", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2853, + "label": "be sector", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2855, + "label": "stifled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2858, + "label": "matters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2864, + "label": "acres", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2866, + "label": "Malaika", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2868, + "label": "Asakawa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3989, + "label": "surrender", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2880, + "label": "Mengal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2882, + "label": "Kango", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2910, + "label": "Zaman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2895, + "label": "told journalists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2897, + "label": "cordoned area", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2898, + "label": "Reports", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2900, + "label": "bureau", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5083, + "label": "committed suicide", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2905, + "label": "set camps", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2906, + "label": "Zulqarnain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2908, + "label": "Zia", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2914, + "label": "objection", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2916, + "label": "Fahim", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2919, + "label": "killed wife", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2926, + "label": "wheat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2929, + "label": "taken control", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2931, + "label": "stabbed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2938, + "label": "water", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2935, + "label": "flow", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2937, + "label": "means", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4530, + "label": "leak", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2942, + "label": "demands", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2943, + "label": "fixing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3540, + "label": "Office", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2946, + "label": "phenomenon", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2947, + "label": "forecast", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2949, + "label": "forecast weather", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3700, + "label": "role", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3093, + "label": "heard", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2963, + "label": "finalised reference", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2969, + "label": "secure job", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2971, + "label": "visited Park", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2973, + "label": "visited Dam", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2975, + "label": "rid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2977, + "label": "tilted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2978, + "label": "another", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2982, + "label": "battles", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2983, + "label": "raged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2987, + "label": "punished", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4269, + "label": "brought", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2992, + "label": "coffins", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2996, + "label": "Abdullah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2997, + "label": "quarrelled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 2999, + "label": "said factors", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3168, + "label": "Syed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3001, + "label": "declared origins", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3008, + "label": "ASP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3010, + "label": "adviser", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3012, + "label": "Tanoli", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3014, + "label": "Kamal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5668, + "label": "petitioner", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3018, + "label": "elders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3022, + "label": "Naek", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3024, + "label": "Kasi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3026, + "label": "Kandhro", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3028, + "label": "woman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3029, + "label": "found dead", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3030, + "label": "Durrani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3036, + "label": "Saddal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3038, + "label": "Abbasi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3043, + "label": "possess land", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3049, + "label": "switched", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3051, + "label": "visited Rukh", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3053, + "label": "left Khartoum", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3055, + "label": "conspired", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5723, + "label": "suffered injuries", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3069, + "label": "staged march", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3071, + "label": "participated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3072, + "label": "explosion", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3074, + "label": "incidents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3076, + "label": "tragedy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4764, + "label": "acts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3081, + "label": "comprises Pindigheb", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4622, + "label": "deaths", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4358, + "label": "CM", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3087, + "label": "urged government", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3818, + "label": "Shehbaz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3100, + "label": "Jamali", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3102, + "label": "Shahnaz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3104, + "label": "Fakhar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3106, + "label": "Rela\u00adtions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3110, + "label": "Moonis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3114, + "label": "Liu", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3116, + "label": "Director", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3118, + "label": "Shoaib", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3120, + "label": "Patel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3125, + "label": "contribute", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3129, + "label": "burnt alive", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3131, + "label": "having year", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3133, + "label": "read narratives", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3134, + "label": "44", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3452, + "label": "Bibi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3142, + "label": "Huzaifa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3144, + "label": "Muhammad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5033, + "label": "was one", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3149, + "label": "gave birth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3150, + "label": "old", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3152, + "label": "arrest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3157, + "label": "reached spot", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3161, + "label": "burnt house", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3171, + "label": "collecting details", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3172, + "label": "auditors", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5696, + "label": "suspects", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3180, + "label": "Relations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3184, + "label": "Batool", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3186, + "label": "Sharma", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3188, + "label": "Ikram", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3190, + "label": "CJ", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3195, + "label": "committing crimes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3198, + "label": "election", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3200, + "label": "Saanjh", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5603, + "label": "called", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3202, + "label": "labourers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3207, + "label": "choked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3221, + "label": "collected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3225, + "label": "surrounded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3231, + "label": "is society", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3239, + "label": "\u2019s", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3237, + "label": "shut", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3243, + "label": "turning", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3245, + "label": "migrate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3246, + "label": "Gohati", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3654, + "label": "Chapman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3277, + "label": "thinking", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3250, + "label": "Babar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3252, + "label": "orders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3253, + "label": "allocate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3254, + "label": "Najmi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3256, + "label": "Talib", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3496, + "label": "IGP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5782, + "label": "Sharif", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3262, + "label": "adding", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3263, + "label": "had say", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3444, + "label": "Billoo", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4148, + "label": "mafia", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3273, + "label": "informed service", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3279, + "label": "call", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3283, + "label": "flooded markets", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5530, + "label": "Imran", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3289, + "label": "accept results", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3291, + "label": "reiterated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3293, + "label": "exploited situation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3295, + "label": "avoid travel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4749, + "label": "wanted elections", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3301, + "label": "enumerated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3303, + "label": "tolerate activities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3305, + "label": "invited", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3307, + "label": "raised funds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3309, + "label": "says need", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3313, + "label": "announces intention", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3315, + "label": "rejected attempts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3317, + "label": "become citizens", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3323, + "label": "anno\u00adunced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3325, + "label": "cautioned tourists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3580, + "label": "districts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3334, + "label": "customer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4752, + "label": "letter", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3338, + "label": "relatives", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3340, + "label": "Zarfashan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3348, + "label": "Establish\u00adment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3350, + "label": "Channa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3352, + "label": "Bilidi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3354, + "label": "Memon", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4280, + "label": "UN", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3364, + "label": "hundreds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3366, + "label": "outlaws", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5926, + "label": "robbers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4611, + "label": "initiated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3395, + "label": "read", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3398, + "label": "terrorism", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3399, + "label": "resurfaced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3400, + "label": "Insaf", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3412, + "label": "cent", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3407, + "label": "handed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5953, + "label": "face", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4428, + "label": "customers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3419, + "label": "increasing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3415, + "label": "misleading public", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3425, + "label": "initiate inquiry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3429, + "label": "allowed imp\u00adort", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3430, + "label": "inflation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3431, + "label": "was level", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3432, + "label": "brigades", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3435, + "label": "agree", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3437, + "label": "claiming", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3443, + "label": "extends assistance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3447, + "label": "allocated million", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3449, + "label": "rejected allegations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3450, + "label": "wages", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4129, + "label": "fixed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3457, + "label": "striving", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3459, + "label": "empanelled hospitals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3461, + "label": "hired official", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4609, + "label": "indicated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3465, + "label": "bring", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3467, + "label": "mandated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3469, + "label": "recovered bags", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3471, + "label": "stick", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3473, + "label": "reached area", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3475, + "label": "told countries", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3477, + "label": "done nothing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3479, + "label": "reclaim billions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3481, + "label": "construct houses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3482, + "label": "universities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3483, + "label": "entrusted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3487, + "label": "arrested persons", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3490, + "label": "friends", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3493, + "label": "solved case", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3495, + "label": "arrested Usman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3497, + "label": "told conference", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3499, + "label": "begun search", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3503, + "label": "arrested youth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3505, + "label": "arrested suspect", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4890, + "label": "patients", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3508, + "label": "PC-2", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3510, + "label": "PC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3516, + "label": "Urging", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3518, + "label": "alerts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3520, + "label": "IO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3522, + "label": "aide", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3524, + "label": "Chandio", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3528, + "label": "Saad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3530, + "label": "Momand", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3536, + "label": "Khawar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3548, + "label": "Tunio", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3550, + "label": "farmer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3552, + "label": "Baloch", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3554, + "label": "Nasar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3556, + "label": "nurses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3561, + "label": "violated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5251, + "label": "revealed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3646, + "label": "province", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3571, + "label": "know", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3573, + "label": "produced grain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3575, + "label": "is Minister", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3581, + "label": "include Dadu", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3585, + "label": "vying", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3586, + "label": "evening", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3799, + "label": "organised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3588, + "label": "rallies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3593, + "label": "re", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3595, + "label": "probe issue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3596, + "label": "TMA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3597, + "label": "had policy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3599, + "label": "shifted bags", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3618, + "label": "comments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3905, + "label": "filed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3609, + "label": "launched inquiry", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3611, + "label": "take measures", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3613, + "label": "constituted committee", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3615, + "label": "misinterpreted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3617, + "label": "organised conference", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3620, + "label": "Jalbani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3624, + "label": "FO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3628, + "label": "Sanwal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3630, + "label": "Zada", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3633, + "label": "moved", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3636, + "label": "Rafique", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3641, + "label": "invested", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5867, + "label": "have", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3644, + "label": "Kaira", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3647, + "label": "reject result", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3650, + "label": "You", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3652, + "label": "ISPR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3656, + "label": "Talks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3658, + "label": "Inayatullah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3660, + "label": "dean", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4284, + "label": "PDMA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3677, + "label": "suspected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3666, + "label": "Gardezi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3668, + "label": "Shehzad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3670, + "label": "Hoodbhoy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5456, + "label": "CJP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3674, + "label": "Hilu", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3679, + "label": "opposed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3685, + "label": "comprises Pakistanis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3691, + "label": "questioned logic", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3693, + "label": "holed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3697, + "label": "risen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3699, + "label": "hold walks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4497, + "label": "defined", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3703, + "label": "visited district", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3704, + "label": "revolution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3709, + "label": "expressed dissatisfaction", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3713, + "label": "emphasised importance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3714, + "label": "charges", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3715, + "label": "perform", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3717, + "label": "retired", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3719, + "label": "took note", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4022, + "label": "journalists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3724, + "label": "themselves", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3727, + "label": "killed man", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3731, + "label": "collected evidence", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3732, + "label": "copies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3735, + "label": "used force", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3739, + "label": "arrested suspects", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3741, + "label": "intensified security", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5136, + "label": "things", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3748, + "label": "mandate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3749, + "label": "stolen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3750, + "label": "Sources", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3752, + "label": "authorityalso", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5792, + "label": "release", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3756, + "label": "nothing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3760, + "label": "Sattar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3762, + "label": "Khattak", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3764, + "label": "Scores", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3765, + "label": "attended Jalsa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3767, + "label": "informed premier", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3769, + "label": "named", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5481, + "label": "managed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3775, + "label": "draw series", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3776, + "label": "ticket", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3781, + "label": "used vehicle", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3791, + "label": "meet team", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3792, + "label": "bridge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3797, + "label": "taking suspects", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3802, + "label": "Peira", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3804, + "label": "soldiers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3997, + "label": "questioned authenticity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3817, + "label": "termed leak", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3819, + "label": "greeted Ahmed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3823, + "label": "tried", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3827, + "label": "ordered departments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3829, + "label": "was part", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3831, + "label": "allocated billion", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3833, + "label": "keeping eye", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3834, + "label": "Shaheen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3838, + "label": "Jappa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3841, + "label": "approved funds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3843, + "label": "setting parks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5311, + "label": "told correspondent", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3847, + "label": "formed committee", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3852, + "label": "Das", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3855, + "label": "filed FIR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3857, + "label": "accepted proposals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3858, + "label": "complainant", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3860, + "label": "Marwat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3865, + "label": "announced Conferment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3866, + "label": "Nayyar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3868, + "label": "Michael", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3873, + "label": "expressed concerns", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3875, + "label": "constructed complex", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4098, + "label": "Siddiqui", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3881, + "label": "plunged Pakistan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3886, + "label": "Nayyer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3888, + "label": "Sarfaraz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3891, + "label": "address concerns", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3892, + "label": "Sumbal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3894, + "label": "Minister", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3897, + "label": "publish Paper", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3902, + "label": "Mehrunnissa", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3906, + "label": "all", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3908, + "label": "year", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3909, + "label": "open", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3916, + "label": "duty", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3911, + "label": "takes precedence", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3914, + "label": "collection", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3915, + "label": "was million", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3918, + "label": "investment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3922, + "label": "Sammo", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3928, + "label": "dealer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3930, + "label": "doctor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3934, + "label": "Spektor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3938, + "label": "Farhan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3940, + "label": "Paediatricians", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3943, + "label": "dissolve assemblies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3945, + "label": "compromise", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3947, + "label": "attend meeting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3949, + "label": "clarified", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3953, + "label": "established platform", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3957, + "label": "see outcome", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3959, + "label": "rejected census", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3961, + "label": "presented agenda", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3965, + "label": "criticised minister", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3967, + "label": "conducted rally", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5095, + "label": "be loser", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3971, + "label": "wants elections", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3972, + "label": "funeral", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3975, + "label": "wrote", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3977, + "label": "has objections", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3979, + "label": "rejected decision", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3982, + "label": "encounter", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3984, + "label": "polls", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3991, + "label": "meet", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5970, + "label": "candidates", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 3995, + "label": "directed superintendent", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5406, + "label": "ex", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5049, + "label": "used", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4320, + "label": "percent", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4003, + "label": "do justice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4007, + "label": "ordered Authority", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4011, + "label": "extended bail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4015, + "label": "sought", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4016, + "label": "moot", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4019, + "label": "forwarded application", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4025, + "label": "thanked governments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4026, + "label": "judiciary", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4027, + "label": "ridiculing Assembly", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4029, + "label": "informed meeting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4031, + "label": "said judiciary", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4033, + "label": "taken vote", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4035, + "label": "called what", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4040, + "label": "Chattha", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4048, + "label": "Dashti", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4294, + "label": "Sindhu", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4058, + "label": "Nayab", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4064, + "label": "Khatyal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5622, + "label": "Rehman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4069, + "label": "sought measures", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4071, + "label": "induced Cabinet", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4073, + "label": "continue work", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4075, + "label": "step efforts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4476, + "label": "authority", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4081, + "label": "admit", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4086, + "label": "MD", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4089, + "label": "screened passenegrs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4106, + "label": "Akbar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4095, + "label": "contesting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4097, + "label": "prompt labourers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4468, + "label": "Amin", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4110, + "label": "candidate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4112, + "label": "Sadia", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4693, + "label": "returned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4115, + "label": "is architect", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4117, + "label": "treat Karachi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4118, + "label": "tenure", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4121, + "label": "provided opportunity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4123, + "label": "acquitted accused", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4125, + "label": "directed parties", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4128, + "label": "May", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4132, + "label": "practice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4146, + "label": "Lucman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5025, + "label": "dealt", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4154, + "label": "boards", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4156, + "label": "ECC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4158, + "label": "Feroz", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4160, + "label": "Qureshi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4162, + "label": "Akber", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4167, + "label": "has heavyweights", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4170, + "label": "manufacturing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4171, + "label": "growing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4174, + "label": "Yaseen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4176, + "label": "sellers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4180, + "label": "cars", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4187, + "label": "comprises secretary", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4189, + "label": "selected plan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4191, + "label": "becoming reason", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4195, + "label": "estimated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4197, + "label": "submits report", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4203, + "label": "take stock", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5233, + "label": "looked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4217, + "label": "preside", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4220, + "label": "IPPs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4223, + "label": "operating", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4222, + "label": "KE", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4264, + "label": "trial", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4225, + "label": "targeting strain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4226, + "label": "turns", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4230, + "label": "rooms", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4235, + "label": "allotted plots", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4241, + "label": "initiated number", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4243, + "label": "start", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4244, + "label": "planning", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4245, + "label": "pursued", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4252, + "label": "Akhtar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4257, + "label": "ended ceasefire", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4263, + "label": "was state", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4268, + "label": "story", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4271, + "label": "winds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4275, + "label": "reads", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4276, + "label": "coverage", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4278, + "label": "timeline", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4282, + "label": "incentives", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4287, + "label": "arrested two", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4289, + "label": "violated sanctity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4290, + "label": "protesters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4293, + "label": "identified rickshaw", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4297, + "label": "rounded persons", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4305, + "label": "is phenomenon", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4308, + "label": "PBS", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4310, + "label": "Aslam", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4312, + "label": "Sabih", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4314, + "label": "Blackman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4317, + "label": "offered information", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4318, + "label": "NIH", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4323, + "label": "seeking help", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4324, + "label": "Tabassum", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4326, + "label": "veterans", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4333, + "label": "announces nominees", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4335, + "label": "expressed confidence", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4337, + "label": "gave overview", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4340, + "label": "President", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4341, + "label": "confirmed involvement", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4342, + "label": "Group", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4346, + "label": "half", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4349, + "label": "present perspective", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4351, + "label": "expressed gratitude", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4353, + "label": "shared progress", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4386, + "label": "list", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4355, + "label": "had exceptions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4356, + "label": "Jat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4387, + "label": "finalised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4362, + "label": "military", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4364, + "label": "lawmaker", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4366, + "label": "Chauhan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4368, + "label": "Hussaini", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4370, + "label": "ACS", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4373, + "label": "held seminar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4374, + "label": "Muqam", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4376, + "label": "office", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4378, + "label": "Call", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4380, + "label": "Shabbar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4384, + "label": "Shinwari", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4388, + "label": "performance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4389, + "label": "dictated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4393, + "label": "murdered Akbar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4394, + "label": "WHO", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4397, + "label": "identified her", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4399, + "label": "waiting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4400, + "label": "war", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4405, + "label": "stopping vehicles", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4407, + "label": "foiled attempt", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4660, + "label": "gangs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4411, + "label": "range", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4415, + "label": "is programmes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4419, + "label": "fixed Rs3,900", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4421, + "label": "let", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4423, + "label": "patronised game", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4425, + "label": "had ties", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4427, + "label": "procure tonnes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5935, + "label": "required", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4433, + "label": "overlooked incidents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4435, + "label": "released amount", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4437, + "label": "transferred Muzaffar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4439, + "label": "develop it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4443, + "label": "set centres", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4444, + "label": "Detho", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4447, + "label": "distancing themselves", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4451, + "label": "taking steps", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4453, + "label": "take initiative", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4455, + "label": "has children", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4456, + "label": "Asim", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4459, + "label": "knew it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4461, + "label": "extending support", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4463, + "label": "power", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5599, + "label": "stand", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4467, + "label": "wants", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4473, + "label": "aligned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4479, + "label": "entertained", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5576, + "label": "suspect", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5250, + "label": "investigation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4489, + "label": "is trial", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4505, + "label": "was trial", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4506, + "label": "registration", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4509, + "label": "estimated support", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4510, + "label": "fire", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4511, + "label": "erupted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4513, + "label": "notes uptick", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4532, + "label": "Rescue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4515, + "label": "shifted Minahil", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4517, + "label": "identified circuits", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4523, + "label": "identified lapses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4525, + "label": "shifted boy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4527, + "label": "celebrated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4529, + "label": "quantified access", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4531, + "label": "affected scores", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4539, + "label": "lodged", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4541, + "label": "launched operation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4543, + "label": "picked women", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4545, + "label": "stabbed Inam", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4547, + "label": "paralyse it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4552, + "label": "shortage", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4549, + "label": "aggravates", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4551, + "label": "shareddeep Pakistan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4553, + "label": "keep visitors", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4555, + "label": "emerging", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4559, + "label": "taken acres", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4561, + "label": "was earnest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4563, + "label": "given award", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4565, + "label": "advised provinces", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4567, + "label": "announced show", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4573, + "label": "visited Wah", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5637, + "label": "worked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4577, + "label": "distributed tickets", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4579, + "label": "had dispute", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4591, + "label": "thanked Malik", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4593, + "label": "threw challenge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4597, + "label": "ask rulers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4599, + "label": "hailing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5447, + "label": "visited centres", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4605, + "label": "have demographer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4882, + "label": "inquiries", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4607, + "label": "linked blaze", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4613, + "label": "pending", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4615, + "label": "handled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5747, + "label": "concentrated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4627, + "label": "expressed reservations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4636, + "label": "DSP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4629, + "label": "shared video", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4633, + "label": "opposed idea", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4635, + "label": "blamed incident", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4639, + "label": "taking him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4642, + "label": "Altaf", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4647, + "label": "spotted car", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4648, + "label": "View", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4653, + "label": "signaled car", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4657, + "label": "recovered bodies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4659, + "label": "included Hussain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4663, + "label": "received lead", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4665, + "label": "registered FIR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4667, + "label": "arrested man", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4671, + "label": "intensified crackdown", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4672, + "label": "torture", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4673, + "label": "amounted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4674, + "label": "US", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4675, + "label": "expressed concern", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4679, + "label": "arrested militant", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4681, + "label": "dated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4688, + "label": "evacuation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5874, + "label": "Pakistanis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4702, + "label": "tankers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4703, + "label": "reached Chaman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4707, + "label": "endured week", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4711, + "label": "rid people", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4713, + "label": "slashed funding", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4715, + "label": "given hand", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4719, + "label": "allowed export", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4721, + "label": "fulfil promises", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4723, + "label": "approved it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4726, + "label": "institutions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4731, + "label": "took power", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4735, + "label": "helped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4737, + "label": "took step", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4739, + "label": "disturb traffic", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4741, + "label": "set target", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4743, + "label": "provided relief", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4745, + "label": "bearing expenses", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4750, + "label": "university", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5387, + "label": "carried", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4758, + "label": "Nimra", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4762, + "label": "Wadhwani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4774, + "label": "evidence", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4783, + "label": "included Hadeed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4794, + "label": "property", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4795, + "label": "caused explosions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4798, + "label": "allegations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4799, + "label": "needed probe", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4816, + "label": "activists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4805, + "label": "assert", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4807, + "label": "curb theft", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4809, + "label": "authorised speaker", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4810, + "label": "motion", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4827, + "label": "published", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4817, + "label": "promote culture", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4819, + "label": "organised events", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4820, + "label": "procession", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4823, + "label": "endeavour", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4825, + "label": "criticised government", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4844, + "label": "employees", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4835, + "label": "blocked", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4838, + "label": "protest", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4842, + "label": "directorate", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4843, + "label": "arranged festivals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4845, + "label": "paid cent", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4847, + "label": "suffer", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4850, + "label": "dastarbandi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4852, + "label": "Competencies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4854, + "label": "mediation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5280, + "label": "jirga", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4861, + "label": "ratified decisions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4865, + "label": "settled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4875, + "label": "asked judges", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4877, + "label": "convened", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4879, + "label": "highlights quandary", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4884, + "label": "round", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4887, + "label": "reached court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4889, + "label": "tender apology", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4891, + "label": "undergoing dialysis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4893, + "label": "remanded him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4895, + "label": "asked Ali", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4897, + "label": "confirmed bail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4899, + "label": "turned request", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4902, + "label": "district", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4903, + "label": "remains graveyard", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4904, + "label": "FM", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4905, + "label": "quoted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4906, + "label": "crackdown", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4908, + "label": "Malekzadh", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4910, + "label": "book", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5312, + "label": "activities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4914, + "label": "rights", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4916, + "label": "Grounds", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4918, + "label": "laws", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4920, + "label": "Adnan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4922, + "label": "Pawar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4924, + "label": "filing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4926, + "label": "Hasnain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4928, + "label": "VC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4936, + "label": "village", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4937, + "label": "ignored", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4944, + "label": "Hassan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4941, + "label": "taking suspect", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4942, + "label": "households", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4945, + "label": "confirmed outbreak", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4947, + "label": "drown Indus", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4948, + "label": "population", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4950, + "label": "BAHAWALPUR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4952, + "label": "payments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4954, + "label": "shedding", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4955, + "label": "remained factor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4956, + "label": "SHOs", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4958, + "label": "jams", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4960, + "label": "utilities", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4963, + "label": "awaited", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4965, + "label": "sees crisis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4973, + "label": "directed Khan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4985, + "label": "wants success", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4987, + "label": "announced rallies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4989, + "label": "approach Court", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4991, + "label": "protesting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4992, + "label": "Day", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 4997, + "label": "given undertaking", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5000, + "label": "Szuromi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5004, + "label": "exercise", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5007, + "label": "drafted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5009, + "label": "termed it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5010, + "label": "changing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5011, + "label": "was domain", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5461, + "label": "include", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5015, + "label": "expanded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5255, + "label": "take notice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5021, + "label": "feels", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5038, + "label": "elections", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5027, + "label": "pushing anyone", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5029, + "label": "directed watchdog", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5030, + "label": "mosques", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5032, + "label": "bearing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5035, + "label": "disbanded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5041, + "label": "had cadre", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5045, + "label": "assemblies", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5048, + "label": "stalwarts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5051, + "label": "ordered taxpayers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5053, + "label": "sought record", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5055, + "label": "adopted resolution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5057, + "label": "taken exercise", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5062, + "label": "demand", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5069, + "label": "is conspiracy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5071, + "label": "reviewed decision", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5075, + "label": "informed Rescue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5077, + "label": "gets", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5079, + "label": "received gifts", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5085, + "label": "was itself", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5087, + "label": "derail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5089, + "label": "taken oath", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5093, + "label": "has 5.4pc", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5097, + "label": "struggling", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5100, + "label": "Murtaza", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5103, + "label": "was brother", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5104, + "label": "Half", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5108, + "label": "Anwar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5115, + "label": "was hurdle", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5117, + "label": "addressed event", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5121, + "label": "adapting", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5123, + "label": "specified", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5126, + "label": "reporter", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5132, + "label": "resolution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5135, + "label": "faced crisis", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5139, + "label": "directed officials", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5141, + "label": "lost wickets", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5142, + "label": "level", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5143, + "label": "subsided", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5164, + "label": "Naqvi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5146, + "label": "MPA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5148, + "label": "Naurang", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5150, + "label": "Qaiser", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5152, + "label": "Bizenjo", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5154, + "label": "Safdar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5156, + "label": "Ghani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5163, + "label": "were result", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5169, + "label": "includes rules", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5170, + "label": "someone", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5177, + "label": "visited Gardens", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5181, + "label": "pointed inconsistency", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5245, + "label": "passed resolution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5807, + "label": "agreed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5191, + "label": "tested positive", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5195, + "label": "hospitalised", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5197, + "label": "forgive any", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5199, + "label": "raised slogans", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5203, + "label": "tolerate mafia", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5205, + "label": "selected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5209, + "label": "wanted end", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5211, + "label": "indu\u00adcted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5213, + "label": "recalled", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5217, + "label": "said what", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5219, + "label": "mobilising workers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5221, + "label": "served", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5225, + "label": "termed allegations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5840, + "label": "justice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5239, + "label": "imposed total", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5241, + "label": "was cause", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5242, + "label": "Qu\u00ad\u00adr\u00adeshi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5249, + "label": "asked SHC", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5253, + "label": "put ball", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5262, + "label": "Palijo", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5266, + "label": "Ramchand", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5268, + "label": "Hashmi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5270, + "label": "Umar", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5271, + "label": "pleaded", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5273, + "label": "heard arguments", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5276, + "label": "Cohen", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5281, + "label": "asked petitioner", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5283, + "label": "missed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5641, + "label": "believed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5294, + "label": "process", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5296, + "label": "Qila", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5301, + "label": "fed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5305, + "label": "was subject", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5346, + "label": "dacoits", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5317, + "label": "assist him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5319, + "label": "approach police", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5321, + "label": "suspend supply", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5326, + "label": "Rabi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5329, + "label": "pay visits", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5332, + "label": "Paracha", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5337, + "label": "seizing stocks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5338, + "label": "Limited", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5340, + "label": "organisers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5342, + "label": "ambassador", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5344, + "label": "stream", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5667, + "label": "shot man", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5348, + "label": "motu", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5351, + "label": "inquires", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5358, + "label": "Javed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5366, + "label": "remarks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5368, + "label": "College", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5369, + "label": "aims", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5371, + "label": "confirmed death", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5372, + "label": "Processions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5377, + "label": "allotted symbol", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5383, + "label": "referred her", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5384, + "label": "actions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5386, + "label": "news", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5412, + "label": "Expert", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5414, + "label": "expert", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5416, + "label": "Nations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5422, + "label": "advisory", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5426, + "label": "Salman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5428, + "label": "spox", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5431, + "label": "established ties", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5432, + "label": "Bashir", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5444, + "label": "Justice", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5443, + "label": "visited Swabi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5891, + "label": "issued order", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5452, + "label": "Neelum", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5459, + "label": "appears", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5463, + "label": "have 79.88pc", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5464, + "label": "Bangladesh", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5465, + "label": "were 166", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5467, + "label": "counted increase", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5469, + "label": "hold custodian", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5470, + "label": "Quint", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5472, + "label": "Dawn.com", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5475, + "label": "led life", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5479, + "label": "accept it", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5484, + "label": "Incidents", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5486, + "label": "MARWAT", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5488, + "label": "driver", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5490, + "label": "floods", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5497, + "label": "tolerate militancy", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5499, + "label": "facilitated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5507, + "label": "evicted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5512, + "label": "channels", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5513, + "label": "broadcasting statements", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5519, + "label": "gearing", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5521, + "label": "fall that", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5527, + "label": "maintained dialogue", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5529, + "label": "described raid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5531, + "label": "concealed assets", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5533, + "label": "made appeal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5537, + "label": "organised marches", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5539, + "label": "was setback", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5541, + "label": "accompanied him", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5543, + "label": "consider ties", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5545, + "label": "returning", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5549, + "label": "obtained bail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5551, + "label": "facing devastation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5553, + "label": "sufficient", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5555, + "label": "appear", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5558, + "label": "video", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5585, + "label": "went", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5560, + "label": "proportion", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5564, + "label": "girls", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5571, + "label": "raped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5582, + "label": "girl", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5572, + "label": "prices", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5575, + "label": "shot sister", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5577, + "label": "confessed Arshat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5578, + "label": "school", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5579, + "label": "is school", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5589, + "label": "looking", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5592, + "label": "FIA", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5594, + "label": "logistics", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5597, + "label": "dumped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5605, + "label": "fared best", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5607, + "label": "introduced concept", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5609, + "label": "witnessed attack", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5611, + "label": "compromise transparency", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5612, + "label": "solution", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5613, + "label": "lay", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5615, + "label": "produced electricity", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5659, + "label": "produced", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5618, + "label": "client", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5619, + "label": "manufactured cigarettes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5627, + "label": "challenged formation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5629, + "label": "sacrificed thousands", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5631, + "label": "create violence", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5635, + "label": "asked aspirants", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5639, + "label": "release members", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5642, + "label": "sisters", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5645, + "label": "Tibbi Asgharabad", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5647, + "label": "lodged case", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5649, + "label": "vowed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5657, + "label": "proceed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5660, + "label": "robber", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5662, + "label": "Bux", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5928, + "label": "LAHORE", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5722, + "label": "motorcyclists", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5670, + "label": "dozens", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5671, + "label": "deprived", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5672, + "label": "attackers", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5678, + "label": "Senator", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5848, + "label": "Rizwan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5682, + "label": "Haider", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5684, + "label": "Sabatkhel", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5686, + "label": "factor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5689, + "label": "undertaken task", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5691, + "label": "do duties", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5692, + "label": "stockpiler", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5694, + "label": "traffic", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5695, + "label": "stressed importance", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5698, + "label": "DIR", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5701, + "label": "arrested smuggler", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5702, + "label": "Ghaziani", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5704, + "label": "Kaludi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5706, + "label": "journalist", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5708, + "label": "absconders", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5710, + "label": "ACE", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5713, + "label": "shifted dead", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5717, + "label": "arrested Afghans", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5718, + "label": "predecessor", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5720, + "label": "ARL", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5725, + "label": "required custody", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5727, + "label": "grew", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5729, + "label": "dipped", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5733, + "label": "attended funeral", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5735, + "label": "confirmed return", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5737, + "label": "thrived", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5739, + "label": "draw reaction", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5741, + "label": "joined event", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5743, + "label": "mentioned leak", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5749, + "label": "hit market", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5753, + "label": "assured nation", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5755, + "label": "monitoring plan", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5757, + "label": "is mastermind", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5758, + "label": "Yasmin", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5761, + "label": "obtained vote", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5765, + "label": "directed hiring", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5767, + "label": "met Salman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5786, + "label": "Rashid", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5769, + "label": "defended Association", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5773, + "label": "State", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5775, + "label": "castigated CJP", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5777, + "label": "was worst", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5781, + "label": "outdone all", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5783, + "label": "touched", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5787, + "label": "warned facilitators", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5789, + "label": "produced cent", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5791, + "label": "was matter", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5793, + "label": "remained point", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5797, + "label": "has number", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5799, + "label": "fail", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5806, + "label": "sides", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5809, + "label": "generates that", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5811, + "label": "have relations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5813, + "label": "canceled lease", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5819, + "label": "argued", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5821, + "label": "told bench", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5823, + "label": "submitted application", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5825, + "label": "approached PCB", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5827, + "label": "assured bench", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5831, + "label": "adjourned", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5833, + "label": "auctioned acres", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5835, + "label": "objected", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5836, + "label": "builder", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5837, + "label": "filed petition", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5838, + "label": "Ghumman", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5841, + "label": "form bench", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5842, + "label": "Sheikh", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5844, + "label": "Agha", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5850, + "label": "Rajewal", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5852, + "label": "MS", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5854, + "label": "diplomat", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5857, + "label": "adjusted", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5861, + "label": "was challenge", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5865, + "label": "discussed loopholes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5886, + "label": "measures", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5869, + "label": "undertaken", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5871, + "label": "discussed process", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5876, + "label": "Delhi", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5877, + "label": "ensure", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5879, + "label": "clear consignment", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5883, + "label": "want recognition", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5884, + "label": "Teams", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5889, + "label": "admit flights", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5893, + "label": "has", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5897, + "label": "declared Imran", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5901, + "label": "takes polls", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5903, + "label": "remanded case", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5905, + "label": "transferred case", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5911, + "label": "passed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5913, + "label": "uphold truth", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5915, + "label": "accelerated", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5917, + "label": "took task", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5919, + "label": "gave decision", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5921, + "label": "upheld conviction", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5923, + "label": "booked deficit", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5931, + "label": "fall", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5932, + "label": "talks", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5939, + "label": "expired", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5940, + "label": "parade", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5947, + "label": "lead", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5956, + "label": "patterns", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5960, + "label": "outfits", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5963, + "label": "asks hospitals", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5964, + "label": "suggestions", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5967, + "label": "provided to", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5968, + "label": "chances", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5972, + "label": "filly", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5974, + "label": "schools", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5978, + "label": "Envoys", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5980, + "label": "works", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5982, + "label": "most", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5986, + "label": "organisations", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5988, + "label": "outcomes", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5992, + "label": "sales", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 5998, + "label": "godown", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6001, + "label": "sealed", + "category": "other", + "ner": null, + "value": 0 + }, + { + "id": 6000, + "label": "premises", + "category": "other", + "ner": null, + "value": 0 + } + ] +} \ No newline at end of file diff --git a/graph_data_from_kg.json b/graph_data_from_kg.json new file mode 100644 index 0000000..f8f91af --- /dev/null +++ b/graph_data_from_kg.json @@ -0,0 +1,39114 @@ +{ + "nodes": { + "0": { + "label": "One Constitution Avenue", + "category": "related" + }, + "1": { + "label": "M/s BNP (Private) Limited", + "category": "related" + }, + "2": { + "label": "M/s BNP", + "category": "related" + }, + "3": { + "label": "Maryam Nawaz", + "category": "related" + }, + "4": { + "label": "Pakistan Muslim League-Nawaz", + "category": "related" + }, + "5": { + "label": "Punjab Chief Minister", + "category": "related" + }, + "6": { + "label": "Wahab Riaz", + "category": "related" + }, + "7": { + "label": "Punjab", + "category": "related" + }, + "8": { + "label": "Wapda", + "category": "related" + }, + "9": { + "label": "Army", + "category": "related" + }, + "10": { + "label": "Navy", + "category": "related" + }, + "11": { + "label": "Pakistan Air Force", + "category": "related" + }, + "12": { + "label": "Syed Yashal Shah", + "category": "related" + }, + "13": { + "label": "Pakistan", + "category": "related" + }, + "14": { + "label": "Laguna Lang Co Golf Club", + "category": "related" + }, + "15": { + "label": "Vietnam", + "category": "related" + }, + "16": { + "label": "Phu Loc", + "category": "related" + }, + "17": { + "label": "Nguyen Minh", + "category": "related" + }, + "18": { + "label": "Le Khanh", + "category": "related" + }, + "19": { + "label": "Jui Shen Lee", + "category": "related" + }, + "20": { + "label": "Taiwan", + "category": "related" + }, + "21": { + "label": "Alethea Gaccion", + "category": "related" + }, + "22": { + "label": "Philippines", + "category": "related" + }, + "23": { + "label": "Saad Habib", + "category": "related" + }, + "24": { + "label": "Aania Farooq", + "category": "related" + }, + "25": { + "label": "a catastrophe blamed on climate change", + "category": "related" + }, + "26": { + "label": "2021", + "category": "related" + }, + "27": { + "label": "climate change", + "category": "related" + }, + "28": { + "label": "greenhouse gas", + "category": "related" + }, + "29": { + "label": "carbon dioxide", + "category": "related" + }, + "30": { + "label": "methane", + "category": "related" + }, + "31": { + "label": "nitrous oxide", + "category": "related" + }, + "32": { + "label": "2020", + "category": "related" + }, + "33": { + "label": "K-3", + "category": "related" + }, + "34": { + "label": "Pakistan Atomic Energy Commission", + "category": "related" + }, + "35": { + "label": "nuclear power plant", + "category": "related" + }, + "36": { + "label": "K-4", + "category": "related" + }, + "37": { + "label": "government", + "category": "related" + }, + "38": { + "label": "public", + "category": "related" + }, + "39": { + "label": "private", + "category": "related" + }, + "40": { + "label": "wheat", + "category": "related" + }, + "41": { + "label": "rice", + "category": "related" + }, + "42": { + "label": "Guard Agricultural Research and Services Ltd", + "category": "related" + }, + "43": { + "label": "Imran Khan", + "category": "related" + }, + "44": { + "label": "PML-Q", + "category": "related" + }, + "45": { + "label": "Shah Mahmood Qureshi", + "category": "related" + }, + "46": { + "label": "Fawad Chaudhry", + "category": "related" + }, + "47": { + "label": "Usman Buzdar", + "category": "related" + }, + "48": { + "label": "PTI", + "category": "related" + }, + "49": { + "label": "Chaudhry Parvez Elahi", + "category": "related" + }, + "50": { + "label": "Usman", + "category": "related" + }, + "51": { + "label": "deadly clashes", + "category": "related" + }, + "52": { + "label": "Sudan", + "category": "related" + }, + "53": { + "label": "United Nations", + "category": "related" + }, + "54": { + "label": "Shehbaz Sharif", + "category": "related" + }, + "55": { + "label": "Prime Minister", + "category": "related" + }, + "56": { + "label": "PML-N", + "category": "related" + }, + "57": { + "label": "Azam Nazir Tarar", + "category": "related" + }, + "58": { + "label": "Mansoor Usman", + "category": "related" + }, + "59": { + "label": "Attorney General", + "category": "related" + }, + "60": { + "label": "Zahid Hamid", + "category": "related" + }, + "61": { + "label": "Supreme Court (Practice and Procedure) Act, 2023", + "category": "related" + }, + "62": { + "label": "2023", + "category": "related" + }, + "63": { + "label": "Pindigheb", + "category": "related" + }, + "64": { + "label": "Attock district", + "category": "related" + }, + "65": { + "label": "Tehsil Headquarters Hospital", + "category": "related" + }, + "66": { + "label": "National Health Programme", + "category": "related" + }, + "67": { + "label": "officials of the health department", + "category": "related" + }, + "68": { + "label": "chiefs of the health department", + "category": "related" + }, + "69": { + "label": "chiefs of government", + "category": "related" + }, + "70": { + "label": "Chach", + "category": "related" + }, + "71": { + "label": "Attock", + "category": "related" + }, + "72": { + "label": "Pakistan Institute of Medical Sciences (Pims)", + "category": "related" + }, + "73": { + "label": "Islamabad", + "category": "related" + }, + "74": { + "label": "Changaiz Khan", + "category": "related" + }, + "75": { + "label": "Ch", + "category": "related" + }, + "76": { + "label": "Punjab Food Department", + "category": "related" + }, + "77": { + "label": "Rawalpindi", + "category": "related" + }, + "78": { + "label": "Naseerabad", + "category": "related" + }, + "79": { + "label": "Hassan Waqar Cheema", + "category": "related" + }, + "80": { + "label": "Waqar Cheema", + "category": "related" + }, + "81": { + "label": "Hasan Abbas Zaheer", + "category": "related" + }, + "82": { + "label": "Global Adviser on Blood Regulation, Availability and Safety", + "category": "related" + }, + "83": { + "label": "Pakistani Medical Association", + "category": "related" + }, + "84": { + "label": "World Health Organisation", + "category": "related" + }, + "85": { + "label": "Jinnah Super market", + "category": "related" + }, + "86": { + "label": "Faisal Mosque", + "category": "related" + }, + "87": { + "label": "Centaurus", + "category": "related" + }, + "88": { + "label": "police commandos", + "category": "related" + }, + "89": { + "label": "D-13", + "category": "related" + }, + "90": { + "label": "Islamabad Capital Territory", + "category": "related" + }, + "91": { + "label": "C-13", + "category": "related" + }, + "92": { + "label": "C-14", + "category": "related" + }, + "93": { + "label": "H-16", + "category": "related" + }, + "94": { + "label": "I-17", + "category": "related" + }, + "95": { + "label": "E-1", + "category": "related" + }, + "96": { + "label": "Karachi", + "category": "related" + }, + "97": { + "label": "Sindh", + "category": "related" + }, + "98": { + "label": "Hyderabad", + "category": "related" + }, + "99": { + "label": "Sukkur", + "category": "related" + }, + "100": { + "label": "Ameet Dev Narwani", + "category": "related" + }, + "101": { + "label": "Saddar", + "category": "related" + }, + "102": { + "label": "Eidul Fitr holidays", + "category": "related" + }, + "103": { + "label": "provincial transport authority", + "category": "related" + }, + "104": { + "label": "Pakistan Telecommunication Authority", + "category": "related" + }, + "105": { + "label": "minister of IT and telecom", + "category": "related" + }, + "106": { + "label": "Pakistan Telecommunication (Re-organisation) Act, 1996", + "category": "related" + }, + "107": { + "label": "telecommunication service", + "category": "related" + }, + "108": { + "label": "terrestrial devices", + "category": "related" + }, + "109": { + "label": "telecommunication", + "category": "related" + }, + "110": { + "label": "5G", + "category": "related" + }, + "111": { + "label": "Shikarpur district", + "category": "related" + }, + "112": { + "label": "Ali Amin Gandapur", + "category": "related" + }, + "113": { + "label": "Pakistan Tehreek-i-Insaf", + "category": "related" + }, + "114": { + "label": "Saifullah Abro", + "category": "related" + }, + "115": { + "label": "Larkana district", + "category": "related" + }, + "116": { + "label": "Shahdadkot", + "category": "related" + }, + "117": { + "label": "Larkana", + "category": "related" + }, + "118": { + "label": "Gaibidero", + "category": "related" + }, + "119": { + "label": "Naudero", + "category": "related" + }, + "120": { + "label": "Warah", + "category": "related" + }, + "121": { + "label": "Gaib", + "category": "related" + }, + "122": { + "label": "Syed Murad Ali Shah", + "category": "related" + }, + "123": { + "label": "Pakistan Peoples Party", + "category": "related" + }, + "124": { + "label": "Zulfiqar Ali Bhutto", + "category": "related" + }, + "125": { + "label": "Nisar Ahmad Khuhro", + "category": "related" + }, + "126": { + "label": "Mir Changez Khan Jamali", + "category": "related" + }, + "127": { + "label": "Mir Mumtaz Hussain Jakhrani", + "category": "related" + }, + "128": { + "label": "Jacobabad", + "category": "related" + }, + "129": { + "label": "Mir Aijaz Jakhrani", + "category": "related" + }, + "130": { + "label": "Bakrani", + "category": "related" + }, + "131": { + "label": "Chandka Medical College Hospital", + "category": "related" + }, + "132": { + "label": "Lark", + "category": "related" + }, + "133": { + "label": "Lahore", + "category": "related" + }, + "134": { + "label": "Sheikhupura district", + "category": "related" + }, + "135": { + "label": "Aamir Ahmad Khan", + "category": "related" + }, + "136": { + "label": "Gujrat", + "category": "related" + }, + "137": { + "label": "Gujranwala", + "category": "related" + }, + "138": { + "label": "Dera GHAZI KHAN", + "category": "related" + }, + "139": { + "label": "Ramsar wildlife sanctuary", + "category": "related" + }, + "140": { + "label": "internationally recognised", + "category": "related" + }, + "141": { + "label": "illegal possession of land grabbers", + "category": "related" + }, + "142": { + "label": "rare flora and fauna", + "category": "related" + }, + "143": { + "label": "rare", + "category": "related" + }, + "144": { + "label": "Supreme Court", + "category": "related" + }, + "145": { + "label": "Chief Justice", + "category": "related" + }, + "146": { + "label": "Umar Ata Bandial", + "category": "related" + }, + "147": { + "label": "Umar", + "category": "related" + }, + "148": { + "label": "a raid by the CTD", + "category": "related" + }, + "149": { + "label": "Lakki Marwat", + "category": "related" + }, + "150": { + "label": "a riverine forest", + "category": "related" + }, + "151": { + "label": "Jamaat-e-Islami", + "category": "related" + }, + "152": { + "label": "Sirajul Haq", + "category": "related" + }, + "153": { + "label": "Gwadar movement", + "category": "related" + }, + "154": { + "label": "Hidayatur Rahman Baloch", + "category": "related" + }, + "155": { + "label": "elections to be held in Punjab", + "category": "related" + }, + "156": { + "label": "the country", + "category": "related" + }, + "157": { + "label": "Dr Nadia Aziz", + "category": "related" + }, + "158": { + "label": "MPA", + "category": "related" + }, + "159": { + "label": "Nadia Aziz", + "category": "related" + }, + "160": { + "label": "Zila Council", + "category": "related" + }, + "161": { + "label": "Zulfikar Ali", + "category": "related" + }, + "162": { + "label": "ZC", + "category": "related" + }, + "163": { + "label": "Zufil", + "category": "related" + }, + "164": { + "label": "Shahalam Bazaar", + "category": "related" + }, + "165": { + "label": "Masud", + "category": "related" + }, + "166": { + "label": "Lahore Electric Supply Company", + "category": "related" + }, + "167": { + "label": "Kasur", + "category": "related" + }, + "168": { + "label": "Okara", + "category": "related" + }, + "169": { + "label": "Sheikhupura", + "category": "related" + }, + "170": { + "label": "Nankana", + "category": "related" + }, + "171": { + "label": "Sadiq Dane High School", + "category": "related" + }, + "172": { + "label": "Bahawalpur", + "category": "related" + }, + "173": { + "label": "Lodhran", + "category": "related" + }, + "174": { + "label": "Dolphin Force", + "category": "related" + }, + "175": { + "label": "Bah", + "category": "related" + }, + "176": { + "label": "Pattoki", + "category": "related" + }, + "177": { + "label": "Pattoki police station", + "category": "related" + }, + "178": { + "label": "THQ Hospital", + "category": "related" + }, + "179": { + "label": "Balochistan", + "category": "related" + }, + "180": { + "label": "Khuzdar", + "category": "related" + }, + "181": { + "label": "BNP-M", + "category": "related" + }, + "182": { + "label": "Baloch", + "category": "related" + }, + "183": { + "label": "seventh Population and Housing Census", + "category": "related" + }, + "184": { + "label": "census", + "category": "related" + }, + "185": { + "label": "population", + "category": "related" + }, + "186": { + "label": "Ratta Amral", + "category": "related" + }, + "187": { + "label": "Rawat", + "category": "related" + }, + "188": { + "label": "Chand Raat", + "category": "related" + }, + "189": { + "label": "Burhan Khan", + "category": "related" + }, + "190": { + "label": "Race Course", + "category": "related" + }, + "191": { + "label": "Munawar", + "category": "related" + }, + "192": { + "label": "Raja Danish", + "category": "related" + }, + "193": { + "label": "garrison city", + "category": "related" + }, + "194": { + "label": "Peshawar Road", + "category": "related" + }, + "195": { + "label": "Rawal", + "category": "related" + }, + "196": { + "label": "President", + "category": "related" + }, + "197": { + "label": "Arif Alvi", + "category": "related" + }, + "198": { + "label": "Palestine", + "category": "related" + }, + "199": { + "label": "India", + "category": "related" + }, + "200": { + "label": "Kashmir", + "category": "related" + }, + "201": { + "label": "Allah Almighty", + "category": "related" + }, + "202": { + "label": "teachings of Allah and the Holy Prophet (PBUH)", + "category": "related" + }, + "203": { + "label": "Nawagai", + "category": "related" + }, + "204": { + "label": "Bajaur tribal district", + "category": "related" + }, + "205": { + "label": "Zagai", + "category": "related" + }, + "206": { + "label": "Saparay", + "category": "related" + }, + "207": { + "label": "Eidul Fitr", + "category": "related" + }, + "208": { + "label": "Eidul on Saturday (today)", + "category": "related" + }, + "209": { + "label": "Eid on Saturday (today)", + "category": "related" + }, + "210": { + "label": "Patrak", + "category": "related" + }, + "211": { + "label": "Kohistan district", + "category": "related" + }, + "212": { + "label": "Kumrat", + "category": "related" + }, + "213": { + "label": "Khyber Pakhtunkhwa Economic Zones Development and Management Company (KPEZDMC)", + "category": "related" + }, + "214": { + "label": "Hattar Economic Zone", + "category": "related" + }, + "215": { + "label": "Khyber Pak", + "category": "related" + }, + "216": { + "label": "Najamul Hassain", + "category": "related" + }, + "217": { + "label": "DSP", + "category": "related" + }, + "218": { + "label": "Yar Hussain Bazaar", + "category": "related" + }, + "219": { + "label": "Swabi", + "category": "related" + }, + "220": { + "label": "Khyber Pakhtunkhwa", + "category": "related" + }, + "221": { + "label": "Khyber Pakhtunk", + "category": "related" + }, + "222": { + "label": "Mardan", + "category": "related" + }, + "223": { + "label": "Nowshera", + "category": "related" + }, + "224": { + "label": "Charsadda", + "category": "related" + }, + "225": { + "label": "Abbottabad", + "category": "related" + }, + "226": { + "label": "Mansehra", + "category": "related" + }, + "227": { + "label": "Shahbazkhel", + "category": "related" + }, + "228": { + "label": "Lakki Marwat district", + "category": "related" + }, + "229": { + "label": "Asifullah", + "category": "related" + }, + "230": { + "label": "protesters", + "category": "related" + }, + "231": { + "label": "police", + "category": "related" + }, + "232": { + "label": "officials", + "category": "related" + }, + "233": { + "label": "Eid", + "category": "related" + }, + "234": { + "label": "Finance Act, 2023", + "category": "related" + }, + "235": { + "label": "Supplementary Finance Act, 2023", + "category": "related" + }, + "236": { + "label": "on-pack", + "category": "related" + }, + "237": { + "label": "cigarettes", + "category": "related" + }, + "238": { + "label": "Supplementary Finance Act", + "category": "related" + }, + "239": { + "label": "Haji Rabri Wala", + "category": "related" + }, + "240": { + "label": "1948", + "category": "related" + }, + "241": { + "label": "Nooruddin", + "category": "related" + }, + "242": { + "label": "Hakeemuddin", + "category": "related" + }, + "243": { + "label": "Naveed", + "category": "related" + }, + "244": { + "label": "Naseem Bano", + "category": "related" + }, + "245": { + "label": "Naseed", + "category": "related" + }, + "246": { + "label": "N", + "category": "related" + }, + "247": { + "label": "King Abdullah Teaching Hospital", + "category": "related" + }, + "248": { + "label": "Battal", + "category": "related" + }, + "249": { + "label": "Chajar", + "category": "related" + }, + "250": { + "label": "Dera Ismail Khan", + "category": "related" + }, + "251": { + "label": "South Waziristan", + "category": "related" + }, + "252": { + "label": "Tank", + "category": "related" + }, + "253": { + "label": "Zarb-i-Azb", + "category": "related" + }, + "254": { + "label": "Kohat tehsil", + "category": "related" + }, + "255": { + "label": "TMA", + "category": "related" + }, + "256": { + "label": "Peshawar", + "category": "related" + }, + "257": { + "label": "Mohmand", + "category": "related" + }, + "258": { + "label": "Khyber", + "category": "related" + }, + "259": { + "label": "Pabbi", + "category": "related" + }, + "260": { + "label": "Qissa Khwani", + "category": "related" + }, + "261": { + "label": "2014 constitution", + "category": "related" + }, + "262": { + "label": "2014", + "category": "related" + }, + "263": { + "label": "a no-confidence vote in April last year", + "category": "related" + }, + "264": { + "label": "restoration of PCB\u2019s 2014 constitution", + "category": "related" + }, + "265": { + "label": "Pakistan Cricket Board", + "category": "related" + }, + "266": { + "label": "2018", + "category": "related" + }, + "267": { + "label": "2022", + "category": "related" + }, + "268": { + "label": "Rode", + "category": "related" + }, + "269": { + "label": "Moga district", + "category": "related" + }, + "270": { + "label": "Jarnail Singh Bhindranwale", + "category": "related" + }, + "271": { + "label": "Shiromani Akali Dal", + "category": "related" + }, + "272": { + "label": "Dibrugarh", + "category": "related" + }, + "273": { + "label": "Assam", + "category": "related" + }, + "274": { + "label": "Bhagwant Mann", + "category": "related" + }, + "275": { + "label": "Aam Aadmi Party", + "category": "related" + }, + "276": { + "label": "Eid economy", + "category": "related" + }, + "277": { + "label": "economic slowdown", + "category": "related" + }, + "278": { + "label": "high inflation in the country", + "category": "related" + }, + "279": { + "label": "20", + "category": "related" + }, + "280": { + "label": "Pakistani universities", + "category": "related" + }, + "281": { + "label": "Pakistan Institute of Development Economics", + "category": "related" + }, + "282": { + "label": "educated", + "category": "related" + }, + "283": { + "label": "political/constitutional crisis", + "category": "related" + }, + "284": { + "label": "elections", + "category": "related" + }, + "285": { + "label": "Pakistan Bureau of Statistics", + "category": "related" + }, + "286": { + "label": "agriculture", + "category": "related" + }, + "287": { + "label": "currency", + "category": "related" + }, + "288": { + "label": "import restrictions", + "category": "related" + }, + "289": { + "label": "economic issues", + "category": "related" + }, + "290": { + "label": "political/constitutional chaos", + "category": "related" + }, + "291": { + "label": "the entire economy is in trouble", + "category": "related" + }, + "292": { + "label": "Sujawal", + "category": "related" + }, + "293": { + "label": "Thatta", + "category": "related" + }, + "294": { + "label": "Th", + "category": "related" + }, + "295": { + "label": "Sindh Assembly", + "category": "related" + }, + "296": { + "label": "Asian Development Bank", + "category": "related" + }, + "297": { + "label": "Masatsugu Asakawa", + "category": "related" + }, + "298": { + "label": "ADB", + "category": "related" + }, + "299": { + "label": "pandemic", + "category": "related" + }, + "300": { + "label": "PM", + "category": "related" + }, + "301": { + "label": "Mar\u00adriyum Aurangzeb", + "category": "related" + }, + "302": { + "label": "Information Minister", + "category": "related" + }, + "303": { + "label": "Khawaja Asif", + "category": "related" + }, + "304": { + "label": "piecemeal elections", + "category": "related" + }, + "305": { + "label": "Saudi Arabia", + "category": "related" + }, + "306": { + "label": "Tarek Fatah", + "category": "related" + }, + "307": { + "label": "1987", + "category": "related" + }, + "308": { + "label": "plan to ban Muslims from entering the United States", + "category": "related" + }, + "309": { + "label": "conspiracy theories", + "category": "related" + }, + "310": { + "label": "Donald Trump", + "category": "related" + }, + "311": { + "label": "mRNA Covid-19 vaccine", + "category": "related" + }, + "312": { + "label": "Pfizer", + "category": "related" + }, + "313": { + "label": "Ana Jaklenec", + "category": "related" + }, + "314": { + "label": "Massachusetts Institute of Technology", + "category": "related" + }, + "315": { + "label": "polio", + "category": "related" + }, + "316": { + "label": "microneedle patch vaccine", + "category": "related" + }, + "317": { + "label": "measles", + "category": "related" + }, + "318": { + "label": "rubella", + "category": "related" + }, + "319": { + "label": "National Assembly", + "category": "related" + }, + "320": { + "label": "Speaker", + "category": "related" + }, + "321": { + "label": "Raja Pervez Ashraf", + "category": "related" + }, + "322": { + "label": "Shamoon Hashmi", + "category": "related" + }, + "323": { + "label": "Additional Secretary", + "category": "related" + }, + "324": { + "label": "law", + "category": "related" + }, + "325": { + "label": "Rawal Lake", + "category": "related" + }, + "326": { + "label": "Murree", + "category": "related" + }, + "327": { + "label": "Capital Development Authority", + "category": "related" + }, + "328": { + "label": "CDA", + "category": "related" + }, + "329": { + "label": "Islamabad police", + "category": "related" + }, + "330": { + "label": "Uber", + "category": "related" + }, + "331": { + "label": "Uber Technologies", + "category": "related" + }, + "332": { + "label": "Uber Technologies Inc.", + "category": "related" + }, + "333": { + "label": "Taxila Museum", + "category": "related" + }, + "334": { + "label": "Taxila", + "category": "related" + }, + "335": { + "label": "Wah Gardens", + "category": "related" + }, + "336": { + "label": "Sher Shah Suri Park", + "category": "related" + }, + "337": { + "label": "Muqbara", + "category": "related" + }, + "338": { + "label": "Rukh", + "category": "related" + }, + "339": { + "label": "Saifi Masjid", + "category": "related" + }, + "340": { + "label": "Korangi", + "category": "related" + }, + "341": { + "label": "Islamabad Hotel", + "category": "related" + }, + "342": { + "label": "Malir Expressway", + "category": "related" + }, + "343": { + "label": "Malir river", + "category": "related" + }, + "344": { + "label": "Malir", + "category": "related" + }, + "345": { + "label": "Do Darya", + "category": "related" + }, + "346": { + "label": "KARACHI", + "category": "related" + }, + "347": { + "label": "Khayaban-i-Shahbaz", + "category": "related" + }, + "348": { + "label": "DHA", + "category": "related" + }, + "349": { + "label": "hanged himself", + "category": "related" + }, + "350": { + "label": "suicide", + "category": "related" + }, + "351": { + "label": "hanging himself", + "category": "related" + }, + "352": { + "label": "Hawkesbay", + "category": "related" + }, + "353": { + "label": "Hub Canal", + "category": "related" + }, + "354": { + "label": "Dr Ruth Pfau Civil Hospital Karachi", + "category": "related" + }, + "355": { + "label": "Gadani", + "category": "related" + }, + "356": { + "label": "Eid holidays", + "category": "related" + }, + "357": { + "label": "Asif Ali Zardari", + "category": "related" + }, + "358": { + "label": "Pakistan Institute of Oceanography", + "category": "related" + }, + "359": { + "label": "province", + "category": "related" + }, + "360": { + "label": "provincial government", + "category": "related" + }, + "361": { + "label": "Sindh Irrigation Minister", + "category": "related" + }, + "362": { + "label": "Jam Khan Shoro", + "category": "related" + }, + "363": { + "label": "Lal Shahbaz Qalandar", + "category": "related" + }, + "364": { + "label": "Sehwan", + "category": "related" + }, + "365": { + "label": "Manjhand", + "category": "related" + }, + "366": { + "label": "Jamshoro branch", + "category": "related" + }, + "367": { + "label": "LUH", + "category": "related" + }, + "368": { + "label": "LU", + "category": "related" + }, + "369": { + "label": "Pakistan Peo\u00adples Party", + "category": "related" + }, + "370": { + "label": "Aseefa Bhutto-Zardari", + "category": "related" + }, + "371": { + "label": "Pakistan Peo\u0219ples Party", + "category": "related" + }, + "372": { + "label": "Syed Khursheed Shah", + "category": "related" + }, + "373": { + "label": "Khursheed Ahmed Junejo", + "category": "related" + }, + "374": { + "label": "Suhail Anwer Siyal", + "category": "related" + }, + "375": { + "label": "P", + "category": "related" + }, + "376": { + "label": "Bilawal Bhutto-Zardari", + "category": "related" + }, + "377": { + "label": "Garro", + "category": "related" + }, + "378": { + "label": "Thatta district", + "category": "related" + }, + "379": { + "label": "Jinnah Postgraduate Medical Complex", + "category": "related" + }, + "380": { + "label": "JPMC", + "category": "related" + }, + "381": { + "label": "treated", + "category": "related" + }, + "382": { + "label": "Sindh Energy Minister", + "category": "related" + }, + "383": { + "label": "PPP", + "category": "related" + }, + "384": { + "label": "Nisar Ahmed Shaikh", + "category": "related" + }, + "385": { + "label": "Abdul Latif Nizamani", + "category": "related" + }, + "386": { + "label": "CBA", + "category": "related" + }, + "387": { + "label": "PDP", + "category": "related" + }, + "388": { + "label": "in 2010", + "category": "related" + }, + "389": { + "label": "Belgium", + "category": "related" + }, + "390": { + "label": "in 2013", + "category": "related" + }, + "391": { + "label": "2013", + "category": "related" + }, + "392": { + "label": "a hung parliament", + "category": "related" + }, + "393": { + "label": "in 2016", + "category": "related" + }, + "394": { + "label": "2016", + "category": "related" + }, + "395": { + "label": "in 2017", + "category": "related" + }, + "396": { + "label": "in 2006", + "category": "related" + }, + "397": { + "label": "2006", + "category": "related" + }, + "398": { + "label": "Mufti Hamid Khan", + "category": "related" + }, + "399": { + "label": "Monday", + "category": "related" + }, + "400": { + "label": "Makhniyal", + "category": "related" + }, + "401": { + "label": "Haripur", + "category": "related" + }, + "402": { + "label": "Azhar Abbasi", + "category": "related" + }, + "403": { + "label": "Khanpur Civil Hospital", + "category": "related" + }, + "404": { + "label": "Gilgit Baltistan", + "category": "related" + }, + "405": { + "label": "Gilgit", + "category": "related" + }, + "406": { + "label": "AJK", + "category": "related" + }, + "407": { + "label": "Azad Kashmir", + "category": "related" + }, + "408": { + "label": "Pakpattan", + "category": "related" + }, + "409": { + "label": "National Highway", + "category": "related" + }, + "410": { + "label": "Chaudhry Shujaat Hussain", + "category": "related" + }, + "411": { + "label": "JUI-F", + "category": "related" + }, + "412": { + "label": "Nawaz Sharif", + "category": "related" + }, + "413": { + "label": "Sardar Riaz Mehmood Khan Mazari", + "category": "related" + }, + "414": { + "label": "Sarda Balakh Sher Mazari", + "category": "related" + }, + "415": { + "label": "Katcha", + "category": "related" + }, + "416": { + "label": "Pakistan People Party", + "category": "related" + }, + "417": { + "label": "Bilawal Bhutto Zardari", + "category": "related" + }, + "418": { + "label": "Yousuf Raza Gilani", + "category": "related" + }, + "419": { + "label": "Makhdoom Ahmad Mahmood", + "category": "related" + }, + "420": { + "label": "Qamar Zaman Kaira", + "category": "related" + }, + "421": { + "label": "Rana Farooq Saeed", + "category": "related" + }, + "422": { + "label": "Syed Hassan Murtaza", + "category": "related" + }, + "423": { + "label": "Bhoay Asal", + "category": "related" + }, + "424": { + "label": "Pattoki Saddar", + "category": "related" + }, + "425": { + "label": "Nainwal", + "category": "related" + }, + "426": { + "label": "Chunian", + "category": "related" + }, + "427": { + "label": "Jinnah Park Metro Station", + "category": "related" + }, + "428": { + "label": "Samiullah", + "category": "related" + }, + "429": { + "label": "Irfan", + "category": "related" + }, + "430": { + "label": "Saharanpur", + "category": "related" + }, + "431": { + "label": "Khushal Town", + "category": "related" + }, + "432": { + "label": "Faisalabad", + "category": "related" + }, + "433": { + "label": "Jhang Road", + "category": "related" + }, + "434": { + "label": "Jhumra Road", + "category": "related" + }, + "435": { + "label": "JB Mullanpur", + "category": "related" + }, + "436": { + "label": "Saqib Nisar", + "category": "related" + }, + "437": { + "label": "chief justice of Pakistan", + "category": "related" + }, + "438": { + "label": "Asghar Joya", + "category": "related" + }, + "439": { + "label": "Shahzain Abbasi", + "category": "related" + }, + "440": { + "label": "Chak", + "category": "related" + }, + "441": { + "label": "Sahiwal", + "category": "related" + }, + "442": { + "label": "Sahiwal district", + "category": "related" + }, + "443": { + "label": "Akbar Ali", + "category": "related" + }, + "444": { + "label": "Sahiwal Teaching Hospital", + "category": "related" + }, + "445": { + "label": "Akbar", + "category": "related" + }, + "446": { + "label": "Taunsa Barrage", + "category": "related" + }, + "447": { + "label": "Kot Addu", + "category": "related" + }, + "448": { + "label": "Sananwan", + "category": "related" + }, + "449": { + "label": "Talal Chaudhry", + "category": "related" + }, + "450": { + "label": "Mary", + "category": "related" + }, + "451": { + "label": "war in Ukraine", + "category": "related" + }, + "452": { + "label": "Syria", + "category": "related" + }, + "453": { + "label": "Ukraine", + "category": "related" + }, + "454": { + "label": "ceasefire with the Pakistani government", + "category": "related" + }, + "455": { + "label": "Neelum-Jhelum hydropower project", + "category": "related" + }, + "456": { + "label": "Water and Power Development Auth\u00adority (Wapda)", + "category": "related" + }, + "457": { + "label": "China Gezhouba Group Company (CGGC)", + "category": "related" + }, + "458": { + "label": "restoration of the hydropower project", + "category": "related" + }, + "459": { + "label": "KhuZDAR/DERA MURAD JAMALI", + "category": "related" + }, + "460": { + "label": "Sheikhri", + "category": "related" + }, + "461": { + "label": "Kalat district", + "category": "related" + }, + "462": { + "label": "Mathari", + "category": "related" + }, + "463": { + "label": "Sibi district", + "category": "related" + }, + "464": { + "label": "Thal Gola", + "category": "related" + }, + "465": { + "label": "Kachhi district", + "category": "related" + }, + "466": { + "label": "Khatan", + "category": "related" + }, + "467": { + "label": "Taftan", + "category": "related" + }, + "468": { + "label": "Bolan River", + "category": "related" + }, + "469": { + "label": "Pervez Khattak", + "category": "related" + }, + "470": { + "label": "Speaker National Assembly", + "category": "related" + }, + "471": { + "label": "Azam Khan", + "category": "related" + }, + "472": { + "label": "Marriyum Aurangzeb", + "category": "related" + }, + "473": { + "label": "Mir Zahoor Hussain Khosa", + "category": "related" + }, + "474": { + "label": "1946", + "category": "related" + }, + "475": { + "label": "Jamhoori Watan Party", + "category": "related" + }, + "476": { + "label": "Balochistan Assembly", + "category": "related" + }, + "477": { + "label": "Mir Jan Mohammad Khan Jamali", + "category": "related" + }, + "478": { + "label": "Mir Saleem Ahmed Khosa", + "category": "related" + }, + "479": { + "label": "Peshawar Institute of Cardiology", + "category": "related" + }, + "480": { + "label": "Hayatabad Medical Complex", + "category": "related" + }, + "481": { + "label": "Fund Retention and Utilisation and Distribution Formula", + "category": "related" + }, + "482": { + "label": "Dandy Darpakhel", + "category": "related" + }, + "483": { + "label": "North Waziristan", + "category": "related" + }, + "484": { + "label": "Kurram Bridge", + "category": "related" + }, + "485": { + "label": "Kachi Qamar", + "category": "related" + }, + "486": { + "label": "Gandi Chowk", + "category": "related" + }, + "487": { + "label": "several operations", + "category": "related" + }, + "488": { + "label": "North W", + "category": "related" + }, + "489": { + "label": "Mulazai", + "category": "related" + }, + "490": { + "label": "Tank district", + "category": "related" + }, + "491": { + "label": "Amakhel", + "category": "related" + }, + "492": { + "label": "Mul", + "category": "related" + }, + "493": { + "label": "Dubair-Ranowali Bridge", + "category": "related" + }, + "494": { + "label": "Karakoram Highway", + "category": "related" + }, + "495": { + "label": "Kaghan valley", + "category": "related" + }, + "496": { + "label": "Maintenance of Public Order Ordinance, 1960", + "category": "related" + }, + "497": { + "label": "1960", + "category": "related" + }, + "498": { + "label": "Mansehra police", + "category": "related" + }, + "499": { + "label": "Malik Khanzada", + "category": "related" + }, + "500": { + "label": "Chairman of the PCB", + "category": "related" + }, + "501": { + "label": "2019 constitution", + "category": "related" + }, + "502": { + "label": "elections for the post of the PCB chairman", + "category": "related" + }, + "503": { + "label": "Chief of Army Staff", + "category": "related" + }, + "504": { + "label": "Asim Munir", + "category": "related" + }, + "505": { + "label": "Afghanistan", + "category": "related" + }, + "506": { + "label": "armed forces", + "category": "related" + }, + "507": { + "label": "the region", + "category": "related" + }, + "508": { + "label": "border", + "category": "related" + }, + "509": { + "label": "Islamia College Peshawar", + "category": "related" + }, + "510": { + "label": "Topi", + "category": "related" + }, + "511": { + "label": "Swabi district", + "category": "related" + }, + "512": { + "label": "Panjpir", + "category": "related" + }, + "513": { + "label": "River Indus", + "category": "related" + }, + "514": { + "label": "Tarbela Dam", + "category": "related" + }, + "515": { + "label": "Khyber Pakhtunkhwa Culture and Tourism Authority", + "category": "related" + }, + "516": { + "label": "Khwaja Khizr", + "category": "related" + }, + "517": { + "label": "Dana Khwa", + "category": "related" + }, + "518": { + "label": "Jozara", + "category": "related" + }, + "519": { + "label": "the valley", + "category": "related" + }, + "520": { + "label": "Eidul Fit", + "category": "related" + }, + "521": { + "label": "PESHAWAR", + "category": "related" + }, + "522": { + "label": "Nathia Gali Park", + "category": "related" + }, + "523": { + "label": "Sajikot waterfall", + "category": "related" + }, + "524": { + "label": "Finance Minister", + "category": "related" + }, + "525": { + "label": "Ishaq Dar", + "category": "related" + }, + "526": { + "label": "Tariq Mehmood Pasha", + "category": "related" + }, + "527": { + "label": "SAPM on Revenue", + "category": "related" + }, + "528": { + "label": "Asim Ahmad", + "category": "related" + }, + "529": { + "label": "Finance Division", + "category": "related" + }, + "530": { + "label": "Tariq", + "category": "related" + }, + "531": { + "label": "Kha\u00adwaja Tariq Rahim", + "category": "related" + }, + "532": { + "label": "Munir Ahmed Khan [judgment]", + "category": "related" + }, + "533": { + "label": "contempt of court", + "category": "related" + }, + "534": { + "label": "Khawaja Tariq Rahim", + "category": "related" + }, + "535": { + "label": "Swat", + "category": "related" + }, + "536": { + "label": "chief secretary", + "category": "related" + }, + "537": { + "label": "Muhammad Azam Khan", + "category": "related" + }, + "538": { + "label": "Minister for Planning and Development", + "category": "related" + }, + "539": { + "label": "federal government", + "category": "related" + }, + "540": { + "label": "federal minister", + "category": "related" + }, + "541": { + "label": "Ahsan Iqbal", + "category": "related" + }, + "542": { + "label": "MQM-P", + "category": "related" + }, + "543": { + "label": "MQM", + "category": "related" + }, + "544": { + "label": "Pakistan Democratic Movement", + "category": "related" + }, + "545": { + "label": "Maulana Fazlur Rehman", + "category": "related" + }, + "546": { + "label": "Aslam Ghauri", + "category": "related" + }, + "547": { + "label": "Saqib Nisar\u2019s audio leak", + "category": "related" + }, + "548": { + "label": "Supreme Judicial Council", + "category": "related" + }, + "549": { + "label": "90 days", + "category": "related" + }, + "550": { + "label": "Chief Justice Bandial", + "category": "related" + }, + "551": { + "label": "fighting between the army and paramilitaries", + "category": "related" + }, + "552": { + "label": "looting of aid depots", + "category": "related" + }, + "553": { + "label": "Darfur", + "category": "related" + }, + "554": { + "label": "Chad", + "category": "related" + }, + "555": { + "label": "South Sudan", + "category": "related" + }, + "556": { + "label": "Foreign Office", + "category": "related" + }, + "557": { + "label": "Egypt", + "category": "related" + }, + "558": { + "label": "Raja Pervez Asharf", + "category": "related" + }, + "559": { + "label": "I-9", + "category": "related" + }, + "560": { + "label": "I-10", + "category": "related" + }, + "561": { + "label": "I&T", + "category": "related" + }, + "562": { + "label": "I&T centres", + "category": "related" + }, + "563": { + "label": "I&T centre", + "category": "related" + }, + "564": { + "label": "Parliament House", + "category": "related" + }, + "565": { + "label": "federal capital", + "category": "related" + }, + "566": { + "label": "Islamabad High Court", + "category": "related" + }, + "567": { + "label": "ministers\u2019 enclave", + "category": "related" + }, + "568": { + "label": "police buildings", + "category": "related" + }, + "569": { + "label": "F-6", + "category": "related" + }, + "570": { + "label": "Pakistan Sports Complex", + "category": "related" + }, + "571": { + "label": "Pakistan Sports Board", + "category": "related" + }, + "572": { + "label": "swimming pool", + "category": "related" + }, + "573": { + "label": "gym", + "category": "related" + }, + "574": { + "label": "lawn tennis", + "category": "related" + }, + "575": { + "label": "ongoing financial crunch", + "category": "related" + }, + "576": { + "label": "the court", + "category": "related" + }, + "577": { + "label": "the government", + "category": "related" + }, + "578": { + "label": "Baroness Sayeeda Warsi", + "category": "related" + }, + "579": { + "label": "Conservative Party", + "category": "related" + }, + "580": { + "label": "Special Assistant to Prime Minister", + "category": "related" + }, + "581": { + "label": "Gujar Khan", + "category": "related" + }, + "582": { + "label": "Mohammad Jawad Sohrab Malik", + "category": "related" + }, + "583": { + "label": "Bewal", + "category": "related" + }, + "584": { + "label": "Sohrab Foundation", + "category": "related" + }, + "585": { + "label": "charitable organisation", + "category": "related" + }, + "586": { + "label": "charity organisation", + "category": "related" + }, + "587": { + "label": "Chaudhry Anwarul Haq", + "category": "related" + }, + "588": { + "label": "AJK prime minister", + "category": "related" + }, + "589": { + "label": "Waqar Ahmed Noor", + "category": "related" + }, + "590": { + "label": "Faisal Mumtaz Rathore", + "category": "related" + }, + "591": { + "label": "cabinet members without portfolio", + "category": "related" + }, + "592": { + "label": "Fais", + "category": "related" + }, + "593": { + "label": "Rescue 1122", + "category": "related" + }, + "594": { + "label": "Attock Khurd", + "category": "related" + }, + "595": { + "label": "Indus River", + "category": "related" + }, + "596": { + "label": "Dhurnal", + "category": "related" + }, + "597": { + "label": "Jand", + "category": "related" + }, + "598": { + "label": "Jand railway station", + "category": "related" + }, + "599": { + "label": "Sutlej", + "category": "related" + }, + "600": { + "label": "Shanghai Cooperation Organisation", + "category": "related" + }, + "601": { + "label": "China International Culture Association", + "category": "related" + }, + "602": { + "label": "SCO Secretariat", + "category": "related" + }, + "603": { + "label": "China", + "category": "related" + }, + "604": { + "label": "Dhoke Miskeen", + "category": "related" + }, + "605": { + "label": "Wah Cantonment", + "category": "related" + }, + "606": { + "label": "Hassanabdal", + "category": "related" + }, + "607": { + "label": "Fiazabad", + "category": "related" + }, + "608": { + "label": "Fawara Chowk", + "category": "related" + }, + "609": { + "label": "Liaquat Bagh", + "category": "related" + }, + "610": { + "label": "Raja Bazaar", + "category": "related" + }, + "611": { + "label": "Liaquat Road", + "category": "related" + }, + "612": { + "label": "C-16", + "category": "related" + }, + "613": { + "label": "C-15", + "category": "related" + }, + "614": { + "label": "D-12", + "category": "related" + }, + "615": { + "label": "Federal Investigation Agency", + "category": "related" + }, + "616": { + "label": "Sardar Tariq Masood", + "category": "related" + }, + "617": { + "label": "social networking websites", + "category": "related" + }, + "618": { + "label": "social media", + "category": "related" + }, + "619": { + "label": "Judge", + "category": "related" + }, + "620": { + "label": "suicide bombing on the premises of the University of Karachi", + "category": "related" + }, + "621": { + "label": "April 26, 2022", + "category": "related" + }, + "622": { + "label": "suicide bomber", + "category": "related" + }, + "623": { + "label": "Shari Baloch", + "category": "related" + }, + "624": { + "label": "suicide bombing", + "category": "related" + }, + "625": { + "label": "Karachi University", + "category": "related" + }, + "626": { + "label": "Nishtar Hospital-2", + "category": "related" + }, + "627": { + "label": "Multan", + "category": "related" + }, + "628": { + "label": "Mohalla Dogran", + "category": "related" + }, + "629": { + "label": "Shah Rukn Alam Colony", + "category": "related" + }, + "630": { + "label": "commissioner", + "category": "related" + }, + "631": { + "label": "Mohsin Naqvi", + "category": "related" + }, + "632": { + "label": "diabetes", + "category": "related" + }, + "633": { + "label": "blood pressure", + "category": "related" + }, + "634": { + "label": "hypertension", + "category": "related" + }, + "635": { + "label": "kidney disease", + "category": "related" + }, + "636": { + "label": "kidney diseases", + "category": "related" + }, + "637": { + "label": "Mohammad Ashraf", + "category": "related" + }, + "638": { + "label": "Tuesday", + "category": "related" + }, + "639": { + "label": "Jatli", + "category": "related" + }, + "640": { + "label": "Arshad Mehmood", + "category": "related" + }, + "641": { + "label": "Yasir", + "category": "related" + }, + "642": { + "label": "Mominabad", + "category": "related" + }, + "643": { + "label": "Gulshan-i-Ghazi", + "category": "related" + }, + "644": { + "label": "Madina Hospital", + "category": "related" + }, + "645": { + "label": "Water Board Colony", + "category": "related" + }, + "646": { + "label": "Gulshan-i-Iqbal", + "category": "related" + }, + "647": { + "label": "Jinnah Postgraduate Medical Centre", + "category": "related" + }, + "648": { + "label": "wounded a young man over resistance", + "category": "related" + }, + "649": { + "label": "wounded a young man over resistance in Korangi", + "category": "related" + }, + "650": { + "label": "wounded a young man", + "category": "related" + }, + "651": { + "label": "Mir Faiq Ali Jamali", + "category": "related" + }, + "652": { + "label": "Mir Mohammad Sualeh Shalyani", + "category": "related" + }, + "653": { + "label": "Mir Baz Khan Brohi", + "category": "related" + }, + "654": { + "label": "All Pakistan Hindu Punchayat", + "category": "related" + }, + "655": { + "label": "Shankar Lal Wadhwani", + "category": "related" + }, + "656": { + "label": "rape of a woman", + "category": "related" + }, + "657": { + "label": "riots", + "category": "related" + }, + "658": { + "label": "Jamaat-i-Islami", + "category": "related" + }, + "659": { + "label": "mayor", + "category": "related" + }, + "660": { + "label": "Jan 15 LG polls", + "category": "related" + }, + "661": { + "label": "Katchi Lund", + "category": "related" + }, + "662": { + "label": "Dera Ghazi Khan", + "category": "related" + }, + "663": { + "label": "Rajanpur", + "category": "related" + }, + "664": { + "label": "Rai Babar Saeed", + "category": "related" + }, + "665": { + "label": "Inspector General of Police", + "category": "related" + }, + "666": { + "label": "Jalalpur Peerwala", + "category": "related" + }, + "667": { + "label": "Jhang", + "category": "related" + }, + "668": { + "label": "Jhelum", + "category": "related" + }, + "669": { + "label": "Meel Adda", + "category": "related" + }, + "670": { + "label": "Meel", + "category": "related" + }, + "671": { + "label": "Mawlawi Amir Khan Muttaqi", + "category": "related" + }, + "672": { + "label": "terrorism", + "category": "related" + }, + "673": { + "label": "Metropolitan Corporation of Lahore", + "category": "related" + }, + "674": { + "label": "Khaddian Road", + "category": "related" + }, + "675": { + "label": "PHA", + "category": "related" + }, + "676": { + "label": "Pakistan People\u2019s Party", + "category": "related" + }, + "677": { + "label": "Qamar Javed Bajwa", + "category": "related" + }, + "678": { + "label": "the cricketer-turned-politician\u2019s (bad) character", + "category": "related" + }, + "679": { + "label": "Ghakkar Mandi", + "category": "related" + }, + "680": { + "label": "Siddique Town", + "category": "related" + }, + "681": { + "label": "District Headquarters Hospital", + "category": "related" + }, + "682": { + "label": "Gujranwala Siddique Town", + "category": "related" + }, + "683": { + "label": "Awami Jamhuri Party (Sindh)", + "category": "related" + }, + "684": { + "label": "Fazal Lund", + "category": "related" + }, + "685": { + "label": "Seraiki Lok Saanjh", + "category": "related" + }, + "686": { + "label": "Seraiki", + "category": "related" + }, + "687": { + "label": "Siraiki", + "category": "related" + }, + "688": { + "label": "Makran", + "category": "related" + }, + "689": { + "label": "Gwadar", + "category": "related" + }, + "690": { + "label": "Gwadar district", + "category": "related" + }, + "691": { + "label": "Jiwani", + "category": "related" + }, + "692": { + "label": "Bal", + "category": "related" + }, + "693": { + "label": "Jeddah", + "category": "related" + }, + "694": { + "label": "Joint Health Secretary", + "category": "related" + }, + "695": { + "label": "Mustafa Jamal Kazi", + "category": "related" + }, + "696": { + "label": "National Institute of Health", + "category": "related" + }, + "697": { + "label": "Sajid Shah", + "category": "related" + }, + "698": { + "label": "departments and divisions", + "category": "related" + }, + "699": { + "label": "civil aviation", + "category": "related" + }, + "700": { + "label": "interior ministry", + "category": "related" + }, + "701": { + "label": "iron", + "category": "related" + }, + "702": { + "label": "micronutrient", + "category": "related" + }, + "703": { + "label": "calcium", + "category": "related" + }, + "704": { + "label": "selenium", + "category": "related" + }, + "705": { + "label": "Vitamin B12", + "category": "related" + }, + "706": { + "label": "choline", + "category": "related" + }, + "707": { + "label": "carnitine", + "category": "related" + }, + "708": { + "label": "creatine", + "category": "related" + }, + "709": { + "label": "taurine", + "category": "related" + }, + "710": { + "label": "meat", + "category": "related" + }, + "711": { + "label": "Defence Minister", + "category": "related" + }, + "712": { + "label": "Li Shangfu", + "category": "related" + }, + "713": { + "label": "Indian Defence Minister", + "category": "related" + }, + "714": { + "label": "Rajnath Singh", + "category": "related" + }, + "715": { + "label": "Foreign Minister", + "category": "related" + }, + "716": { + "label": "Bilawal Bhutto", + "category": "related" + }, + "717": { + "label": "Khurshid Kaka Ji", + "category": "related" + }, + "718": { + "label": "PkMAP", + "category": "related" + }, + "719": { + "label": "Mukhtiyar Yousafzai", + "category": "related" + }, + "720": { + "label": "Abdul Jabbar Khan", + "category": "related" + }, + "721": { + "label": "Hameedul Haq", + "category": "related" + }, + "722": { + "label": "Irfan Chattan", + "category": "related" + }, + "723": { + "label": "a suicide attack in the Peshawar Police Lines", + "category": "related" + }, + "724": { + "label": "Hafiz Mohammad Habibullah", + "category": "related" + }, + "725": { + "label": "Pakistan Navy", + "category": "related" + }, + "726": { + "label": "PNS Zafar", + "category": "related" + }, + "727": { + "label": "Arbab Mohammad Tahir", + "category": "related" + }, + "728": { + "label": "Public Accounts Committee", + "category": "related" + }, + "729": { + "label": "Ministry of Education and Professional Education", + "category": "related" + }, + "730": { + "label": "Private Educational Institutions Regulatory Authority", + "category": "related" + }, + "731": { + "label": "education ministry", + "category": "related" + }, + "732": { + "label": "academy", + "category": "related" + }, + "733": { + "label": "Moonis Elahi", + "category": "related" + }, + "734": { + "label": "Chaudhry Wajahat Hussain", + "category": "related" + }, + "735": { + "label": "Chaudhry Wajahat", + "category": "related" + }, + "736": { + "label": "Javed Iqbal", + "category": "related" + }, + "737": { + "label": "Bannu", + "category": "related" + }, + "738": { + "label": "Wargharabad", + "category": "related" + }, + "739": { + "label": "Darra Pezu", + "category": "related" + }, + "740": { + "label": "tribal district", + "category": "related" + }, + "741": { + "label": "her husband", + "category": "related" + }, + "742": { + "label": "her father", + "category": "related" + }, + "743": { + "label": "her spouse", + "category": "related" + }, + "744": { + "label": "Bajaur", + "category": "related" + }, + "745": { + "label": "Khar", + "category": "related" + }, + "746": { + "label": "ANP", + "category": "related" + }, + "747": { + "label": "Hussain Shah Yousafzai", + "category": "related" + }, + "748": { + "label": "Hafiz Yaqubur Rehman", + "category": "related" + }, + "749": { + "label": "JI", + "category": "related" + }, + "750": { + "label": "Dir Overseas Pakistanis\u2019 Association", + "category": "related" + }, + "751": { + "label": "Dir Qaami Pasoon", + "category": "related" + }, + "752": { + "label": "Dir Qaumi Jirga", + "category": "related" + }, + "753": { + "label": "Dir", + "category": "related" + }, + "754": { + "label": "Pulrah", + "category": "related" + }, + "755": { + "label": "Mansehra district", + "category": "related" + }, + "756": { + "label": "Chita Ghazikot Road", + "category": "related" + }, + "757": { + "label": "Matsarian", + "category": "related" + }, + "758": { + "label": "Chita Ghazikot", + "category": "related" + }, + "759": { + "label": "Kohat", + "category": "related" + }, + "760": { + "label": "opioid", + "category": "related" + }, + "761": { + "label": "analgesic", + "category": "related" + }, + "762": { + "label": "analgesia", + "category": "related" + }, + "763": { + "label": "drug", + "category": "related" + }, + "764": { + "label": "Kabal tehsil", + "category": "related" + }, + "765": { + "label": "Dehrai", + "category": "related" + }, + "766": { + "label": "Kabal", + "category": "related" + }, + "767": { + "label": "Sajjad Ahmad Sahibzada", + "category": "related" + }, + "768": { + "label": "Shaukat Ali", + "category": "related" + }, + "769": { + "label": "Shangla", + "category": "related" + }, + "770": { + "label": "police department", + "category": "related" + }, + "771": { + "label": "Khalid Bacha", + "category": "related" + }, + "772": { + "label": "Qaumi Watan Party", + "category": "related" + }, + "773": { + "label": "Bacha Khan Medical Complex", + "category": "related" + }, + "774": { + "label": "Razaar", + "category": "related" + }, + "775": { + "label": "Jehangira", + "category": "related" + }, + "776": { + "label": "Jamshoro", + "category": "related" + }, + "777": { + "label": "Rawalpindi Development Authority", + "category": "related" + }, + "778": { + "label": "Punjab government", + "category": "related" + }, + "779": { + "label": "Taimoor Khan", + "category": "related" + }, + "780": { + "label": "heavyweight", + "category": "related" + }, + "781": { + "label": "boxing", + "category": "related" + }, + "782": { + "label": "World Boxing Council", + "category": "related" + }, + "783": { + "label": "Asian Boxing Federation", + "category": "related" + }, + "784": { + "label": "Chomphoophuang Panya", + "category": "related" + }, + "785": { + "label": "boxer", + "category": "related" + }, + "786": { + "label": "undefeated record", + "category": "related" + }, + "787": { + "label": "knockouts", + "category": "related" + }, + "788": { + "label": "Pakistan Golf Federation", + "category": "related" + }, + "789": { + "label": "Saim Shazli", + "category": "related" + }, + "790": { + "label": "Mark Chapman", + "category": "related" + }, + "791": { + "label": "New Zealand", + "category": "related" + }, + "792": { + "label": "Kane Williamson", + "category": "related" + }, + "793": { + "label": "one-day World Cup", + "category": "related" + }, + "794": { + "label": "the last three matches", + "category": "related" + }, + "795": { + "label": "Khyber district", + "category": "related" + }, + "796": { + "label": "Peshawar district", + "category": "related" + }, + "797": { + "label": "border fencing", + "category": "related" + }, + "798": { + "label": "military offensives against the militants", + "category": "related" + }, + "799": { + "label": "Shabbir Hasan Maisami", + "category": "related" + }, + "800": { + "label": "Shia Ulema Council of Pakistan", + "category": "related" + }, + "801": { + "label": "Muslim Brotherhood", + "category": "related" + }, + "802": { + "label": "Islamic Brotherhood", + "category": "related" + }, + "803": { + "label": "Islamic", + "category": "related" + }, + "804": { + "label": "Moscow", + "category": "related" + }, + "805": { + "label": "Russia", + "category": "related" + }, + "806": { + "label": "Quetta", + "category": "related" + }, + "807": { + "label": "Bahawal", + "category": "related" + }, + "808": { + "label": "Prime Minister\u2019s Youth Business and Agriculture Loan Scheme", + "category": "related" + }, + "809": { + "label": "Board of Investment", + "category": "related" + }, + "810": { + "label": "Invest Pakistan", + "category": "related" + }, + "811": { + "label": "Economic Coordination Committee", + "category": "related" + }, + "812": { + "label": "Inland Revenue", + "category": "related" + }, + "813": { + "label": "Chief Justice of Pakistan", + "category": "related" + }, + "814": { + "label": "election of Punjab chief minister last year", + "category": "related" + }, + "815": { + "label": "Kashmirabad", + "category": "related" + }, + "816": { + "label": "Sindh Chief Minister", + "category": "related" + }, + "817": { + "label": "Mir Abdul Qudoos Bizenjo", + "category": "related" + }, + "818": { + "label": "Raja Pervaiz Ashraf", + "category": "related" + }, + "819": { + "label": "elections in the province", + "category": "related" + }, + "820": { + "label": "Gilgit-Baltistan", + "category": "related" + }, + "821": { + "label": "Dadu", + "category": "related" + }, + "822": { + "label": "2022 floods", + "category": "related" + }, + "823": { + "label": "Athar Minallah", + "category": "related" + }, + "824": { + "label": "Jamal Khan Mandokhel", + "category": "related" + }, + "825": { + "label": "Mohammad Taimur", + "category": "related" + }, + "826": { + "label": "Jamal Khan Mand", + "category": "related" + }, + "827": { + "label": "Malik Amin Aslam", + "category": "related" + }, + "828": { + "label": "special assistant to the prime minister on climate change", + "category": "related" + }, + "829": { + "label": "Pakistan International Airlines", + "category": "related" + }, + "830": { + "label": "LA-15", + "category": "related" + }, + "831": { + "label": "Azad Kashmir Election Commission", + "category": "related" + }, + "832": { + "label": "Bagh-II", + "category": "related" + }, + "833": { + "label": "disqualified", + "category": "related" + }, + "834": { + "label": "Sardar Tanveer Ilyas", + "category": "related" + }, + "835": { + "label": "AJK high court", + "category": "related" + }, + "836": { + "label": "unseated", + "category": "related" + }, + "837": { + "label": "Hafiz Naeem ur Rehman", + "category": "related" + }, + "838": { + "label": "Muttahida Qaumi Movement-Pakistan", + "category": "related" + }, + "839": { + "label": "Khalid Maqbool Siddiqi", + "category": "related" + }, + "840": { + "label": "Sind", + "category": "related" + }, + "841": { + "label": "Manora beach", + "category": "related" + }, + "842": { + "label": "Manora", + "category": "related" + }, + "843": { + "label": "Korang", + "category": "related" + }, + "844": { + "label": "Abdul Rauf", + "category": "related" + }, + "845": { + "label": "Wednesday", + "category": "related" + }, + "846": { + "label": "Huzaifa Shakir", + "category": "related" + }, + "847": { + "label": "Keenjhar Lake", + "category": "related" + }, + "848": { + "label": "Keenjhar", + "category": "related" + }, + "849": { + "label": "Qadhafi", + "category": "related" + }, + "850": { + "label": "Bahria Town Karachi 2", + "category": "related" + }, + "851": { + "label": "Deh Chuhar", + "category": "related" + }, + "852": { + "label": "Bin Qasim Town", + "category": "related" + }, + "853": { + "label": "Deh", + "category": "related" + }, + "854": { + "label": "Mathelo", + "category": "related" + }, + "855": { + "label": "Daharki", + "category": "related" + }, + "856": { + "label": "Ghotki", + "category": "related" + }, + "857": { + "label": "Mirpurkhas", + "category": "related" + }, + "858": { + "label": "taluka", + "category": "related" + }, + "859": { + "label": "Tando Allahyar", + "category": "related" + }, + "860": { + "label": "Niaz Hussain Khoso", + "category": "related" + }, + "861": { + "label": "Niaz Hussain Kh", + "category": "related" + }, + "862": { + "label": "Niaz", + "category": "related" + }, + "863": { + "label": "Chaudhry Sarwar", + "category": "related" + }, + "864": { + "label": "Pakistan Muslim League-Q", + "category": "related" + }, + "865": { + "label": "Chaudhry Shafay Hussain", + "category": "related" + }, + "866": { + "label": "dissolution of provincial assemblies", + "category": "related" + }, + "867": { + "label": "dissolution of", + "category": "related" + }, + "868": { + "label": "dissolution", + "category": "related" + }, + "869": { + "label": "University of Engineering and Technology", + "category": "related" + }, + "870": { + "label": "Naveed Ramzan", + "category": "related" + }, + "871": { + "label": "Saima Yasin", + "category": "related" + }, + "872": { + "label": "the university\u2019s 100-year history", + "category": "related" + }, + "873": { + "label": "oil and gas sector", + "category": "related" + }, + "874": { + "label": "Pakistan Petrol-eum Limited", + "category": "related" + }, + "875": { + "label": "industry", + "category": "related" + }, + "876": { + "label": "Human Rights Com\u00admission of Pakistan", + "category": "related" + }, + "877": { + "label": "Asad Iqbal Butt", + "category": "related" + }, + "878": { + "label": "Kh", + "category": "related" + }, + "879": { + "label": "PP-204 (Khanewal-II)", + "category": "related" + }, + "880": { + "label": "PP-221 (Multan-XI)", + "category": "related" + }, + "881": { + "label": "Bahawalnagar-VIII", + "category": "related" + }, + "882": { + "label": "Wazirabad assassination attempt", + "category": "related" + }, + "883": { + "label": "Punjab Assembly", + "category": "related" + }, + "884": { + "label": "Children\u2019s Hospital and General Hospital", + "category": "related" + }, + "885": { + "label": "Dr Jamshed", + "category": "related" + }, + "886": { + "label": "World Health Organization", + "category": "related" + }, + "887": { + "label": "UNICEF", + "category": "related" + }, + "888": { + "label": "Dr Jamal Nasir", + "category": "related" + }, + "889": { + "label": "World Health", + "category": "related" + }, + "890": { + "label": "Health Services", + "category": "related" + }, + "891": { + "label": "Karianwala", + "category": "related" + }, + "892": { + "label": "Ghalib Market", + "category": "related" + }, + "893": { + "label": "Muhammad Ali Gujjar", + "category": "related" + }, + "894": { + "label": "Defence Housing Authority", + "category": "related" + }, + "895": { + "label": "Lahore Cantt", + "category": "related" + }, + "896": { + "label": "Defence C", + "category": "related" + }, + "897": { + "label": "attacked", + "category": "related" + }, + "898": { + "label": "Sadiqabad", + "category": "related" + }, + "899": { + "label": "Rahim Yar Khan", + "category": "related" + }, + "900": { + "label": "Liaqatpur", + "category": "related" + }, + "901": { + "label": "New Model Grain Market", + "category": "related" + }, + "902": { + "label": "Passco", + "category": "related" + }, + "903": { + "label": "Liaq", + "category": "related" + }, + "904": { + "label": "Rahim", + "category": "related" + }, + "905": { + "label": "Board of Intermediate and Secondary Education", + "category": "related" + }, + "906": { + "label": "Higher Education Department", + "category": "related" + }, + "907": { + "label": "BISE", + "category": "related" + }, + "908": { + "label": "Government Model High School", + "category": "related" + }, + "909": { + "label": "Muhammad Ali Randhawa", + "category": "related" + }, + "910": { + "label": "LAHORE", + "category": "related" + }, + "911": { + "label": "district administration", + "category": "related" + }, + "912": { + "label": "city", + "category": "related" + }, + "913": { + "label": "encroachments on parking areas", + "category": "related" + }, + "914": { + "label": "illegal parking", + "category": "related" + }, + "915": { + "label": "NOC", + "category": "related" + }, + "916": { + "label": "commercial buildings", + "category": "related" + }, + "917": { + "label": "Punjab caretaker Chief Minister", + "category": "related" + }, + "918": { + "label": "Punjab Boulevard", + "category": "related" + }, + "919": { + "label": "Central Business District", + "category": "related" + }, + "920": { + "label": "Imran Amin", + "category": "related" + }, + "921": { + "label": "Gujranwala Civil Hospital", + "category": "related" + }, + "922": { + "label": "Ayaz Saleem", + "category": "related" + }, + "923": { + "label": "Civil Line Police", + "category": "related" + }, + "924": { + "label": "Liaqat Randhawa", + "category": "related" + }, + "925": { + "label": "CPO", + "category": "related" + }, + "926": { + "label": "Faisalabad Regional Police Officer", + "category": "related" + }, + "927": { + "label": "Faisalabad Regional Police", + "category": "related" + }, + "928": { + "label": "Election Act 2017", + "category": "related" + }, + "929": { + "label": "2017", + "category": "related" + }, + "930": { + "label": "Tariq Saleem Sheikh", + "category": "related" + }, + "931": { + "label": "KASUR", + "category": "related" + }, + "932": { + "label": "police station", + "category": "related" + }, + "933": { + "label": "Bahawalpur Municipal Corporation", + "category": "related" + }, + "934": { + "label": "Riaz Hussain Peerzada", + "category": "related" + }, + "935": { + "label": "Federal Minister for Human Rights", + "category": "related" + }, + "936": { + "label": "Duniyapur", + "category": "related" + }, + "937": { + "label": "tehsil", + "category": "related" + }, + "938": { + "label": "Khalid Maqbool Siddiqui", + "category": "related" + }, + "939": { + "label": "Mustafa Kamal", + "category": "related" + }, + "940": { + "label": "Farooq Sattar", + "category": "related" + }, + "941": { + "label": "Nadeem Zafar", + "category": "related" + }, + "942": { + "label": "prime minister", + "category": "related" + }, + "943": { + "label": "Sheh\u00adbaz Sharif", + "category": "related" + }, + "944": { + "label": "Hanif Javed", + "category": "related" + }, + "945": { + "label": "federal planning minister", + "category": "related" + }, + "946": { + "label": "Shah Mehmood Qu\u00ad\u00adr\u00adeshi", + "category": "related" + }, + "947": { + "label": "Pak\u00adistan Democratic Movement", + "category": "related" + }, + "948": { + "label": "Saad Rafique", + "category": "related" + }, + "949": { + "label": "Peshawar High Court", + "category": "related" + }, + "950": { + "label": "Musarrat Hilali", + "category": "related" + }, + "951": { + "label": "Shakeel Ahmad", + "category": "related" + }, + "952": { + "label": "Fazal Hakeem Khan", + "category": "related" + }, + "953": { + "label": "Matta", + "category": "related" + }, + "954": { + "label": "chief minister", + "category": "related" + }, + "955": { + "label": "Dasu power project", + "category": "related" + }, + "956": { + "label": "Balakot", + "category": "related" + }, + "957": { + "label": "Galla", + "category": "related" + }, + "958": { + "label": "Kaghan", + "category": "related" + }, + "959": { + "label": "Kashu Bridge", + "category": "related" + }, + "960": { + "label": "Bannu district", + "category": "related" + }, + "961": { + "label": "Domel", + "category": "related" + }, + "962": { + "label": "Ziauddin Ahmed", + "category": "related" + }, + "963": { + "label": "a party was dispatched to police", + "category": "related" + }, + "964": { + "label": "a party was reported to police", + "category": "related" + }, + "965": { + "label": "Abdul Latif Afridi", + "category": "related" + }, + "966": { + "label": "Aftab Afridi", + "category": "related" + }, + "967": { + "label": "April 4, 2021", + "category": "related" + }, + "968": { + "label": "Ambar Interchange", + "category": "related" + }, + "969": { + "label": "Peshawar-Islamabad Motorway", + "category": "related" + }, + "970": { + "label": "Mr Latif Afridi", + "category": "related" + }, + "971": { + "label": "Murad Saeed", + "category": "related" + }, + "972": { + "label": "Pakistan Tahreek-i-Insaf", + "category": "related" + }, + "973": { + "label": "Fazal Hakim Khan", + "category": "related" + }, + "974": { + "label": "PMA", + "category": "related" + }, + "975": { + "label": "Shahid Khan", + "category": "related" + }, + "976": { + "label": "Saleemur Rehman", + "category": "related" + }, + "977": { + "label": "Mohammad Muazzam Butt", + "category": "related" + }, + "978": { + "label": "dissolution of the provincial assembly", + "category": "related" + }, + "979": { + "label": "a suo moto case", + "category": "related" + }, + "980": { + "label": "unconstitutional", + "category": "related" + }, + "981": { + "label": "Constitution", + "category": "related" + }, + "982": { + "label": "a suo moto case this year", + "category": "related" + }, + "983": { + "label": "Renala Khurd", + "category": "related" + }, + "984": { + "label": "tehsil zone", + "category": "related" + }, + "985": { + "label": "Najma", + "category": "related" + }, + "986": { + "label": "Nawaz", + "category": "related" + }, + "987": { + "label": "Naj", + "category": "related" + }, + "988": { + "label": "Nawza", + "category": "related" + }, + "989": { + "label": "Lakki MARWAT", + "category": "related" + }, + "990": { + "label": "Manzoor Afridi", + "category": "related" + }, + "991": { + "label": "thresh their harvested wheat crop", + "category": "related" + }, + "992": { + "label": "thresher machine", + "category": "related" + }, + "993": { + "label": "agricultural machinery", + "category": "related" + }, + "994": { + "label": "thresher machines", + "category": "related" + }, + "995": { + "label": "Thresher machine", + "category": "related" + }, + "996": { + "label": "Khailur Rahman", + "category": "related" + }, + "997": { + "label": "Anwarzeb Khan", + "category": "related" + }, + "998": { + "label": "Rehan Zeb Khan", + "category": "related" + }, + "999": { + "label": "Haji Toor Gul", + "category": "related" + }, + "1000": { + "label": "Khurshid Ali Khan", + "category": "related" + }, + "1001": { + "label": "Awami National Party", + "category": "related" + }, + "1002": { + "label": "Syed Sultanat Yar Bukhari", + "category": "related" + }, + "1003": { + "label": "Humayun Khan", + "category": "related" + }, + "1004": { + "label": "Fokker F27", + "category": "related" + }, + "1005": { + "label": "JF-17 Thunder", + "category": "related" + }, + "1006": { + "label": "MiG-21", + "category": "related" + }, + "1007": { + "label": "fighter jet", + "category": "related" + }, + "1008": { + "label": "one of the two airstrips", + "category": "related" + }, + "1009": { + "label": "Babu village", + "category": "related" + }, + "1010": { + "label": "Swabi tehsil", + "category": "related" + }, + "1011": { + "label": "Ameer Haider Khan Hoti", + "category": "related" + }, + "1012": { + "label": "Shahmansoor", + "category": "related" + }, + "1013": { + "label": "its government", + "category": "related" + }, + "1014": { + "label": "Alogay", + "category": "related" + }, + "1015": { + "label": "Shangla district", + "category": "related" + }, + "1016": { + "label": "Bisham", + "category": "related" + }, + "1017": { + "label": "Alpuri", + "category": "related" + }, + "1018": { + "label": "Chakesar", + "category": "related" + }, + "1019": { + "label": "Karora", + "category": "related" + }, + "1020": { + "label": "Puran", + "category": "related" + }, + "1021": { + "label": "Shahpur", + "category": "related" + }, + "1022": { + "label": "Bish", + "category": "related" + }, + "1023": { + "label": "Ramaz", + "category": "related" + }, + "1024": { + "label": "Iran", + "category": "related" + }, + "1025": { + "label": "PSM", + "category": "related" + }, + "1026": { + "label": "Steel Corp", + "category": "related" + }, + "1027": { + "label": "Saad Baig", + "category": "related" + }, + "1028": { + "label": "Pakistan\u2019s Under-19 cricket team", + "category": "related" + }, + "1029": { + "label": "Ahmed Hussain", + "category": "related" + }, + "1030": { + "label": "Aimal Khan", + "category": "related" + }, + "1031": { + "label": "Amir Hussain", + "category": "related" + }, + "1032": { + "label": "Azan Awais", + "category": "related" + }, + "1033": { + "label": "Ali Asfand", + "category": "related" + }, + "1034": { + "label": "Moham\u00admad Ibti\u00adsam", + "category": "related" + }, + "1035": { + "label": "Mohammad Ismail", + "category": "related" + }, + "1036": { + "label": "Mohammad Tayyab Arif", + "category": "related" + }, + "1037": { + "label": "Argentina", + "category": "related" + }, + "1038": { + "label": "Azerbaijan", + "category": "related" + }, + "1039": { + "label": "Bhu\u00adtan", + "category": "related" + }, + "1040": { + "label": "Iraq", + "category": "related" + }, + "1041": { + "label": "Kazakhstan", + "category": "related" + }, + "1042": { + "label": "Kenya", + "category": "related" + }, + "1043": { + "label": "Kyrgyzstan", + "category": "related" + }, + "1044": { + "label": "Mexico", + "category": "related" + }, + "1045": { + "label": "Paraguay", + "category": "related" + }, + "1046": { + "label": "Tajikistan", + "category": "related" + }, + "1047": { + "label": "Minister of Planning, Development and Special Initiatives", + "category": "related" + }, + "1048": { + "label": "Ministry of Information Technology and Telecommunications", + "category": "related" + }, + "1049": { + "label": "State Bank of Pakistan", + "category": "related" + }, + "1050": { + "label": "Federal Board of Revenue", + "category": "related" + }, + "1051": { + "label": "Higher Education Commission", + "category": "related" + }, + "1052": { + "label": "International Monetary Fund", + "category": "related" + }, + "1053": { + "label": "World Bank Group", + "category": "related" + }, + "1054": { + "label": "World Bank", + "category": "related" + }, + "1055": { + "label": "coal", + "category": "related" + }, + "1056": { + "label": "metals", + "category": "related" + }, + "1057": { + "label": "uranium", + "category": "related" + }, + "1058": { + "label": "gold", + "category": "related" + }, + "1059": { + "label": "silver", + "category": "related" + }, + "1060": { + "label": "copper", + "category": "related" + }, + "1061": { + "label": "tin", + "category": "related" + }, + "1062": { + "label": "zinc", + "category": "related" + }, + "1063": { + "label": "lead", + "category": "related" + }, + "1064": { + "label": "platinum", + "category": "related" + }, + "1065": { + "label": "Azam Nazeer Tarar", + "category": "related" + }, + "1066": { + "label": "Opposition Leader", + "category": "related" + }, + "1067": { + "label": "Raja Riaz Ahmed", + "category": "related" + }, + "1068": { + "label": "Janikhel", + "category": "related" + }, + "1069": { + "label": "a shootout", + "category": "related" + }, + "1070": { + "label": "B", + "category": "related" + }, + "1071": { + "label": "Rahim Bakhsh Bhatti", + "category": "related" + }, + "1072": { + "label": "Pakistan Railways", + "category": "related" + }, + "1073": { + "label": "Khawaja Saad Rafique", + "category": "related" + }, + "1074": { + "label": "Inspector of Railways", + "category": "related" + }, + "1075": { + "label": "Tezgam Express", + "category": "related" + }, + "1076": { + "label": "Masti", + "category": "related" + }, + "1077": { + "label": "2019 fire incident", + "category": "related" + }, + "1078": { + "label": "Ijazul Ahsan", + "category": "related" + }, + "1079": { + "label": "Munib Akhtar", + "category": "related" + }, + "1080": { + "label": "Shah Mehmood Qureshi", + "category": "related" + }, + "1081": { + "label": "Gohar Abbas", + "category": "related" + }, + "1082": { + "label": "Islamabad Expressway", + "category": "related" + }, + "1083": { + "label": "Margalla Road", + "category": "related" + }, + "1084": { + "label": "E-11", + "category": "related" + }, + "1085": { + "label": "Ali Zain", + "category": "related" + }, + "1086": { + "label": "Ali Z", + "category": "related" + }, + "1087": { + "label": "Bahawalnagar", + "category": "related" + }, + "1088": { + "label": "Khushab", + "category": "related" + }, + "1089": { + "label": "Sargodha", + "category": "related" + }, + "1090": { + "label": "Wazirabad", + "category": "related" + }, + "1091": { + "label": "Ladhewala Warriach", + "category": "related" + }, + "1092": { + "label": "Mandi Bahauddin", + "category": "related" + }, + "1093": { + "label": "Narowal", + "category": "related" + }, + "1094": { + "label": "Gattiya Road", + "category": "related" + }, + "1095": { + "label": "Wah Saddar", + "category": "related" + }, + "1096": { + "label": "Indus", + "category": "related" + }, + "1097": { + "label": "Haro", + "category": "related" + }, + "1098": { + "label": "Ghazi Barotha", + "category": "related" + }, + "1099": { + "label": "injured", + "category": "related" + }, + "1100": { + "label": "Rawalpindi Ring Road", + "category": "related" + }, + "1101": { + "label": "ChakbeliRoad", + "category": "related" + }, + "1102": { + "label": "ChakriRoad", + "category": "related" + }, + "1103": { + "label": "Thallian Interchange", + "category": "related" + }, + "1104": { + "label": "Rawalpind", + "category": "related" + }, + "1105": { + "label": "Ministry of National Health Services (NHS)", + "category": "related" + }, + "1106": { + "label": "Shazia Sobia Aslam Soomro", + "category": "related" + }, + "1107": { + "label": "Ministry of National Health Services", + "category": "related" + }, + "1108": { + "label": "Hazara division", + "category": "related" + }, + "1109": { + "label": "Nokundi", + "category": "related" + }, + "1110": { + "label": "Chagai district", + "category": "related" + }, + "1111": { + "label": "Potha", + "category": "related" + }, + "1112": { + "label": "union councils", + "category": "related" + }, + "1113": { + "label": "Sehar Bhagla Phagwari", + "category": "related" + }, + "1114": { + "label": "Charyan", + "category": "related" + }, + "1115": { + "label": "Murree Expressway", + "category": "related" + }, + "1116": { + "label": "provincial chapter", + "category": "related" + }, + "1117": { + "label": "Pakistan Tehreek-e-Insaf", + "category": "related" + }, + "1118": { + "label": "Nasirabad", + "category": "related" + }, + "1119": { + "label": "Nisar Ahmed Khuhro", + "category": "related" + }, + "1120": { + "label": "Tamgha-i-Imtiaz", + "category": "related" + }, + "1121": { + "label": "Rizwan Gul", + "category": "related" + }, + "1122": { + "label": "Manzoor Mangi", + "category": "related" + }, + "1123": { + "label": "Larkana Arts Council", + "category": "related" + }, + "1124": { + "label": "Yasmeen Brohi", + "category": "related" + }, + "1125": { + "label": "Sabir Chandio", + "category": "related" + }, + "1126": { + "label": "Tamgha-", + "category": "related" + }, + "1127": { + "label": "Ahmed Ali Sabir Chandio", + "category": "related" + }, + "1128": { + "label": "Shakeel Ahmed", + "category": "related" + }, + "1129": { + "label": "Thursday", + "category": "related" + }, + "1130": { + "label": "woman found hanged", + "category": "related" + }, + "1131": { + "label": "Sharifabad", + "category": "related" + }, + "1132": { + "label": "woman", + "category": "related" + }, + "1133": { + "label": "Taimur Talpur", + "category": "related" + }, + "1134": { + "label": "Forest Minister", + "category": "related" + }, + "1135": { + "label": "DBC-I", + "category": "related" + }, + "1136": { + "label": "DBC-II", + "category": "related" + }, + "1137": { + "label": "DBC", + "category": "related" + }, + "1138": { + "label": "Pakistan Penal Code", + "category": "related" + }, + "1139": { + "label": "Akram Wah", + "category": "related" + }, + "1140": { + "label": "Indus river system", + "category": "related" + }, + "1141": { + "label": "Ahmed Ali M. Shaikh", + "category": "related" + }, + "1142": { + "label": "PHC", + "category": "related" + }, + "1143": { + "label": "Chief Justice of PHC", + "category": "related" + }, + "1144": { + "label": "PHC chief justice", + "category": "related" + }, + "1145": { + "label": "Ghouspur", + "category": "related" + }, + "1146": { + "label": "Khairpur district", + "category": "related" + }, + "1147": { + "label": "Tangwani", + "category": "related" + }, + "1148": { + "label": "Kandhkot-Kashmore district", + "category": "related" + }, + "1149": { + "label": "Kandhkot-Kashmore", + "category": "related" + }, + "1150": { + "label": "Mohammed bin Salman", + "category": "related" + }, + "1151": { + "label": "Punjab Healthcare Commission", + "category": "related" + }, + "1152": { + "label": "Lahore General Hospital", + "category": "related" + }, + "1153": { + "label": "Umma-i-Sadia", + "category": "related" + }, + "1154": { + "label": "Pakpattan Canal", + "category": "related" + }, + "1155": { + "label": "Chak Shafi", + "category": "related" + }, + "1156": { + "label": "Raheem YAR KHAN", + "category": "related" + }, + "1157": { + "label": "Allahabad Town", + "category": "related" + }, + "1158": { + "label": "Sarmad Ali Bhagat", + "category": "related" + }, + "1159": { + "label": "Liaquatpur", + "category": "related" + }, + "1160": { + "label": "Punjab Police", + "category": "related" + }, + "1161": { + "label": "Punjab Constabulary", + "category": "related" + }, + "1162": { + "label": "Bahawalpur division", + "category": "related" + }, + "1163": { + "label": "Sahiwal division", + "category": "related" + }, + "1164": { + "label": "Mussarat Jamshed Cheema", + "category": "related" + }, + "1165": { + "label": "Khaliquz Zaman", + "category": "related" + }, + "1166": { + "label": "Hassaan Niazi", + "category": "related" + }, + "1167": { + "label": "Punjab University Lahore", + "category": "related" + }, + "1168": { + "label": "Christian College Lahore", + "category": "related" + }, + "1169": { + "label": "New Railway Theatre Lahore", + "category": "related" + }, + "1170": { + "label": "Shimla", + "category": "related" + }, + "1171": { + "label": "Amritsar", + "category": "related" + }, + "1172": { + "label": "Aitchison College", + "category": "related" + }, + "1173": { + "label": "New Railway Theatre", + "category": "related" + }, + "1174": { + "label": "Aitchison Hospital", + "category": "related" + }, + "1175": { + "label": "GUJRANWALA", + "category": "related" + }, + "1176": { + "label": "Hafizabad district", + "category": "related" + }, + "1177": { + "label": "Lavere", + "category": "related" + }, + "1178": { + "label": "Lore Kalan", + "category": "related" + }, + "1179": { + "label": "Pappu", + "category": "related" + }, + "1180": { + "label": "shot himself", + "category": "related" + }, + "1181": { + "label": "shot", + "category": "related" + }, + "1182": { + "label": "killed", + "category": "related" + }, + "1183": { + "label": "Emir Sirajul Haq", + "category": "related" + }, + "1184": { + "label": "dissolution of assembly", + "category": "related" + }, + "1185": { + "label": "parliament", + "category": "related" + }, + "1186": { + "label": "top judge", + "category": "related" + }, + "1187": { + "label": "politicians", + "category": "related" + }, + "1188": { + "label": "political parties", + "category": "related" + }, + "1189": { + "label": "crises", + "category": "related" + }, + "1190": { + "label": "his wife", + "category": "related" + }, + "1191": { + "label": "prime Minister", + "category": "related" + }, + "1192": { + "label": "his spouse", + "category": "related" + }, + "1193": { + "label": "Kamila", + "category": "related" + }, + "1194": { + "label": "Upper Kohistan", + "category": "related" + }, + "1195": { + "label": "Kohistan", + "category": "related" + }, + "1196": { + "label": "Bolan Medical Complex", + "category": "related" + }, + "1197": { + "label": "Civil Hospital", + "category": "related" + }, + "1198": { + "label": "Sheikh Mohamed Bin Zayed Al-Nahyan Institute of Cardiology", + "category": "related" + }, + "1199": { + "label": "Fatima Jinnah Hospital", + "category": "related" + }, + "1200": { + "label": "Kuhclak", + "category": "related" + }, + "1201": { + "label": "Mufti Mehmood Hospital", + "category": "related" + }, + "1202": { + "label": "Kuhclak\u2019s Mufti Mehmood Hospital", + "category": "related" + }, + "1203": { + "label": "mpox", + "category": "related" + }, + "1204": { + "label": "monkeypox", + "category": "related" + }, + "1205": { + "label": "Performances and Phonograms Treaty", + "category": "related" + }, + "1206": { + "label": "treaties", + "category": "related" + }, + "1207": { + "label": "WIPO Copyright Treaty", + "category": "related" + }, + "1208": { + "label": "WIPO Internet Treaties", + "category": "related" + }, + "1209": { + "label": "Patent Cooperation Treaty", + "category": "related" + }, + "1210": { + "label": "WIPO", + "category": "related" + }, + "1211": { + "label": "Khuzdar Medical College", + "category": "related" + }, + "1212": { + "label": "Killi Spin", + "category": "related" + }, + "1213": { + "label": "Kuchlak", + "category": "related" + }, + "1214": { + "label": "Hig\u00adhway", + "category": "related" + }, + "1215": { + "label": "Home Minister", + "category": "related" + }, + "1216": { + "label": "Mir Ziaullah Langove", + "category": "related" + }, + "1217": { + "label": "Nadeem Aslam Chaudhry", + "category": "related" + }, + "1218": { + "label": "Chief Secretary", + "category": "related" + }, + "1219": { + "label": "Peshawar District", + "category": "related" + }, + "1220": { + "label": "inter-Services Public Relations", + "category": "related" + }, + "1221": { + "label": "Pakistan Army", + "category": "related" + }, + "1222": { + "label": "fought gallantly and effectively engaged the terrorists", + "category": "related" + }, + "1223": { + "label": "Medical Teaching Institutions Reforms Act, 2015", + "category": "related" + }, + "1224": { + "label": "2015", + "category": "related" + }, + "1225": { + "label": "Saqib Raza", + "category": "related" + }, + "1226": { + "label": "assistant advocate general", + "category": "related" + }, + "1227": { + "label": "Aftab Ahmad Khan Sherpao", + "category": "related" + }, + "1228": { + "label": "a powerful explosion", + "category": "related" + }, + "1229": { + "label": "a powerful explosion inside the Kabal police station", + "category": "related" + }, + "1230": { + "label": "Naran Kaghan", + "category": "related" + }, + "1231": { + "label": "Galiyat", + "category": "related" + }, + "1232": { + "label": "Malam Jabba", + "category": "related" + }, + "1233": { + "label": "Kalash", + "category": "related" + }, + "1234": { + "label": "Garam Chashma", + "category": "related" + }, + "1235": { + "label": "Chitral", + "category": "related" + }, + "1236": { + "label": "Kumrat Valley", + "category": "related" + }, + "1237": { + "label": "Mohammad Ali Shah Bacha", + "category": "related" + }, + "1238": { + "label": "Malak Saeed Khan", + "category": "related" + }, + "1239": { + "label": "the mega corruption cases", + "category": "related" + }, + "1240": { + "label": "Farzand Ali Khan Wazir", + "category": "related" + }, + "1241": { + "label": "mega corruption cases", + "category": "related" + }, + "1242": { + "label": "Gohar Wazir", + "category": "related" + }, + "1243": { + "label": "Mohsin Dawar", + "category": "related" + }, + "1244": { + "label": "PES", + "category": "related" + }, + "1245": { + "label": "Bann", + "category": "related" + }, + "1246": { + "label": "Aimal Wali Khan", + "category": "related" + }, + "1247": { + "label": "Mahmood Khan", + "category": "related" + }, + "1248": { + "label": "Barrister Saif", + "category": "related" + }, + "1249": { + "label": "Aimal Wali", + "category": "related" + }, + "1250": { + "label": "Kashmore", + "category": "related" + }, + "1251": { + "label": "Shikarpur", + "category": "related" + }, + "1252": { + "label": "heroin", + "category": "related" + }, + "1253": { + "label": "ice drug", + "category": "related" + }, + "1254": { + "label": "USSR", + "category": "related" + }, + "1255": { + "label": "Malakand", + "category": "related" + }, + "1256": { + "label": "Hamza Khan", + "category": "related" + }, + "1257": { + "label": "footballer", + "category": "related" + }, + "1258": { + "label": "Malikabad", + "category": "related" + }, + "1259": { + "label": "an international outbreak of Mpox", + "category": "related" + }, + "1260": { + "label": "Mpox virus", + "category": "related" + }, + "1261": { + "label": "Mpox", + "category": "related" + }, + "1262": { + "label": "tuberculosis", + "category": "related" + }, + "1263": { + "label": "vaccine-preventable childhood ailments", + "category": "related" + }, + "1264": { + "label": "diphtheria", + "category": "related" + }, + "1265": { + "label": "tetanus", + "category": "related" + }, + "1266": { + "label": "Hepatitis B", + "category": "related" + }, + "1267": { + "label": "typhoid", + "category": "related" + }, + "1268": { + "label": "Landi Kotal", + "category": "related" + }, + "1269": { + "label": "Jamrud", + "category": "related" + }, + "1270": { + "label": "Bara Bazaar", + "category": "related" + }, + "1271": { + "label": "Dir district", + "category": "related" + }, + "1272": { + "label": "Railway Road", + "category": "related" + }, + "1273": { + "label": "Child Protection Act", + "category": "related" + }, + "1274": { + "label": "377/34", + "category": "related" + }, + "1275": { + "label": "53 of", + "category": "related" + }, + "1276": { + "label": "Kakkakhel", + "category": "related" + }, + "1277": { + "label": "Abdul Hadi", + "category": "related" + }, + "1278": { + "label": "Manzoor Ahmad Afridi", + "category": "related" + }, + "1279": { + "label": "Abdul", + "category": "related" + }, + "1280": { + "label": "Manz", + "category": "related" + }, + "1281": { + "label": "Asian Games", + "category": "related" + }, + "1282": { + "label": "Hangzhou", + "category": "related" + }, + "1283": { + "label": "2017 census", + "category": "related" + }, + "1284": { + "label": "Shireen Mazari", + "category": "related" + }, + "1285": { + "label": "defence budget", + "category": "related" + }, + "1286": { + "label": "defence budgets", + "category": "related" + }, + "1287": { + "label": "Roosevelt Hotel", + "category": "related" + }, + "1288": { + "label": "New York City", + "category": "related" + }, + "1289": { + "label": "Drug Policy 2018", + "category": "related" + }, + "1290": { + "label": "intelligence agency", + "category": "related" + }, + "1291": { + "label": "Pakistan Forest Institute", + "category": "related" + }, + "1292": { + "label": "Feroze Jamal Shah Kakakhel", + "category": "related" + }, + "1293": { + "label": "Minister for information", + "category": "related" + }, + "1294": { + "label": "information department", + "category": "related" + }, + "1295": { + "label": "information and public relations department", + "category": "related" + }, + "1296": { + "label": "information and public relations", + "category": "related" + }, + "1297": { + "label": "F", + "category": "related" + }, + "1298": { + "label": "Khar Bazaar", + "category": "related" + }, + "1299": { + "label": "Tableeghi Jamaat", + "category": "related" + }, + "1300": { + "label": "Gul Zafar Khan", + "category": "related" + }, + "1301": { + "label": "Gul Dad Khan", + "category": "related" + }, + "1302": { + "label": "Sikandar Zeb Khan", + "category": "related" + }, + "1303": { + "label": "Honda Atlas Cars Ltd", + "category": "related" + }, + "1304": { + "label": "Toyota", + "category": "related" + }, + "1305": { + "label": "Indus Motor Company", + "category": "related" + }, + "1306": { + "label": "the same period of the preceding year", + "category": "related" + }, + "1307": { + "label": "January-March", + "category": "related" + }, + "1308": { + "label": "the same three-month period a year ago", + "category": "related" + }, + "1309": { + "label": "the same three-month period a", + "category": "related" + }, + "1310": { + "label": "Securities and Exchange Commission of Pakistan", + "category": "related" + }, + "1311": { + "label": "Central Depository Company of Pakistan Ltd", + "category": "related" + }, + "1312": { + "label": "investment advisor", + "category": "related" + }, + "1313": { + "label": "securities brokers", + "category": "related" + }, + "1314": { + "label": "insurance companies", + "category": "related" + }, + "1315": { + "label": "securities & futures", + "category": "related" + }, + "1316": { + "label": "regulated entities", + "category": "related" + }, + "1317": { + "label": "KYC", + "category": "related" + }, + "1318": { + "label": "know-your-customer", + "category": "related" + }, + "1319": { + "label": "Yousaf Raza Gilani", + "category": "related" + }, + "1320": { + "label": "Ali Zafar", + "category": "related" + }, + "1321": { + "label": "Vice President", + "category": "related" + }, + "1322": { + "label": "Ali Zaf", + "category": "related" + }, + "1323": { + "label": "Barrister Ali Zafar", + "category": "related" + }, + "1324": { + "label": "Barr", + "category": "related" + }, + "1325": { + "label": "Chairman", + "category": "related" + }, + "1326": { + "label": "\u2018mutiny\u2019 case", + "category": "related" + }, + "1327": { + "label": "Inter-Serv\u00adices Intelligence", + "category": "related" + }, + "1328": { + "label": "army", + "category": "related" + }, + "1329": { + "label": "Punjab chief minister", + "category": "related" + }, + "1330": { + "label": "Rule of Law has ended in Pakistan", + "category": "related" + }, + "1331": { + "label": "Punjab police", + "category": "related" + }, + "1332": { + "label": "my father", + "category": "related" + }, + "1333": { + "label": "Amir Kalam", + "category": "related" + }, + "1334": { + "label": "Tajbi Khel", + "category": "related" + }, + "1335": { + "label": "a resurgence of attacks in recent months", + "category": "related" + }, + "1336": { + "label": "Peshawar mosque bombing", + "category": "related" + }, + "1337": { + "label": "Dera Ismail Khan district", + "category": "related" + }, + "1338": { + "label": "Saudi", + "category": "related" + }, + "1339": { + "label": "Ghulam Ali", + "category": "related" + }, + "1340": { + "label": "Jamiat Ulema-i-Islam-Fazl", + "category": "related" + }, + "1341": { + "label": "Abbas Khan Afridi", + "category": "related" + }, + "1342": { + "label": "Maulana Abdur Raheem", + "category": "related" + }, + "1343": { + "label": "DI Khan", + "category": "related" + }, + "1344": { + "label": "Boeing 777", + "category": "related" + }, + "1345": { + "label": "toilet", + "category": "related" + }, + "1346": { + "label": "lavatory", + "category": "related" + }, + "1347": { + "label": "airport", + "category": "related" + }, + "1348": { + "label": "TAKILA", + "category": "related" + }, + "1349": { + "label": "Chabb", + "category": "related" + }, + "1350": { + "label": "Hakla", + "category": "related" + }, + "1351": { + "label": "Education Minister", + "category": "related" + }, + "1352": { + "label": "Tahira Aurangzeb", + "category": "related" + }, + "1353": { + "label": "Shaista Pervaiz", + "category": "related" + }, + "1354": { + "label": "out-of-school children", + "category": "related" + }, + "1355": { + "label": "teachers", + "category": "related" + }, + "1356": { + "label": "education", + "category": "related" + }, + "1357": { + "label": "schools", + "category": "related" + }, + "1358": { + "label": "mosques", + "category": "related" + }, + "1359": { + "label": "Rawalpindi division", + "category": "related" + }, + "1360": { + "label": "infection control", + "category": "related" + }, + "1361": { + "label": "hygiene", + "category": "related" + }, + "1362": { + "label": "Rawalpindi Division", + "category": "related" + }, + "1363": { + "label": "CDAChairman", + "category": "related" + }, + "1364": { + "label": "Leh Nullah", + "category": "related" + }, + "1365": { + "label": "Soan River", + "category": "related" + }, + "1366": { + "label": "Lahore High Court", + "category": "related" + }, + "1367": { + "label": "devastated flood", + "category": "related" + }, + "1368": { + "label": "July 23, 2001", + "category": "related" + }, + "1369": { + "label": "devastated", + "category": "related" + }, + "1370": { + "label": "Manglawar", + "category": "related" + }, + "1371": { + "label": "Swat district", + "category": "related" + }, + "1372": { + "label": "Malakand division", + "category": "related" + }, + "1373": { + "label": "Pakhtun", + "category": "related" + }, + "1374": { + "label": "Salman Shah", + "category": "related" + }, + "1375": { + "label": "Germany", + "category": "related" + }, + "1376": { + "label": "ICCI", + "category": "related" + }, + "1377": { + "label": "Islamabad Chamber of Commerce & Industry", + "category": "related" + }, + "1378": { + "label": "poliomyelitis in Pakistan", + "category": "related" + }, + "1379": { + "label": "Sindh government", + "category": "related" + }, + "1380": { + "label": "DHA City", + "category": "related" + }, + "1381": { + "label": "Bahria Town", + "category": "related" + }, + "1382": { + "label": "Superhighway", + "category": "related" + }, + "1383": { + "label": "Bhittaiabad", + "category": "related" + }, + "1384": { + "label": "Gulistan-i-Jauhar", + "category": "related" + }, + "1385": { + "label": "Dow University of Health Sciences", + "category": "related" + }, + "1386": { + "label": "National Institute of Child Health", + "category": "related" + }, + "1387": { + "label": "Lyari", + "category": "related" + }, + "1388": { + "label": "the children\u2019s hospital", + "category": "related" + }, + "1389": { + "label": "DU", + "category": "related" + }, + "1390": { + "label": "Sindh Institute of Child Health and Neonatology", + "category": "related" + }, + "1391": { + "label": "Qasim Soomro", + "category": "related" + }, + "1392": { + "label": "Zulfikar Shah", + "category": "related" + }, + "1393": { + "label": "parliamentary secretary for health", + "category": "related" + }, + "1394": { + "label": "secretary health", + "category": "related" + }, + "1395": { + "label": "Zulfikar", + "category": "related" + }, + "1396": { + "label": "Syed Nasir Shah", + "category": "related" + }, + "1397": { + "label": "Man shot by carjackers over resistance", + "category": "related" + }, + "1398": { + "label": "Friday", + "category": "related" + }, + "1399": { + "label": "Star Ground", + "category": "related" + }, + "1400": { + "label": "UAE", + "category": "related" + }, + "1401": { + "label": "Badin", + "category": "related" + }, + "1402": { + "label": "Badin district", + "category": "related" + }, + "1403": { + "label": "Matiari", + "category": "related" + }, + "1404": { + "label": "Nawabshah", + "category": "related" + }, + "1405": { + "label": "Patoyoon", + "category": "related" + }, + "1406": { + "label": "Mirpurkhas district", + "category": "related" + }, + "1407": { + "label": "Irfan Gul Magsi", + "category": "related" + }, + "1408": { + "label": "Sohail Asghar Awan", + "category": "related" + }, + "1409": { + "label": "Malik Amjad Noon", + "category": "related" + }, + "1410": { + "label": "Sohail As", + "category": "related" + }, + "1411": { + "label": "Sharjeel Inam Memon", + "category": "related" + }, + "1412": { + "label": "Qasim Gilani", + "category": "related" + }, + "1413": { + "label": "Ayesha Chaudhry", + "category": "related" + }, + "1414": { + "label": "Parvez Elahi", + "category": "related" + }, + "1415": { + "label": "Zara Elahi", + "category": "related" + }, + "1416": { + "label": "Additional District and Sessions Judge", + "category": "related" + }, + "1417": { + "label": "Lahore Waste Management Company", + "category": "related" + }, + "1418": { + "label": "Muhammad Mahmood Rai", + "category": "related" + }, + "1419": { + "label": "Rawalpindi Ring Road scam", + "category": "related" + }, + "1420": { + "label": "Capt Muhammad Mahmood Rai", + "category": "related" + }, + "1421": { + "label": "land acquisition collector Waseem Tabish", + "category": "related" + }, + "1422": { + "label": "FIR", + "category": "related" + }, + "1423": { + "label": "land acquisition collector Waseem Tab", + "category": "related" + }, + "1424": { + "label": "land acquisition collector", + "category": "related" + }, + "1425": { + "label": "Lahore Bridge", + "category": "related" + }, + "1426": { + "label": "Samanabad Underpass", + "category": "related" + }, + "1427": { + "label": "Lahore College for Women University", + "category": "related" + }, + "1428": { + "label": "Punjab Environment Protection Department", + "category": "related" + }, + "1429": { + "label": "Department of Environmental Sciences", + "category": "related" + }, + "1430": { + "label": "Allied Hospital", + "category": "related" + }, + "1431": { + "label": "Muhammad Nadim", + "category": "related" + }, + "1432": { + "label": "Sufian Qasim alias Billa Butt", + "category": "related" + }, + "1433": { + "label": "Saleema Bibi", + "category": "related" + }, + "1434": { + "label": "Burewala", + "category": "related" + }, + "1435": { + "label": "Iqbal Town", + "category": "related" + }, + "1436": { + "label": "Bure", + "category": "related" + }, + "1437": { + "label": "Uch Sharif", + "category": "related" + }, + "1438": { + "label": "Muzzafargarh", + "category": "related" + }, + "1439": { + "label": "Ahmedpur East THQ Hospital", + "category": "related" + }, + "1440": { + "label": "Izhar Ali", + "category": "related" + }, + "1441": { + "label": "Mepco", + "category": "related" + }, + "1442": { + "label": "Railways Minister", + "category": "related" + }, + "1443": { + "label": "Tezgam train inferno", + "category": "related" + }, + "1444": { + "label": "the official", + "category": "related" + }, + "1445": { + "label": "tragic incident", + "category": "related" + }, + "1446": { + "label": "Ijaz-ul-Ahsan", + "category": "related" + }, + "1447": { + "label": "May 14", + "category": "related" + }, + "1448": { + "label": "Oct 8", + "category": "related" + }, + "1449": { + "label": "Oct", + "category": "related" + }, + "1450": { + "label": "Tariq Bajwa", + "category": "related" + }, + "1451": { + "label": "GB Planning and Development Minister", + "category": "related" + }, + "1452": { + "label": "Asif Saeed Khosa", + "category": "related" + }, + "1453": { + "label": "Amir Hani Muslim", + "category": "related" + }, + "1454": { + "label": "Ijaz Ahmed Chaudhry", + "category": "related" + }, + "1455": { + "label": "Ghulam Murtaza Khan", + "category": "related" + }, + "1456": { + "label": "judge", + "category": "related" + }, + "1457": { + "label": "Lah", + "category": "related" + }, + "1458": { + "label": "Jacobabad district", + "category": "related" + }, + "1459": { + "label": "Dera Allahyar", + "category": "related" + }, + "1460": { + "label": "Dera", + "category": "related" + }, + "1461": { + "label": "Zia Farooq", + "category": "related" + }, + "1462": { + "label": "Dawn", + "category": "related" + }, + "1463": { + "label": "He was 60.", + "category": "related" + }, + "1464": { + "label": "he was 60.", + "category": "related" + }, + "1465": { + "label": "Lasbela", + "category": "related" + }, + "1466": { + "label": "Kech", + "category": "related" + }, + "1467": { + "label": "Panjgur", + "category": "related" + }, + "1468": { + "label": "Washuk", + "category": "related" + }, + "1469": { + "label": "Mastung", + "category": "related" + }, + "1470": { + "label": "Sohrab", + "category": "related" + }, + "1471": { + "label": "Mohammad Tufail", + "category": "related" + }, + "1472": { + "label": "National Assembly by-elections in Oct last year", + "category": "related" + }, + "1473": { + "label": "Articles 62", + "category": "related" + }, + "1474": { + "label": "63", + "category": "related" + }, + "1475": { + "label": "October last year", + "category": "related" + }, + "1476": { + "label": "Hidayatullah Afridi", + "category": "related" + }, + "1477": { + "label": "Khusdil Khan Malik", + "category": "related" + }, + "1478": { + "label": "special assistant to chief minister", + "category": "related" + }, + "1479": { + "label": "special", + "category": "related" + }, + "1480": { + "label": "Sangu", + "category": "related" + }, + "1481": { + "label": "Chuha Gujjar", + "category": "related" + }, + "1482": { + "label": "provincial capital", + "category": "related" + }, + "1483": { + "label": "Naveed-i- Fikr", + "category": "related" + }, + "1484": { + "label": "Syed Sibte Hassan", + "category": "related" + }, + "1485": { + "label": "Syed Site Hassan", + "category": "related" + }, + "1486": { + "label": "Sibte Hassan", + "category": "related" + }, + "1487": { + "label": "Sadeeq Shah", + "category": "related" + }, + "1488": { + "label": "Bacha Khan Research Centre", + "category": "related" + }, + "1489": { + "label": "Azizullah Karwan", + "category": "related" + }, + "1490": { + "label": "Upper Chitral", + "category": "related" + }, + "1491": { + "label": "Sustainable Development Goals", + "category": "related" + }, + "1492": { + "label": "United Nations Development Programme", + "category": "related" + }, + "1493": { + "label": "UNESCO", + "category": "related" + }, + "1494": { + "label": "Bachai", + "category": "related" + }, + "1495": { + "label": "Bacha Khan Hospital Complex", + "category": "related" + }, + "1496": { + "label": "Zaida", + "category": "related" + }, + "1497": { + "label": "Pakistan Olympic Association", + "category": "related" + }, + "1498": { + "label": "Hamidi Hall", + "category": "related" + }, + "1499": { + "label": "the sports sector", + "category": "related" + }, + "1500": { + "label": "the members", + "category": "related" + }, + "1501": { + "label": "Lahore Gymkhana", + "category": "related" + }, + "1502": { + "label": "Pakistan \u2018A\u2019", + "category": "related" + }, + "1503": { + "label": "Suneya Osama", + "category": "related" + }, + "1504": { + "label": "Dania Syed", + "category": "related" + }, + "1505": { + "label": "Rimsha Ijaz", + "category": "related" + }, + "1506": { + "label": "Dean Naime", + "category": "related" + }, + "1507": { + "label": "Sri Lanka", + "category": "related" + }, + "1508": { + "label": "Memon Masjid", + "category": "related" + }, + "1509": { + "label": "North Nazimabad", + "category": "related" + }, + "1510": { + "label": "Hyderi Market", + "category": "related" + }, + "1511": { + "label": "shalwar kameez", + "category": "related" + }, + "1512": { + "label": "fabric", + "category": "related" + }, + "1513": { + "label": "clothing", + "category": "related" + }, + "1514": { + "label": "fabrics", + "category": "related" + }, + "1515": { + "label": "rupee", + "category": "related" + }, + "1516": { + "label": "depreciation", + "category": "related" + }, + "1517": { + "label": "7th National Finance Commission", + "category": "related" + }, + "1518": { + "label": "Tordher", + "category": "related" + }, + "1519": { + "label": "Hazrat Ali", + "category": "related" + }, + "1520": { + "label": "Maneri", + "category": "related" + }, + "1521": { + "label": "Ghanool Valley", + "category": "related" + }, + "1522": { + "label": "basic health unit", + "category": "related" + }, + "1523": { + "label": "BHU", + "category": "related" + }, + "1524": { + "label": "Imran", + "category": "related" + }, + "1525": { + "label": "the last PTI government", + "category": "related" + }, + "1526": { + "label": "Islamic finance", + "category": "related" + }, + "1527": { + "label": "financial services", + "category": "related" + }, + "1528": { + "label": "takaful", + "category": "related" + }, + "1529": { + "label": "single-window lending", + "category": "related" + }, + "1530": { + "label": "traditional", + "category": "related" + }, + "1531": { + "label": "digital finance", + "category": "related" + }, + "1532": { + "label": "Abdul Fattah al-Burhan", + "category": "related" + }, + "1533": { + "label": "Mohamed Hamdan Daglo", + "category": "related" + }, + "1534": { + "label": "Rapid Support Forces", + "category": "related" + }, + "1535": { + "label": "Abdel Fattah al-Burhan", + "category": "related" + }, + "1536": { + "label": "Ethiopia", + "category": "related" + }, + "1537": { + "label": "UN", + "category": "related" + }, + "1538": { + "label": "United", + "category": "related" + }, + "1539": { + "label": "Irfan Qadir", + "category": "related" + }, + "1540": { + "label": "constitutional crisis in the country", + "category": "related" + }, + "1541": { + "label": "constitutional", + "category": "related" + }, + "1542": { + "label": "Kashmiri Bazaar", + "category": "related" + }, + "1543": { + "label": "Gawalmandi", + "category": "related" + }, + "1544": { + "label": "Double Road", + "category": "related" + }, + "1545": { + "label": "Fifth Road", + "category": "related" + }, + "1546": { + "label": "Sixth Road", + "category": "related" + }, + "1547": { + "label": "Pakistan Institute of Medical Sciences", + "category": "related" + }, + "1548": { + "label": "Benazir Bhutto Hospital", + "category": "related" + }, + "1549": { + "label": "Holy Family Hospital", + "category": "related" + }, + "1550": { + "label": "Punjab healthcare department", + "category": "related" + }, + "1551": { + "label": "Regional Director of Health", + "category": "related" + }, + "1552": { + "label": "Anser Ishaq", + "category": "related" + }, + "1553": { + "label": "tahsildar", + "category": "related" + }, + "1554": { + "label": "Khawaja Mohammad Asif", + "category": "related" + }, + "1555": { + "label": "Qanun-i-Shahadat Order, 1984", + "category": "related" + }, + "1556": { + "label": "1984", + "category": "related" + }, + "1557": { + "label": "SKMT", + "category": "related" + }, + "1558": { + "label": "Miskeenabad", + "category": "related" + }, + "1559": { + "label": "Wah", + "category": "related" + }, + "1560": { + "label": "Aminabad", + "category": "related" + }, + "1561": { + "label": "Cecil Hotel", + "category": "related" + }, + "1562": { + "label": "Hashoo Group", + "category": "related" + }, + "1563": { + "label": "Once Upon a Time in Murree", + "category": "related" + }, + "1564": { + "label": "Omar Mukhtar Khan", + "category": "related" + }, + "1565": { + "label": "Hazro", + "category": "related" + }, + "1566": { + "label": "Fatehjang", + "category": "related" + }, + "1567": { + "label": "Attock-II", + "category": "related" + }, + "1568": { + "label": "Kamran Ashfaq", + "category": "related" + }, + "1569": { + "label": "Phulgran", + "category": "related" + }, + "1570": { + "label": "Shaheer Kamran", + "category": "related" + }, + "1571": { + "label": "Rashida Bibi", + "category": "related" + }, + "1572": { + "label": "Zainab Bibi", + "category": "related" + }, + "1573": { + "label": "Daska", + "category": "related" + }, + "1574": { + "label": "NAROWAL", + "category": "related" + }, + "1575": { + "label": "Police", + "category": "related" + }, + "1576": { + "label": "Khurram Shehzad", + "category": "related" + }, + "1577": { + "label": "Khawaja Farooq Ahmed", + "category": "related" + }, + "1578": { + "label": "Sardar Abdul Qayyum Niazi", + "category": "related" + }, + "1579": { + "label": "Faheem Akhtar Rabbani", + "category": "related" + }, + "1580": { + "label": "Chaudhry Rafiq Nayyar", + "category": "related" + }, + "1581": { + "label": "Abdul Qayyum Niazi", + "category": "related" + }, + "1582": { + "label": "Article 9", + "category": "related" + }, + "1583": { + "label": "Constitution of the Islamic Republic of Pakistan, 1973", + "category": "related" + }, + "1584": { + "label": "July 1, 1996", + "category": "related" + }, + "1585": { + "label": "EOBI", + "category": "related" + }, + "1586": { + "label": "EOBI pension", + "category": "related" + }, + "1587": { + "label": "Employees\u2019 Old Age Benefit Institution", + "category": "related" + }, + "1588": { + "label": "Japan", + "category": "related" + }, + "1589": { + "label": "Darbar Sakhi Mehmud Badshah", + "category": "related" + }, + "1590": { + "label": "Aabpara Chowk", + "category": "related" + }, + "1591": { + "label": "Allama Qamar Zaidi", + "category": "related" + }, + "1592": { + "label": "Tehreek-i- Nafaz Fiqh Jafariya", + "category": "related" + }, + "1593": { + "label": "Alhaj Ghulam Murtaza Chauhan", + "category": "related" + }, + "1594": { + "label": "TNFJ", + "category": "related" + }, + "1595": { + "label": "Samundri", + "category": "related" + }, + "1596": { + "label": "Mian Shafiq", + "category": "related" + }, + "1597": { + "label": "Mian", + "category": "related" + }, + "1598": { + "label": "Punjab Arms Amendment Ordinance 2015", + "category": "related" + }, + "1599": { + "label": "Punjab Arms Ordinance 1965", + "category": "related" + }, + "1600": { + "label": "1965", + "category": "related" + }, + "1601": { + "label": "police raided the place and nabbed the suspect", + "category": "related" + }, + "1602": { + "label": "Renala Saddar", + "category": "related" + }, + "1603": { + "label": "raided the place and nabbed the suspect", + "category": "related" + }, + "1604": { + "label": "police raided the", + "category": "related" + }, + "1605": { + "label": "Manzoor Pashteen", + "category": "related" + }, + "1606": { + "label": "Shahi Khan Sherani", + "category": "related" + }, + "1607": { + "label": "Mohammad Iqbal", + "category": "related" + }, + "1608": { + "label": "Mufti Ziaullah", + "category": "related" + }, + "1609": { + "label": "Maulana Abdul Wakil", + "category": "related" + }, + "1610": { + "label": "Fawad Khan", + "category": "related" + }, + "1611": { + "label": "Marwat", + "category": "related" + }, + "1612": { + "label": "southern district", + "category": "related" + }, + "1613": { + "label": "Inamullah", + "category": "related" + }, + "1614": { + "label": "Betanni Qaumi", + "category": "related" + }, + "1615": { + "label": "Karachi division", + "category": "related" + }, + "1616": { + "label": "Tando Mohammad Khan", + "category": "related" + }, + "1617": { + "label": "Umerkot", + "category": "related" + }, + "1618": { + "label": "Tharparkar", + "category": "related" + }, + "1619": { + "label": "Naushahro Feroze", + "category": "related" + }, + "1620": { + "label": "Shaheed Benazirabad", + "category": "related" + }, + "1621": { + "label": "Ernest Fahim", + "category": "related" + }, + "1622": { + "label": "Selinus University of Sciences and Literature", + "category": "related" + }, + "1623": { + "label": "Muslim majority", + "category": "related" + }, + "1624": { + "label": "they won\u2019t get it otherwise,\u201d he said", + "category": "related" + }, + "1625": { + "label": "they can\u2019t expect a sweet crop", + "category": "related" + }, + "1626": { + "label": "they won\u2019t get it otherwise", + "category": "related" + }, + "1627": { + "label": "they will\u2019 get it otherwise,", + "category": "related" + }, + "1628": { + "label": "Sindh Institute of Urology and Transplantation", + "category": "related" + }, + "1629": { + "label": "paediatric", + "category": "related" + }, + "1630": { + "label": "cardiology", + "category": "related" + }, + "1631": { + "label": "congenital heart disease", + "category": "related" + }, + "1632": { + "label": "heart", + "category": "related" + }, + "1633": { + "label": "SIUT", + "category": "related" + }, + "1634": { + "label": "heart-lung machine", + "category": "related" + }, + "1635": { + "label": "paediatric heart surgery", + "category": "related" + }, + "1636": { + "label": "open-heart surgery", + "category": "related" + }, + "1637": { + "label": "surgery", + "category": "related" + }, + "1638": { + "label": "Empowerment of Persons with Disabilities Act 2018", + "category": "related" + }, + "1639": { + "label": "NAB", + "category": "related" + }, + "1640": { + "label": "Ashiq Kaleri", + "category": "related" + }, + "1641": { + "label": "Ashique Hussain Kaleri", + "category": "related" + }, + "1642": { + "label": "Article 25 of the Constitution", + "category": "related" + }, + "1643": { + "label": "Haleji", + "category": "related" + }, + "1644": { + "label": "Hudero", + "category": "related" + }, + "1645": { + "label": "VEHARI", + "category": "related" + }, + "1646": { + "label": "Ikram", + "category": "related" + }, + "1647": { + "label": "Burewala City", + "category": "related" + }, + "1648": { + "label": "Malakwal", + "category": "related" + }, + "1649": { + "label": "Mandi Bahauddin district", + "category": "related" + }, + "1650": { + "label": "Rukkan", + "category": "related" + }, + "1651": { + "label": "Sharjeel Inaam Memon", + "category": "related" + }, + "1652": { + "label": "Aslam Gill", + "category": "related" + }, + "1653": { + "label": "Shahzad Cheema", + "category": "related" + }, + "1654": { + "label": "Parliament", + "category": "related" + }, + "1655": { + "label": "Irfanullah", + "category": "related" + }, + "1656": { + "label": "Ilyas", + "category": "related" + }, + "1657": { + "label": "Haris", + "category": "related" + }, + "1658": { + "label": "Saif", + "category": "related" + }, + "1659": { + "label": "Tehreek-i-Taliban Pakistan", + "category": "related" + }, + "1660": { + "label": "Ibrar", + "category": "related" + }, + "1661": { + "label": "terrorism wave in the country", + "category": "related" + }, + "1662": { + "label": "Second Anglo-Sikh War", + "category": "related" + }, + "1663": { + "label": "East India Company", + "category": "related" + }, + "1664": { + "label": "March 29, 1849", + "category": "related" + }, + "1665": { + "label": "Oriental College, Lahore", + "category": "related" + }, + "1666": { + "label": "MUZAFFARGARH", + "category": "related" + }, + "1667": { + "label": "Chaubara", + "category": "related" + }, + "1668": { + "label": "Nawankot", + "category": "related" + }, + "1669": { + "label": "Asghar", + "category": "related" + }, + "1670": { + "label": "Faridan Mai", + "category": "related" + }, + "1671": { + "label": "Arshat", + "category": "related" + }, + "1672": { + "label": "Jandanwala Road", + "category": "related" + }, + "1673": { + "label": "Mansoorabad", + "category": "related" + }, + "1674": { + "label": "Alhamra Art Gallery", + "category": "related" + }, + "1675": { + "label": "The Mall", + "category": "related" + }, + "1676": { + "label": "Hina Nasrullah", + "category": "related" + }, + "1677": { + "label": "Wahdat Rameez", + "category": "related" + }, + "1678": { + "label": "Sufism", + "category": "related" + }, + "1679": { + "label": "Sufi music", + "category": "related" + }, + "1680": { + "label": "Qila Saifullah", + "category": "related" + }, + "1681": { + "label": "Kohlu", + "category": "related" + }, + "1682": { + "label": "Balochistan Chief Minister", + "category": "related" + }, + "1683": { + "label": "Talaywala Headworks", + "category": "related" + }, + "1684": { + "label": "Abbasia Canal", + "category": "related" + }, + "1685": { + "label": "Shireen Minor Canal", + "category": "related" + }, + "1686": { + "label": "maze", + "category": "related" + }, + "1687": { + "label": "onion", + "category": "related" + }, + "1688": { + "label": "Shireen Minor", + "category": "related" + }, + "1689": { + "label": "Bahawal Victoria Hospital", + "category": "related" + }, + "1690": { + "label": "Bahawalnagar district", + "category": "related" + }, + "1691": { + "label": "police patrolling team", + "category": "related" + }, + "1692": { + "label": "Shahid Waheed", + "category": "related" + }, + "1693": { + "label": "senior-most judges of the apex court", + "category": "related" + }, + "1694": { + "label": "Jahangir Tareen", + "category": "related" + }, + "1695": { + "label": "Attaullah Tarar", + "category": "related" + }, + "1696": { + "label": "Special Assistant to the Prime Minister on Interior", + "category": "related" + }, + "1697": { + "label": "Malik Iqbal", + "category": "related" + }, + "1698": { + "label": "Ejaz Chaudhry", + "category": "related" + }, + "1699": { + "label": "National Disaster Management Authority", + "category": "related" + }, + "1700": { + "label": "last year\u2019s floods", + "category": "related" + }, + "1701": { + "label": "El Nino oceanographic phenomenon", + "category": "related" + }, + "1702": { + "label": "drought", + "category": "related" + }, + "1703": { + "label": "famine", + "category": "related" + }, + "1704": { + "label": "harvest", + "category": "related" + }, + "1705": { + "label": "crops", + "category": "related" + }, + "1706": { + "label": "livestock", + "category": "related" + }, + "1707": { + "label": "Nushki", + "category": "related" + }, + "1708": { + "label": "Zhob", + "category": "related" + }, + "1709": { + "label": "Al-Markaz-i-Islami", + "category": "related" + }, + "1710": { + "label": "Asfandyar Wali Khan", + "category": "related" + }, + "1711": { + "label": "Khadim Hussain", + "category": "related" + }, + "1712": { + "label": "Islami Jamiat Tulba", + "category": "related" + }, + "1713": { + "label": "Waseem Haider", + "category": "related" + }, + "1714": { + "label": "Syed Yawar Boukhari", + "category": "related" + }, + "1715": { + "label": "Khurrum Ali Khan", + "category": "related" + }, + "1716": { + "label": "PML", + "category": "related" + }, + "1717": { + "label": "Sher Ali Khan", + "category": "related" + }, + "1718": { + "label": "Kifayatullah", + "category": "related" + }, + "1719": { + "label": "Frontier Corps", + "category": "related" + }, + "1720": { + "label": "Kurrum", + "category": "related" + }, + "1721": { + "label": "Ishtiaq Ibrahim", + "category": "related" + }, + "1722": { + "label": "Syed Mohammad Attique Shah", + "category": "related" + }, + "1723": { + "label": "Judicial Complex", + "category": "related" + }, + "1724": { + "label": "Salarzai tehsil", + "category": "related" + }, + "1725": { + "label": "Haji Lal Bahadur", + "category": "related" + }, + "1726": { + "label": "Dak Lam Shah", + "category": "related" + }, + "1727": { + "label": "Lalozai", + "category": "related" + }, + "1728": { + "label": "Sikandakhel Bala", + "category": "related" + }, + "1729": { + "label": "Lahore Winter Meeting", + "category": "related" + }, + "1730": { + "label": "1,000 metres", + "category": "related" + }, + "1731": { + "label": "1,400-metre", + "category": "related" + }, + "1732": { + "label": "Gondal Queen", + "category": "related" + }, + "1733": { + "label": "1,000-metre", + "category": "related" + }, + "1734": { + "label": "Minister of State for Foreign Affairs", + "category": "related" + }, + "1735": { + "label": "Ajit Kumar Doval", + "category": "related" + }, + "1736": { + "label": "Abdul Qadir Patel", + "category": "related" + }, + "1737": { + "label": "Azad Jammu and Kashmir", + "category": "related" + }, + "1738": { + "label": "Poonch division", + "category": "related" + }, + "1739": { + "label": "Abbaspur", + "category": "related" + }, + "1740": { + "label": "Indian occupation", + "category": "related" + }, + "1741": { + "label": "South Asia", + "category": "related" + }, + "1742": { + "label": "Balochistan Revenue Authority", + "category": "related" + }, + "1743": { + "label": "economic", + "category": "related" + }, + "1744": { + "label": "Pakistan Revenue Automation Limited", + "category": "related" + }, + "1745": { + "label": "economy", + "category": "related" + }, + "1746": { + "label": "infrastructure", + "category": "related" + }, + "1747": { + "label": "rejected the census", + "category": "related" + }, + "1748": { + "label": "Giaspura", + "category": "related" + }, + "1749": { + "label": "Ludhiana", + "category": "related" + }, + "1750": { + "label": "East Punjab", + "category": "related" + }, + "1751": { + "label": "similar accident in June", + "category": "related" + }, + "1752": { + "label": "NDRF", + "category": "related" + }, + "1753": { + "label": "Andhra Pradesh", + "category": "related" + }, + "1754": { + "label": "a gas leak in the same area", + "category": "related" + }, + "1755": { + "label": "Hamas", + "category": "related" + }, + "1756": { + "label": "Gaza Strip", + "category": "related" + }, + "1757": { + "label": "blockaded territory", + "category": "related" + }, + "1758": { + "label": "Gaza\u2019s rulers", + "category": "related" + }, + "1759": { + "label": "Palestinian Authority", + "category": "related" + }, + "1760": { + "label": "Israel", + "category": "related" + }, + "1761": { + "label": "Gaza", + "category": "related" + }, + "1762": { + "label": "Islamabad Traffic Police", + "category": "related" + }, + "1763": { + "label": "Faizabad", + "category": "related" + }, + "1764": { + "label": "Media Town", + "category": "related" + }, + "1765": { + "label": "Hamayatabad", + "category": "related" + }, + "1766": { + "label": "Khanewal", + "category": "related" + }, + "1767": { + "label": "Ferozwala", + "category": "related" + }, + "1768": { + "label": "Sahipur", + "category": "related" + }, + "1769": { + "label": "Ferozw", + "category": "related" + }, + "1770": { + "label": "Dr Akbar Nasir Khan", + "category": "related" + }, + "1771": { + "label": "Babar Naseem", + "category": "related" + }, + "1772": { + "label": "Team Sante Polo", + "category": "related" + }, + "1773": { + "label": "Team Sante", + "category": "related" + }, + "1774": { + "label": "Maisam Baloch", + "category": "related" + }, + "1775": { + "label": "Umer Minhas", + "category": "related" + }, + "1776": { + "label": "Hamza Nawaz", + "category": "related" + }, + "1777": { + "label": "Beretta Asean", + "category": "related" + }, + "1778": { + "label": "Sante Polo", + "category": "related" + }, + "1779": { + "label": "Asad Umar", + "category": "related" + }, + "1780": { + "label": "Pakistan Workers Federation", + "category": "related" + }, + "1781": { + "label": "Ali Nawaz Awan", + "category": "related" + }, + "1782": { + "label": "Naz Cinema", + "category": "related" + }, + "1783": { + "label": "Abdullahpur", + "category": "related" + }, + "1784": { + "label": "Mid-City Colony", + "category": "related" + }, + "1785": { + "label": "Jamilabad", + "category": "related" + }, + "1786": { + "label": "Civil Lines", + "category": "related" + }, + "1787": { + "label": "police area", + "category": "related" + }, + "1788": { + "label": "Civil Lines police area", + "category": "related" + }, + "1789": { + "label": "Article 19", + "category": "related" + }, + "1790": { + "label": "Convention on the Rights of the Child", + "category": "related" + }, + "1791": { + "label": "Saya school", + "category": "related" + }, + "1792": { + "label": "legislation to address PHP", + "category": "related" + }, + "1793": { + "label": "senators", + "category": "related" + }, + "1794": { + "label": "law makers", + "category": "related" + }, + "1795": { + "label": "corporal punishment", + "category": "related" + }, + "1796": { + "label": "punishment", + "category": "related" + }, + "1797": { + "label": "legislative", + "category": "related" + }, + "1798": { + "label": "Kharian Motorway", + "category": "related" + }, + "1799": { + "label": "Fatima Jinnah Women University", + "category": "related" + }, + "1800": { + "label": "State Guest House", + "category": "related" + }, + "1801": { + "label": "Commissioner House", + "category": "related" + }, + "1802": { + "label": "Neelum valley", + "category": "related" + }, + "1803": { + "label": "Astore", + "category": "related" + }, + "1804": { + "label": "Ghizer", + "category": "related" + }, + "1805": { + "label": "Skardu", + "category": "related" + }, + "1806": { + "label": "Sargodha Road", + "category": "related" + }, + "1807": { + "label": "Sufian", + "category": "related" + }, + "1808": { + "label": "Ishtiaq", + "category": "related" + }, + "1809": { + "label": "Zubair", + "category": "related" + }, + "1810": { + "label": "Fesco", + "category": "related" + }, + "1811": { + "label": "Covid-19 pandemic", + "category": "related" + }, + "1812": { + "label": "workers\u2019 welfare fund", + "category": "related" + }, + "1813": { + "label": "labour colonies", + "category": "related" + }, + "1814": { + "label": "unemployment", + "category": "related" + }, + "1815": { + "label": "a cup of tea", + "category": "related" + }, + "1816": { + "label": "tea", + "category": "related" + }, + "1817": { + "label": "Dhoke Haider Khan", + "category": "related" + }, + "1818": { + "label": "Murree district", + "category": "related" + }, + "1819": { + "label": "Charian", + "category": "related" + }, + "1820": { + "label": "Rhatal", + "category": "related" + }, + "1821": { + "label": "Topa Kair", + "category": "related" + }, + "1822": { + "label": "Bhenati", + "category": "related" + }, + "1823": { + "label": "Hafiz Naeemur Rehman", + "category": "related" + }, + "1824": { + "label": "Asif Zardari", + "category": "related" + }, + "1825": { + "label": "the entire city was in a shambles", + "category": "related" + }, + "1826": { + "label": "Roshan Buriro", + "category": "related" + }, + "1827": { + "label": "Sindh United Party", + "category": "related" + }, + "1828": { + "label": "Ayaz Latif Palijo", + "category": "related" + }, + "1829": { + "label": "Qaumi Awami Tehreek", + "category": "related" + }, + "1830": { + "label": "Jeay Sindh Mahaz-Riaz", + "category": "related" + }, + "1831": { + "label": "Riaz Ali Chandio", + "category": "related" + }, + "1832": { + "label": "Shafiq Moosvi", + "category": "related" + }, + "1833": { + "label": "Sindh Action Committee", + "category": "related" + }, + "1834": { + "label": "Chief Minister", + "category": "related" + }, + "1835": { + "label": "Murtaza Wahab", + "category": "related" + }, + "1836": { + "label": "Chief", + "category": "related" + }, + "1837": { + "label": "CTD", + "category": "related" + }, + "1838": { + "label": "Abid Jameel", + "category": "related" + }, + "1839": { + "label": "health secretary", + "category": "related" + }, + "1840": { + "label": "Khyber Pakhtunkhwa government", + "category": "related" + }, + "1841": { + "label": "Wapda Hydero Electric Workers Union", + "category": "related" + }, + "1842": { + "label": "Hadayatur Rehman", + "category": "related" + }, + "1843": { + "label": "\u2018Haq Do Tehreek\u2019", + "category": "related" + }, + "1844": { + "label": "Dadu district", + "category": "related" + }, + "1845": { + "label": "Mehar", + "category": "related" + }, + "1846": { + "label": "Johi", + "category": "related" + }, + "1847": { + "label": "Jagir", + "category": "related" + }, + "1848": { + "label": "Mauladad", + "category": "related" + }, + "1849": { + "label": "Furqan Ali Soomro", + "category": "related" + }, + "1850": { + "label": "Jacobabad police", + "category": "related" + }, + "1851": { + "label": "Khalid Maqbool", + "category": "related" + }, + "1852": { + "label": "Hyderabad Chamber of Commerce and Industry", + "category": "related" + }, + "1853": { + "label": "Site", + "category": "related" + }, + "1854": { + "label": "Ayesha Nawaz Chaudhry", + "category": "related" + }, + "1855": { + "label": "Zulfiqar Ali Badar", + "category": "related" + }, + "1856": { + "label": "Syed Kasim Gillani", + "category": "related" + }, + "1857": { + "label": "Samina Khalid Ghurki", + "category": "related" + }, + "1858": { + "label": "PPP digital media", + "category": "related" + }, + "1859": { + "label": "Punjab Institute of Public Health", + "category": "related" + }, + "1860": { + "label": "Nishtar Hospital", + "category": "related" + }, + "1861": { + "label": "Dr Ali Mehdi", + "category": "related" + }, + "1862": { + "label": "Dr Amir Asad", + "category": "related" + }, + "1863": { + "label": "RAHIM YAR KHAN", + "category": "related" + }, + "1864": { + "label": "Sukkur division", + "category": "related" + }, + "1865": { + "label": "Rehman Baba Express", + "category": "related" + }, + "1866": { + "label": "Pakistan Railway", + "category": "related" + }, + "1867": { + "label": "passengers who had to disembark here", + "category": "related" + }, + "1868": { + "label": "Commission of Inquiry on Enforced Disappearances", + "category": "related" + }, + "1869": { + "label": "transgender Persons (Protection of Rights) Act 2018", + "category": "related" + }, + "1870": { + "label": "Khawaja Muhammad Asif", + "category": "related" + }, + "1871": { + "label": "Lahore-Karachi Motorway Interchange", + "category": "related" + }, + "1872": { + "label": "Dhudian", + "category": "related" + }, + "1873": { + "label": "Saggian Par Kalan", + "category": "related" + }, + "1874": { + "label": "Children\u2019s Hospital Lahore", + "category": "related" + }, + "1875": { + "label": "Rukhsana", + "category": "related" + }, + "1876": { + "label": "staff nurse", + "category": "related" + }, + "1877": { + "label": "cardiac surgery", + "category": "related" + }, + "1878": { + "label": "Saranwali", + "category": "related" + }, + "1879": { + "label": "Sialkot", + "category": "related" + }, + "1880": { + "label": "Ahsanpur", + "category": "related" + }, + "1881": { + "label": "Haveli", + "category": "related" + }, + "1882": { + "label": "Mehar Nasir Sial", + "category": "related" + }, + "1883": { + "label": "Katcha area", + "category": "related" + }, + "1884": { + "label": "Shahid Khaqan Abbasi", + "category": "related" + }, + "1885": { + "label": "Election Commission of Pakistan", + "category": "related" + }, + "1886": { + "label": "Sikandar Sultan Raja", + "category": "related" + }, + "1887": { + "label": "Omar Hamid Khan", + "category": "related" + }, + "1888": { + "label": "DEC Irfan Kausar", + "category": "related" + }, + "1889": { + "label": "federal secretary", + "category": "related" + }, + "1890": { + "label": "Zafar Iqbal Hussain", + "category": "related" + }, + "1891": { + "label": "Khalid Siddique", + "category": "related" + }, + "1892": { + "label": "Additional Secretary (HR)", + "category": "related" + }, + "1893": { + "label": "additional secretary (HR)", + "category": "related" + }, + "1894": { + "label": "additional Secretary (HR)", + "category": "related" + }, + "1895": { + "label": "Chau\u00addhry Sarwar", + "category": "related" + }, + "1896": { + "label": "Punjab governor", + "category": "related" + }, + "1897": { + "label": "Friendship Gate", + "category": "related" + }, + "1898": { + "label": "Pakistan Customs", + "category": "related" + }, + "1899": { + "label": "Pakistan Press Freedom Report", + "category": "related" + }, + "1900": { + "label": "Freedom Network", + "category": "related" + }, + "1901": { + "label": "international day to combat impunity of crimes against journalists", + "category": "related" + }, + "1902": { + "label": "provinces", + "category": "related" + }, + "1903": { + "label": "GB", + "category": "related" + }, + "1904": { + "label": "Chamkani", + "category": "related" + }, + "1905": { + "label": "provincial", + "category": "related" + }, + "1906": { + "label": "Firoz Shah", + "category": "related" + }, + "1907": { + "label": "DIG Training Khyber Pakhtunkhwa", + "category": "related" + }, + "1908": { + "label": "Charbagh", + "category": "related" + }, + "1909": { + "label": "Sara Cheena", + "category": "related" + }, + "1910": { + "label": "village", + "category": "related" + }, + "1911": { + "label": "Sw", + "category": "related" + }, + "1912": { + "label": "Haji Fazl Ilahi", + "category": "related" + }, + "1913": { + "label": "Haji Fazal Ilahi", + "category": "related" + }, + "1914": { + "label": "Dir Colony", + "category": "related" + }, + "1915": { + "label": "Ghareebabad", + "category": "related" + }, + "1916": { + "label": "Kaga Walla", + "category": "related" + }, + "1917": { + "label": "Bahadar Kallay", + "category": "related" + }, + "1918": { + "label": "Scheme Chowk", + "category": "related" + }, + "1919": { + "label": "Salman Tabassum", + "category": "related" + }, + "1920": { + "label": "2000", + "category": "related" + }, + "1921": { + "label": "Pashto", + "category": "related" + }, + "1922": { + "label": "Bilimina", + "category": "related" + }, + "1923": { + "label": "Hangu district", + "category": "related" + }, + "1924": { + "label": "Samana", + "category": "related" + }, + "1925": { + "label": "rescue officials", + "category": "related" + }, + "1926": { + "label": "rescue service", + "category": "related" + }, + "1927": { + "label": "pulled out", + "category": "related" + }, + "1928": { + "label": "Bagh-Markaz", + "category": "related" + }, + "1929": { + "label": "Bhutaan Sar", + "category": "related" + }, + "1930": { + "label": "Haidar Kandaw", + "category": "related" + }, + "1931": { + "label": "Than Darra", + "category": "related" + }, + "1932": { + "label": "Takhtakai", + "category": "related" + }, + "1933": { + "label": "Bara", + "category": "related" + }, + "1934": { + "label": "Kurram", + "category": "related" + }, + "1935": { + "label": "Orakzai", + "category": "related" + }, + "1936": { + "label": "Naran", + "category": "related" + }, + "1937": { + "label": "Ahmad Nawaz", + "category": "related" + }, + "1938": { + "label": "Din Mohammad", + "category": "related" + }, + "1939": { + "label": "Shaki Uzair", + "category": "related" + }, + "1940": { + "label": "DPO", + "category": "related" + }, + "1941": { + "label": "Khal", + "category": "related" + }, + "1942": { + "label": "Lower Dir district", + "category": "related" + }, + "1943": { + "label": "Awal Said", + "category": "related" + }, + "1944": { + "label": "Wali Khan", + "category": "related" + }, + "1945": { + "label": "Khairpur Cup", + "category": "related" + }, + "1946": { + "label": "Karachi Racecourse", + "category": "related" + }, + "1947": { + "label": "Gymkhana race meeting", + "category": "related" + }, + "1948": { + "label": "Zaki Zakir", + "category": "related" + }, + "1949": { + "label": "Zabal One", + "category": "related" + }, + "1950": { + "label": "Z", + "category": "related" + }, + "1951": { + "label": "Islamabad International Airport", + "category": "related" + }, + "1952": { + "label": "Sajjid Hussain Turi", + "category": "related" + }, + "1953": { + "label": "Adviser to Prime Minister", + "category": "related" + }, + "1954": { + "label": "Amir Muqam", + "category": "related" + }, + "1955": { + "label": "PAF", + "category": "related" + }, + "1956": { + "label": "Gilgit-Balt", + "category": "related" + }, + "1957": { + "label": "The Tonight Show with Jimmy Fallon", + "category": "related" + }, + "1958": { + "label": "late-night shows", + "category": "related" + }, + "1959": { + "label": "Last Week Tonight with John Oliver", + "category": "related" + }, + "1960": { + "label": "Saturday Night Live", + "category": "related" + }, + "1961": { + "label": "film and television studios", + "category": "related" + }, + "1962": { + "label": "Walt Disney Co", + "category": "related" + }, + "1963": { + "label": "producers", + "category": "related" + }, + "1964": { + "label": "California", + "category": "related" + }, + "1965": { + "label": "Milken Institute", + "category": "related" + }, + "1966": { + "label": "think tank", + "category": "related" + }, + "1967": { + "label": "Pakistan Muslim League (PML-Q)", + "category": "related" + }, + "1968": { + "label": "Chaudhry Salik Husain", + "category": "related" + }, + "1969": { + "label": "Chaudhry Sal", + "category": "related" + }, + "1970": { + "label": "UN Secretary-General", + "category": "related" + }, + "1971": { + "label": "Antonio Guterres", + "category": "related" + }, + "1972": { + "label": "a ban on women working and girls going to school", + "category": "related" + }, + "1973": { + "label": "UN General Assembly", + "category": "related" + }, + "1974": { + "label": "Aasim Sajjad Akhtar", + "category": "related" + }, + "1975": { + "label": "Awami Workers Party", + "category": "related" + }, + "1976": { + "label": "Samina Bibi", + "category": "related" + }, + "1977": { + "label": "Hattar village", + "category": "related" + }, + "1978": { + "label": "Chappar Sharif", + "category": "related" + }, + "1979": { + "label": "Inam", + "category": "related" + }, + "1980": { + "label": "looted official wheat", + "category": "related" + }, + "1981": { + "label": "ASI", + "category": "related" + }, + "1982": { + "label": "Sanaullah Ghumman", + "category": "related" + }, + "1983": { + "label": "Pakistan National Heart Association", + "category": "related" + }, + "1984": { + "label": "tobacco related diseases", + "category": "related" + }, + "1985": { + "label": "tobacco industry", + "category": "related" + }, + "1986": { + "label": "Nasser Bagh", + "category": "related" + }, + "1987": { + "label": "Labour Day", + "category": "related" + }, + "1988": { + "label": "metrobus service", + "category": "related" + }, + "1989": { + "label": "PTA", + "category": "related" + }, + "1990": { + "label": "energy crisis", + "category": "related" + }, + "1991": { + "label": "Institute of Policy Studies", + "category": "related" + }, + "1992": { + "label": "privatisation", + "category": "related" + }, + "1993": { + "label": "power sector", + "category": "related" + }, + "1994": { + "label": "electricity infrastructure", + "category": "related" + }, + "1995": { + "label": "transmission and distribution system", + "category": "related" + }, + "1996": { + "label": "line losses", + "category": "related" + }, + "1997": { + "label": "transmission and distribution", + "category": "related" + }, + "1998": { + "label": "Karachi-to-Lahore Shalimar Express", + "category": "related" + }, + "1999": { + "label": "Cantonment Railway Station", + "category": "related" + }, + "2000": { + "label": "parlour coach", + "category": "related" + }, + "2001": { + "label": "coaches", + "category": "related" + }, + "2002": { + "label": "standard coaches", + "category": "related" + }, + "2003": { + "label": "dining car", + "category": "related" + }, + "2004": { + "label": "business coaches", + "category": "related" + }, + "2005": { + "label": "air conditioned", + "category": "related" + }, + "2006": { + "label": "Kala Board", + "category": "related" + }, + "2007": { + "label": "Gulshan-i", + "category": "related" + }, + "2008": { + "label": "Gul", + "category": "related" + }, + "2009": { + "label": "Sakkur", + "category": "related" + }, + "2010": { + "label": "Nazimabad", + "category": "related" + }, + "2011": { + "label": "Gulshan-i-Hadeed", + "category": "related" + }, + "2012": { + "label": "Malir Cantonment", + "category": "related" + }, + "2013": { + "label": "University Road", + "category": "related" + }, + "2014": { + "label": "Model Colony", + "category": "related" + }, + "2015": { + "label": "Gulzar-i-Hijri", + "category": "related" + }, + "2016": { + "label": "Malir Halt", + "category": "related" + }, + "2017": { + "label": "DG", + "category": "related" + }, + "2018": { + "label": "Bagarji Bella", + "category": "related" + }, + "2019": { + "label": "Saifal Jatoi", + "category": "related" + }, + "2020": { + "label": "Jatoi", + "category": "related" + }, + "2021": { + "label": "SukkUR", + "category": "related" + }, + "2022": { + "label": "Zahid Hussain Khatyal", + "category": "related" + }, + "2023": { + "label": "Syed Abdullah Shah Institute of Medical Sciences", + "category": "related" + }, + "2024": { + "label": "Jhanderanwala", + "category": "related" + }, + "2025": { + "label": "post-mortem", + "category": "related" + }, + "2026": { + "label": "cause of death", + "category": "related" + }, + "2027": { + "label": "Hidayatur Rehman Baloch", + "category": "related" + }, + "2028": { + "label": "Gwadar Movement", + "category": "related" + }, + "2029": { + "label": "the prevailing crises", + "category": "related" + }, + "2030": { + "label": "the coming election", + "category": "related" + }, + "2031": { + "label": "Infectious Diseases Hospital", + "category": "related" + }, + "2032": { + "label": "Services Hospital", + "category": "related" + }, + "2033": { + "label": "Ittefaq Hospital", + "category": "related" + }, + "2034": { + "label": "Kalma Chowk", + "category": "related" + }, + "2035": { + "label": "Mohsin Raza Naqvi", + "category": "related" + }, + "2036": { + "label": "All-Pakistan Trade Union Federation", + "category": "related" + }, + "2037": { + "label": "trade union", + "category": "related" + }, + "2038": { + "label": "Nadra", + "category": "related" + }, + "2039": { + "label": "Workers Welfare Fund", + "category": "related" + }, + "2040": { + "label": "Social Security", + "category": "related" + }, + "2041": { + "label": "Salahuddin Ayubi", + "category": "related" + }, + "2042": { + "label": "Social", + "category": "related" + }, + "2043": { + "label": "cricket", + "category": "related" + }, + "2044": { + "label": "Lahore Gymkhana Cricket Ground", + "category": "related" + }, + "2045": { + "label": "bats", + "category": "related" + }, + "2046": { + "label": "LGCC", + "category": "related" + }, + "2047": { + "label": "England", + "category": "related" + }, + "2048": { + "label": "Madina Town", + "category": "related" + }, + "2049": { + "label": "Shorkot", + "category": "related" + }, + "2050": { + "label": "DHQ hospital", + "category": "related" + }, + "2051": { + "label": "DHQ", + "category": "related" + }, + "2052": { + "label": "Shamkot", + "category": "related" + }, + "2053": { + "label": "Luddan", + "category": "related" + }, + "2054": { + "label": "Vehari", + "category": "related" + }, + "2055": { + "label": "a few days back", + "category": "related" + }, + "2056": { + "label": "a dacoity-cum-murder", + "category": "related" + }, + "2057": { + "label": "a murder", + "category": "related" + }, + "2058": { + "label": "Muhammad Shabbir", + "category": "related" + }, + "2059": { + "label": "Sajida Parveen", + "category": "related" + }, + "2060": { + "label": "Gulzar Chishti", + "category": "related" + }, + "2061": { + "label": "Faizi Khawaja", + "category": "related" + }, + "2062": { + "label": "Pakistan Kissan Committee", + "category": "related" + }, + "2063": { + "label": "Pakistan Haqooq Khalq Movement", + "category": "related" + }, + "2064": { + "label": "Pakistan Bhatta Mazdoor Union", + "category": "related" + }, + "2065": { + "label": "security forces", + "category": "related" + }, + "2066": { + "label": "attack", + "category": "related" + }, + "2067": { + "label": "chief justice", + "category": "related" + }, + "2068": { + "label": "Kohi-Mala", + "category": "related" + }, + "2069": { + "label": "KP", + "category": "related" + }, + "2070": { + "label": "Qila Abdullah", + "category": "related" + }, + "2071": { + "label": "Pishin", + "category": "related" + }, + "2072": { + "label": "Chaman", + "category": "related" + }, + "2073": { + "label": "Musakhail", + "category": "related" + }, + "2074": { + "label": "Muslim Bagh", + "category": "related" + }, + "2075": { + "label": "president", + "category": "related" + }, + "2076": { + "label": "Bila\u00adwal Bhutto-Zardari", + "category": "related" + }, + "2077": { + "label": "foreign minister", + "category": "related" + }, + "2078": { + "label": "labourers", + "category": "related" + }, + "2079": { + "label": "socio-economic", + "category": "related" + }, + "2080": { + "label": "socio-economic and social well-being", + "category": "related" + }, + "2081": { + "label": "Insurrection", + "category": "related" + }, + "2082": { + "label": "intelligence", + "category": "related" + }, + "2083": { + "label": "Miramshah", + "category": "related" + }, + "2084": { + "label": "ISPR", + "category": "related" + }, + "2085": { + "label": "military\u2019s media wing", + "category": "related" + }, + "2086": { + "label": "security agencies", + "category": "related" + }, + "2087": { + "label": "Manzoor Baloch", + "category": "related" + }, + "2088": { + "label": "Pakistan Workers Confederation of Balochistan", + "category": "related" + }, + "2089": { + "label": "Ali Bakhsh Jamali", + "category": "related" + }, + "2090": { + "label": "Pir Muhammad Kakardad", + "category": "related" + }, + "2091": { + "label": "Muhammad Baloch", + "category": "related" + }, + "2092": { + "label": "Kalat", + "category": "related" + }, + "2093": { + "label": "Loralai", + "category": "related" + }, + "2094": { + "label": "Sibi", + "category": "related" + }, + "2095": { + "label": "Turbat", + "category": "related" + }, + "2096": { + "label": "Balochistan University", + "category": "related" + }, + "2097": { + "label": "provincial HEC", + "category": "related" + }, + "2098": { + "label": "18th Constitution amendment", + "category": "related" + }, + "2099": { + "label": "Akhtar Hayat Khan Gandapur", + "category": "related" + }, + "2100": { + "label": "Manglor", + "category": "related" + }, + "2101": { + "label": "twin explosions", + "category": "related" + }, + "2102": { + "label": "Khyber Teaching Hospital", + "category": "related" + }, + "2103": { + "label": "Pervez Elahi", + "category": "related" + }, + "2104": { + "label": "Sajid Hussain Turi", + "category": "related" + }, + "2105": { + "label": "Maulana Hidayat Rehman Baloch", + "category": "related" + }, + "2106": { + "label": "Munsifabad", + "category": "related" + }, + "2107": { + "label": "municipal administration", + "category": "related" + }, + "2108": { + "label": "Younasabad", + "category": "related" + }, + "2109": { + "label": "Muddasir Khan", + "category": "related" + }, + "2110": { + "label": "badminton", + "category": "related" + }, + "2111": { + "label": "Abudarda", + "category": "related" + }, + "2112": { + "label": "Zahidullah", + "category": "related" + }, + "2113": { + "label": "Akhtar Rasool", + "category": "related" + }, + "2114": { + "label": "Ayub Medical Complex", + "category": "related" + }, + "2115": { + "label": "Khushala", + "category": "related" + }, + "2116": { + "label": "Hungarian", + "category": "related" + }, + "2117": { + "label": "Hungary", + "category": "related" + }, + "2118": { + "label": "European", + "category": "related" + }, + "2119": { + "label": "Senate Chairman", + "category": "related" + }, + "2120": { + "label": "Sadiq Sanjrani", + "category": "related" + }, + "2121": { + "label": "freedom of the press", + "category": "related" + }, + "2122": { + "label": "democratic setup", + "category": "related" + }, + "2123": { + "label": "Maneri Bala", + "category": "related" + }, + "2124": { + "label": "Swabi Interchange", + "category": "related" + }, + "2125": { + "label": "Islamabad-Peshawar Motorway", + "category": "related" + }, + "2126": { + "label": "Mohmand tribal district", + "category": "related" + }, + "2127": { + "label": "Chamarkand", + "category": "related" + }, + "2128": { + "label": "Saidur Rahman", + "category": "related" + }, + "2129": { + "label": "Shahzaib Khan", + "category": "related" + }, + "2130": { + "label": "Pakistan U-19", + "category": "related" + }, + "2131": { + "label": "Shamyl Hussain", + "category": "related" + }, + "2132": { + "label": "Wasi Siddiquee", + "category": "related" + }, + "2133": { + "label": "Iqbal Hussain", + "category": "related" + }, + "2134": { + "label": "Iqbal Hussain Emon", + "category": "related" + }, + "2135": { + "label": "Pakistan Bridge Federa\u00adtion", + "category": "related" + }, + "2136": { + "label": "World Championships", + "category": "related" + }, + "2137": { + "label": "United Arab Emirates", + "category": "related" + }, + "2138": { + "label": "Pakistan Bridge Federa\u021bion", + "category": "related" + }, + "2139": { + "label": "Jordan", + "category": "related" + }, + "2140": { + "label": "National Stadium", + "category": "related" + }, + "2141": { + "label": "Mohammad Rizwan", + "category": "related" + }, + "2142": { + "label": "the recent five-match T20 series", + "category": "related" + }, + "2143": { + "label": "the third match", + "category": "related" + }, + "2144": { + "label": "the previous series", + "category": "related" + }, + "2145": { + "label": "the hosts", + "category": "related" + }, + "2146": { + "label": "Nationalist Congress Party", + "category": "related" + }, + "2147": { + "label": "Sharad Pawar", + "category": "related" + }, + "2148": { + "label": "National Security Agency", + "category": "related" + }, + "2149": { + "label": "Ajit Doval", + "category": "related" + }, + "2150": { + "label": "Prime Minister\u2019s Office", + "category": "related" + }, + "2151": { + "label": "Narendra Modi", + "category": "related" + }, + "2152": { + "label": "Pathankot attack", + "category": "related" + }, + "2153": { + "label": "Pulwama attack", + "category": "related" + }, + "2154": { + "label": "Salva Kiir", + "category": "related" + }, + "2155": { + "label": "IGAD", + "category": "related" + }, + "2156": { + "label": "Bin Qasim Power Station", + "category": "related" + }, + "2157": { + "label": "order of the Supreme Court", + "category": "related" + }, + "2158": { + "label": "sales tax", + "category": "related" + }, + "2159": { + "label": "excise duty", + "category": "related" + }, + "2160": { + "label": "tax", + "category": "related" + }, + "2161": { + "label": "revenue collection", + "category": "related" + }, + "2162": { + "label": "Overseas Investors Chamber of Commerce and Industry", + "category": "related" + }, + "2163": { + "label": "dollar", + "category": "related" + }, + "2164": { + "label": "stock market", + "category": "related" + }, + "2165": { + "label": "outflow of foreign exchange", + "category": "related" + }, + "2166": { + "label": "its break-up value", + "category": "related" + }, + "2167": { + "label": "profit per outstanding share", + "category": "related" + }, + "2168": { + "label": "stock exchange", + "category": "related" + }, + "2169": { + "label": "its eventual value", + "category": "related" + }, + "2170": { + "label": "Khuzdar district", + "category": "related" + }, + "2171": { + "label": "World Press Freedom Index", + "category": "related" + }, + "2172": { + "label": "Reporters Without Borders", + "category": "related" + }, + "2173": { + "label": "journalists", + "category": "related" + }, + "2174": { + "label": "journalism", + "category": "related" + }, + "2175": { + "label": "Leader of the House", + "category": "related" + }, + "2176": { + "label": "Shahzad Waseem", + "category": "related" + }, + "2177": { + "label": "the government\u2019s", + "category": "related" + }, + "2178": { + "label": "Shahida Akhtar Ali", + "category": "related" + }, + "2179": { + "label": "Pakistan PML-", + "category": "related" + }, + "2180": { + "label": "Wazirabad attack", + "category": "related" + }, + "2181": { + "label": "Information Minis\u00adter", + "category": "related" + }, + "2182": { + "label": "Mansoor Usman Awan", + "category": "related" + }, + "2183": { + "label": "Rawalpindi district", + "category": "related" + }, + "2184": { + "label": "Rawal Town", + "category": "related" + }, + "2185": { + "label": "Ahmednagar", + "category": "related" + }, + "2186": { + "label": "Latifabad Town", + "category": "related" + }, + "2187": { + "label": "Hyderabad district", + "category": "related" + }, + "2188": { + "label": "Shah Latifabad Town", + "category": "related" + }, + "2189": { + "label": "Tandojam Town", + "category": "related" + }, + "2190": { + "label": "Mian Sarfaraz Town", + "category": "related" + }, + "2191": { + "label": "Tandojam", + "category": "related" + }, + "2192": { + "label": "Asad Qaiser", + "category": "related" + }, + "2193": { + "label": "Shibli Faraz", + "category": "related" + }, + "2194": { + "label": "Omar Ayub Khan", + "category": "related" + }, + "2195": { + "label": "Hammad Azhar", + "category": "related" + }, + "2196": { + "label": "BISE Rawalpindi", + "category": "related" + }, + "2197": { + "label": "Mohammad Adnan Khan", + "category": "related" + }, + "2198": { + "label": "Chauntra", + "category": "related" + }, + "2199": { + "label": "Adhwal", + "category": "related" + }, + "2200": { + "label": "Jhatha Hathial", + "category": "related" + }, + "2201": { + "label": "Government High School Adhwal", + "category": "related" + }, + "2202": { + "label": "Government High School Jhatha Hathial", + "category": "related" + }, + "2203": { + "label": "Government High School Neela Dhula", + "category": "related" + }, + "2204": { + "label": "Attock District Emergency Officer", + "category": "related" + }, + "2205": { + "label": "bomb disposal squad", + "category": "related" + }, + "2206": { + "label": "environment department", + "category": "related" + }, + "2207": { + "label": "Senate Secretariat Employees Cooperative Housing Society", + "category": "related" + }, + "2208": { + "label": "Chief Commissioner", + "category": "related" + }, + "2209": { + "label": "NA secretariat", + "category": "related" + }, + "2210": { + "label": "MNA", + "category": "related" + }, + "2211": { + "label": "Parliament Lodges", + "category": "related" + }, + "2212": { + "label": "Nafisa Shah", + "category": "related" + }, + "2213": { + "label": "Drap", + "category": "related" + }, + "2214": { + "label": "Maroof International Hospital", + "category": "related" + }, + "2215": { + "label": "NBC", + "category": "related" + }, + "2216": { + "label": "Maroof", + "category": "related" + }, + "2217": { + "label": "Investigator Initiated Trial", + "category": "related" + }, + "2218": { + "label": "clinical trial", + "category": "related" + }, + "2219": { + "label": "phase I", + "category": "related" + }, + "2220": { + "label": "phase II", + "category": "related" + }, + "2221": { + "label": "Phase I", + "category": "related" + }, + "2222": { + "label": "Phase II", + "category": "related" + }, + "2223": { + "label": "Investigator Initiated Trials", + "category": "related" + }, + "2224": { + "label": "Gurudwara Panja Sahib Hassanabdal", + "category": "related" + }, + "2225": { + "label": "Sadhu Mela", + "category": "related" + }, + "2226": { + "label": "Park Enclave III", + "category": "related" + }, + "2227": { + "label": "Chak Shahzad", + "category": "related" + }, + "2228": { + "label": "C-", + "category": "related" + }, + "2229": { + "label": "Engro Corporation", + "category": "related" + }, + "2230": { + "label": "Canada", + "category": "related" + }, + "2231": { + "label": "Khairpur", + "category": "related" + }, + "2232": { + "label": "Mir Abid Khan Sundrani", + "category": "related" + }, + "2233": { + "label": "SUKKUR", + "category": "related" + }, + "2234": { + "label": "Mill Colony", + "category": "related" + }, + "2235": { + "label": "B-Section", + "category": "related" + }, + "2236": { + "label": "Chaudhry Pervaiz Elahi", + "category": "related" + }, + "2237": { + "label": "Rashid Khilji", + "category": "related" + }, + "2238": { + "label": "Sharmila Farooqui", + "category": "related" + }, + "2239": { + "label": "Imdad Pitafi", + "category": "related" + }, + "2240": { + "label": "Raja Razzaq", + "category": "related" + }, + "2241": { + "label": "Shahzain Bugti", + "category": "related" + }, + "2242": { + "label": "Federal Minister for Narcotics Control", + "category": "related" + }, + "2243": { + "label": "Aijaz Jakhrani", + "category": "related" + }, + "2244": { + "label": "Adviser", + "category": "related" + }, + "2245": { + "label": "Sohail Rajput", + "category": "related" + }, + "2246": { + "label": "Javed Odho", + "category": "related" + }, + "2247": { + "label": "Karachi police", + "category": "related" + }, + "2248": { + "label": "Special Branch", + "category": "related" + }, + "2249": { + "label": "Nara", + "category": "related" + }, + "2250": { + "label": "Kachho", + "category": "related" + }, + "2251": { + "label": "coastal belt", + "category": "related" + }, + "2252": { + "label": "Rafi Garden", + "category": "related" + }, + "2253": { + "label": "Al-Razaq Villas", + "category": "related" + }, + "2254": { + "label": "explosives", + "category": "related" + }, + "2255": { + "label": "explosive material", + "category": "related" + }, + "2256": { + "label": "Pathan", + "category": "related" + }, + "2257": { + "label": "University of Agricultural Faisalabad", + "category": "related" + }, + "2258": { + "label": "Dr Muhammad Sarwar Khan", + "category": "related" + }, + "2259": { + "label": "Dr Bushra Sadia", + "category": "related" + }, + "2260": { + "label": "Dr Farhat Jabeen", + "category": "related" + }, + "2261": { + "label": "Faculty of Agriculture at UAF", + "category": "related" + }, + "2262": { + "label": "Quaid-i-Azam Medical College", + "category": "related" + }, + "2263": { + "label": "Sofia Farrukh", + "category": "related" + }, + "2264": { + "label": "BVH", + "category": "related" + }, + "2265": { + "label": "Hasilpur", + "category": "related" + }, + "2266": { + "label": "Zafarwal Tehsil", + "category": "related" + }, + "2267": { + "label": "Rana Tahir Rehman Khan", + "category": "related" + }, + "2268": { + "label": "District Police Officer", + "category": "related" + }, + "2269": { + "label": "Sial", + "category": "related" + }, + "2270": { + "label": "Ijazul Haq", + "category": "related" + }, + "2271": { + "label": "Gen Ziaul Haq", + "category": "related" + }, + "2272": { + "label": "Punjab University", + "category": "related" + }, + "2273": { + "label": "Raja Usman", + "category": "related" + }, + "2274": { + "label": "Neerian", + "category": "related" + }, + "2275": { + "label": "Saeed Chaudhry", + "category": "related" + }, + "2276": { + "label": "Barki", + "category": "related" + }, + "2277": { + "label": "Cantonment division", + "category": "related" + }, + "2278": { + "label": "Maza\u00adhir Naqvi", + "category": "related" + }, + "2279": { + "label": "Ejaz Chaudhary", + "category": "related" + }, + "2280": { + "label": "Maza\u2014hir Naqvi", + "category": "related" + }, + "2281": { + "label": "Maza\u00ebhir Naqvi", + "category": "related" + }, + "2282": { + "label": "government\u2019s efforts", + "category": "related" + }, + "2283": { + "label": "Turkmenistan", + "category": "related" + }, + "2284": { + "label": "Apple Gas Company", + "category": "related" + }, + "2285": { + "label": "Lakki", + "category": "related" + }, + "2286": { + "label": "Zangikhel", + "category": "related" + }, + "2287": { + "label": "Mianwali", + "category": "related" + }, + "2288": { + "label": "tribal region", + "category": "related" + }, + "2289": { + "label": "Fata University", + "category": "related" + }, + "2290": { + "label": "Daraban tehsil", + "category": "related" + }, + "2291": { + "label": "Asthana", + "category": "related" + }, + "2292": { + "label": "Rizwan Khan", + "category": "related" + }, + "2293": { + "label": "Ismail", + "category": "related" + }, + "2294": { + "label": "Asthana group", + "category": "related" + }, + "2295": { + "label": "Takhta Baig", + "category": "related" + }, + "2296": { + "label": "attack on police in Peshawar", + "category": "related" + }, + "2297": { + "label": "attack on police in Peshawar few years ago", + "category": "related" + }, + "2298": { + "label": "Provincial Management Service", + "category": "related" + }, + "2299": { + "label": "Irfan Musazai", + "category": "related" + }, + "2300": { + "label": "secretary to the board of revenue", + "category": "related" + }, + "2301": { + "label": "caretaker chief minister", + "category": "related" + }, + "2302": { + "label": "Prof Abid Jameel", + "category": "related" + }, + "2303": { + "label": "Banda Daud Shah", + "category": "related" + }, + "2304": { + "label": "Dera Ismail Khan Motorway", + "category": "related" + }, + "2305": { + "label": "Hakla-Dera Ismail Khan Motorway", + "category": "related" + }, + "2306": { + "label": "Mashtaqur Rehman", + "category": "related" + }, + "2307": { + "label": "Karak district", + "category": "related" + }, + "2308": { + "label": "Asad Mehmood", + "category": "related" + }, + "2309": { + "label": "Minister for Communications", + "category": "related" + }, + "2310": { + "label": "Swabi TMA", + "category": "related" + }, + "2311": { + "label": "Zarobai", + "category": "related" + }, + "2312": { + "label": "Jawad Khan", + "category": "related" + }, + "2313": { + "label": "Jazba", + "category": "related" + }, + "2314": { + "label": "Pakistan U-19s", + "category": "related" + }, + "2315": { + "label": "Obaid Shahid", + "category": "related" + }, + "2316": { + "label": "Iqbal Hussain Emmon", + "category": "related" + }, + "2317": { + "label": "National Electric Power Regulatory Authority", + "category": "related" + }, + "2318": { + "label": "Tauseef H. Farooqui", + "category": "related" + }, + "2319": { + "label": "Discos", + "category": "related" + }, + "2320": { + "label": "last year", + "category": "related" + }, + "2321": { + "label": "LNG", + "category": "related" + }, + "2322": { + "label": "power plant", + "category": "related" + }, + "2323": { + "label": "Shanghai Electric", + "category": "related" + }, + "2324": { + "label": "gun attack at a rally last year", + "category": "related" + }, + "2325": { + "label": "got injured due to stampede", + "category": "related" + }, + "2326": { + "label": "Aamer Farooq", + "category": "related" + }, + "2327": { + "label": "Miangul Hassan Auran\u0219gzeb", + "category": "related" + }, + "2328": { + "label": "got injured", + "category": "related" + }, + "2329": { + "label": "stampede", + "category": "related" + }, + "2330": { + "label": "Article 218(3)", + "category": "related" + }, + "2331": { + "label": "Article 224", + "category": "related" + }, + "2332": { + "label": "election", + "category": "related" + }, + "2333": { + "label": "Bahrain", + "category": "related" + }, + "2334": { + "label": "Oman", + "category": "related" + }, + "2335": { + "label": "Syed Ali Zafar", + "category": "related" + }, + "2336": { + "label": "elections across the country", + "category": "related" + }, + "2337": { + "label": "petrol", + "category": "related" + }, + "2338": { + "label": "petroleum product", + "category": "related" + }, + "2339": { + "label": "diesel", + "category": "related" + }, + "2340": { + "label": "furnace oil", + "category": "related" + }, + "2341": { + "label": "petroleum prices", + "category": "related" + }, + "2342": { + "label": "Pakistani", + "category": "related" + }, + "2343": { + "label": "Iranian", + "category": "related" + }, + "2344": { + "label": "Heydar Aliyev", + "category": "related" + }, + "2345": { + "label": "President of Azerbaijan", + "category": "related" + }, + "2346": { + "label": "Ilham Aliyev", + "category": "related" + }, + "2347": { + "label": "ABWA Hospital and Research Centre", + "category": "related" + }, + "2348": { + "label": "insurance", + "category": "related" + }, + "2349": { + "label": "policyholders", + "category": "related" + }, + "2350": { + "label": "Dogai", + "category": "related" + }, + "2351": { + "label": "Torghar district", + "category": "related" + }, + "2352": { + "label": "Oghi", + "category": "related" + }, + "2353": { + "label": "Anisur Rehman Tanoli", + "category": "related" + }, + "2354": { + "label": "Torgh", + "category": "related" + }, + "2355": { + "label": "DIG-Larkana", + "category": "related" + }, + "2356": { + "label": "DIG", + "category": "related" + }, + "2357": { + "label": "SSP", + "category": "related" + }, + "2358": { + "label": "Asif Raza", + "category": "related" + }, + "2359": { + "label": "Karo Kari", + "category": "related" + }, + "2360": { + "label": "East", + "category": "related" + }, + "2361": { + "label": "South", + "category": "related" + }, + "2362": { + "label": "Central", + "category": "related" + }, + "2363": { + "label": "Keamari", + "category": "related" + }, + "2364": { + "label": "Shah Dino Solangi", + "category": "related" + }, + "2365": { + "label": "Badani", + "category": "related" + }, + "2366": { + "label": "Patni", + "category": "related" + }, + "2367": { + "label": "9MM pistol", + "category": "related" + }, + "2368": { + "label": "SMG rifle", + "category": "related" + }, + "2369": { + "label": "30 bore pistol", + "category": "related" + }, + "2370": { + "label": "Suleman Shahbaz", + "category": "related" + }, + "2371": { + "label": "Shahbaz Sharif", + "category": "related" + }, + "2372": { + "label": "Hamza", + "category": "related" + }, + "2373": { + "label": "Rs16bn money laundering case", + "category": "related" + }, + "2374": { + "label": "Rs16bn", + "category": "related" + }, + "2375": { + "label": "FIA", + "category": "related" + }, + "2376": { + "label": "Rs", + "category": "related" + }, + "2377": { + "label": "Muhammad Noman", + "category": "related" + }, + "2378": { + "label": "Tandlianwala", + "category": "related" + }, + "2379": { + "label": "Sheikhupura Road", + "category": "related" + }, + "2380": { + "label": "Tandlian", + "category": "related" + }, + "2381": { + "label": "freedom of speech", + "category": "related" + }, + "2382": { + "label": "human rights", + "category": "related" + }, + "2383": { + "label": "Unesco", + "category": "related" + }, + "2384": { + "label": "Youssef Filali-Meknassi", + "category": "related" + }, + "2385": { + "label": "International Human Rights Organization", + "category": "related" + }, + "2386": { + "label": "media diversity", + "category": "related" + }, + "2387": { + "label": "media", + "category": "related" + }, + "2388": { + "label": "media ethics", + "category": "related" + }, + "2389": { + "label": "Hangu", + "category": "related" + }, + "2390": { + "label": "Muzamil Abbas", + "category": "related" + }, + "2391": { + "label": "Mohammad Khan", + "category": "related" + }, + "2392": { + "label": "March 31, 2019", + "category": "related" + }, + "2393": { + "label": "one of the deceased", + "category": "related" + }, + "2394": { + "label": "two of the deceased", + "category": "related" + }, + "2395": { + "label": "the other one", + "category": "related" + }, + "2396": { + "label": "Regi Model Town", + "category": "related" + }, + "2397": { + "label": "Hayatabad", + "category": "related" + }, + "2398": { + "label": "Northern Bypass", + "category": "related" + }, + "2399": { + "label": "Article 254", + "category": "related" + }, + "2400": { + "label": "232", + "category": "related" + }, + "2401": { + "label": "234", + "category": "related" + }, + "2402": { + "label": "elections in the largest province of the country", + "category": "related" + } + }, + "edges": [ + { + "from": 0, + "to": 1, + "label": "owned by", + "category": "related" + }, + { + "from": 1, + "to": 0, + "label": "owner of", + "category": "related" + }, + { + "from": 0, + "to": 2, + "label": "owned by", + "category": "related" + }, + { + "from": 2, + "to": 0, + "label": "owner of", + "category": "related" + }, + { + "from": 3, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 5, + "to": 6, + "label": "officeholder", + "category": "related" + }, + { + "from": 5, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 6, + "to": 5, + "label": "position held", + "category": "related" + }, + { + "from": 7, + "to": 5, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 8, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 9, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 10, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 11, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 5, + "label": "office held by", + "category": "related" + }, + { + "from": 11, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 12, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 14, + "to": 15, + "label": "country", + "category": "related" + }, + { + "from": 16, + "to": 15, + "label": "country", + "category": "related" + }, + { + "from": 17, + "to": 15, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 18, + "to": 15, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 19, + "to": 20, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 21, + "to": 22, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 23, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 24, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 25, + "to": 26, + "label": "point in time", + "category": "related" + }, + { + "from": 27, + "to": 28, + "label": "subclass of", + "category": "related" + }, + { + "from": 29, + "to": 28, + "label": "subject has role", + "category": "related" + }, + { + "from": 30, + "to": 28, + "label": "subject has role", + "category": "related" + }, + { + "from": 31, + "to": 28, + "label": "subject has role", + "category": "related" + }, + { + "from": 27, + "to": 32, + "label": "point in time", + "category": "related" + }, + { + "from": 27, + "to": 26, + "label": "point in time", + "category": "related" + }, + { + "from": 31, + "to": 28, + "label": "instance of", + "category": "related" + }, + { + "from": 26, + "to": 26, + "label": "point", + "category": "related" + }, + { + "from": 33, + "to": 34, + "label": "operator", + "category": "related" + }, + { + "from": 33, + "to": 35, + "label": "instance of", + "category": "related" + }, + { + "from": 36, + "to": 34, + "label": "operator", + "category": "related" + }, + { + "from": 36, + "to": 35, + "label": "instance of", + "category": "related" + }, + { + "from": 35, + "to": 37, + "label": "owned by", + "category": "related" + }, + { + "from": 35, + "to": 38, + "label": "owned by", + "category": "related" + }, + { + "from": 35, + "to": 39, + "label": "owned by", + "category": "related" + }, + { + "from": 35, + "to": 38, + "label": "owned", + "category": "related" + }, + { + "from": 35, + "to": 39, + "label": "owned", + "category": "related" + }, + { + "from": 40, + "to": 41, + "label": "subclass of", + "category": "related" + }, + { + "from": 41, + "to": 40, + "label": "different from", + "category": "related" + }, + { + "from": 42, + "to": 41, + "label": "product or material produced", + "category": "related" + }, + { + "from": 41, + "to": 42, + "label": "manufacturer", + "category": "related" + }, + { + "from": 41, + "to": 41, + "label": "different from", + "category": "related" + }, + { + "from": 41, + "to": 41, + "label": "different", + "category": "related" + }, + { + "from": 41, + "to": 41, + "label": "subclass", + "category": "related" + }, + { + "from": 43, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 45, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 47, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 47, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 45, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 47, + "label": "chairperson", + "category": "related" + }, + { + "from": 49, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 49, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 50, + "label": "chairperson", + "category": "related" + }, + { + "from": 51, + "to": 52, + "label": "country", + "category": "related" + }, + { + "from": 52, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 52, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 13, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 54, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 57, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 58, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 58, + "to": 59, + "label": "position held", + "category": "related" + }, + { + "from": 60, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 61, + "to": 62, + "label": "point", + "category": "related" + }, + { + "from": 60, + "to": 59, + "label": "position held", + "category": "related" + }, + { + "from": 61, + "to": 62, + "label": "publication", + "category": "related" + }, + { + "from": 63, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 64, + "to": 63, + "label": "capital", + "category": "related" + }, + { + "from": 65, + "to": 63, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 65, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 65, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 64, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 66, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 67, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 68, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 69, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 70, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 72, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 71, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 74, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 74, + "to": 72, + "label": "educated at", + "category": "related" + }, + { + "from": 74, + "to": 73, + "label": "place of death", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 70, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 72, + "label": "owner of", + "category": "related" + }, + { + "from": 73, + "to": 75, + "label": "owner of", + "category": "related" + }, + { + "from": 74, + "to": 73, + "label": "place of birth", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "owner of", + "category": "related" + }, + { + "from": 76, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 78, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 78, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 79, + "to": 77, + "label": "place of birth", + "category": "related" + }, + { + "from": 80, + "to": 77, + "label": "place of birth", + "category": "related" + }, + { + "from": 81, + "to": 82, + "label": "position held", + "category": "related" + }, + { + "from": 81, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 83, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 84, + "label": "member of", + "category": "related" + }, + { + "from": 83, + "to": 83, + "label": "subsidiary", + "category": "related" + }, + { + "from": 83, + "to": 83, + "label": "parent organization", + "category": "related" + }, + { + "from": 13, + "to": 83, + "label": "member of", + "category": "related" + }, + { + "from": 83, + "to": 83, + "label": "member of", + "category": "related" + }, + { + "from": 85, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 86, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 87, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 87, + "to": 85, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 87, + "to": 86, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 88, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 88, + "to": 77, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 88, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 89, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 91, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 92, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 93, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 94, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 95, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 98, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 99, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 97, + "to": 98, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 100, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 101, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 101, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 101, + "to": 102, + "label": "significant event", + "category": "related" + }, + { + "from": 102, + "to": 102, + "label": "follows", + "category": "related" + }, + { + "from": 102, + "to": 102, + "label": "followed by", + "category": "related" + }, + { + "from": 103, + "to": 97, + "label": "applies", + "category": "related" + }, + { + "from": 104, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 105, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 106, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 107, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 108, + "to": 109, + "label": "subclass of", + "category": "related" + }, + { + "from": 109, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 109, + "to": 110, + "label": "has part", + "category": "related" + }, + { + "from": 109, + "to": 107, + "label": "part of", + "category": "related" + }, + { + "from": 109, + "to": 109, + "label": "part of", + "category": "related" + }, + { + "from": 99, + "to": 111, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 112, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 111, + "to": 99, + "label": "capital", + "category": "related" + }, + { + "from": 114, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 114, + "to": 111, + "label": "place of birth", + "category": "related" + }, + { + "from": 114, + "to": 111, + "label": "place of death", + "category": "related" + }, + { + "from": 114, + "to": 115, + "label": "place of birth", + "category": "related" + }, + { + "from": 116, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 116, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 118, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 119, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 120, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 118, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 119, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 120, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 120, + "to": 121, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 122, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 124, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 125, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 126, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 127, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 127, + "to": 128, + "label": "place of death", + "category": "related" + }, + { + "from": 129, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 129, + "to": 128, + "label": "member of political party", + "category": "related" + }, + { + "from": 117, + "to": 130, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 130, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 130, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 131, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 130, + "label": "contains settlement", + "category": "related" + }, + { + "from": 131, + "to": 132, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 134, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 134, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 135, + "to": 133, + "label": "work location", + "category": "related" + }, + { + "from": 135, + "to": 133, + "label": "employer", + "category": "related" + }, + { + "from": 136, + "to": 137, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 137, + "to": 136, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 137, + "to": 136, + "label": "capital", + "category": "related" + }, + { + "from": 138, + "to": 139, + "label": "heritage designation", + "category": "related" + }, + { + "from": 139, + "to": 138, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 139, + "to": 140, + "label": "heritage designation", + "category": "related" + }, + { + "from": 139, + "to": 141, + "label": "significant event", + "category": "related" + }, + { + "from": 141, + "to": 138, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 141, + "to": 139, + "label": "heritage designation", + "category": "related" + }, + { + "from": 142, + "to": 140, + "label": "heritage designation", + "category": "related" + }, + { + "from": 142, + "to": 141, + "label": "has cause", + "category": "related" + }, + { + "from": 142, + "to": 143, + "label": "has cause", + "category": "related" + }, + { + "from": 142, + "to": 141, + "label": "has effect", + "category": "related" + }, + { + "from": 142, + "to": 143, + "label": "has effect", + "category": "related" + }, + { + "from": 144, + "to": 145, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 145, + "to": 144, + "label": "part of", + "category": "related" + }, + { + "from": 145, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 145, + "label": "position held", + "category": "related" + }, + { + "from": 146, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 145, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 48, + "to": 146, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 145, + "label": "office held by", + "category": "related" + }, + { + "from": 48, + "to": 147, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 48, + "to": 145, + "label": "office held", + "category": "related" + }, + { + "from": 148, + "to": 149, + "label": "location", + "category": "related" + }, + { + "from": 149, + "to": 148, + "label": "significant event", + "category": "related" + }, + { + "from": 149, + "to": 150, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 150, + "to": 149, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 150, + "to": 148, + "label": "significant event", + "category": "related" + }, + { + "from": 149, + "to": 150, + "label": "located in or next", + "category": "related" + }, + { + "from": 150, + "to": 150, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 151, + "to": 152, + "label": "chairperson", + "category": "related" + }, + { + "from": 152, + "to": 151, + "label": "member of political party", + "category": "related" + }, + { + "from": 153, + "to": 154, + "label": "chairperson", + "category": "related" + }, + { + "from": 154, + "to": 153, + "label": "member of political party", + "category": "related" + }, + { + "from": 154, + "to": 151, + "label": "member of political party", + "category": "related" + }, + { + "from": 155, + "to": 152, + "label": "candidate", + "category": "related" + }, + { + "from": 155, + "to": 156, + "label": "country", + "category": "related" + }, + { + "from": 155, + "to": 152, + "label": "successful candidate", + "category": "related" + }, + { + "from": 155, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 157, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 157, + "to": 158, + "label": "position held", + "category": "related" + }, + { + "from": 158, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 159, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 159, + "to": 158, + "label": "position held", + "category": "related" + }, + { + "from": 160, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 161, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 161, + "to": 158, + "label": "position held", + "category": "related" + }, + { + "from": 161, + "to": 160, + "label": "position held", + "category": "related" + }, + { + "from": 162, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 162, + "to": 160, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 161, + "to": 162, + "label": "position held", + "category": "related" + }, + { + "from": 162, + "to": 160, + "label": "country", + "category": "related" + }, + { + "from": 162, + "to": 163, + "label": "country", + "category": "related" + }, + { + "from": 164, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 165, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 133, + "to": 164, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 164, + "label": "contains administrative", + "category": "related" + }, + { + "from": 133, + "to": 165, + "label": "named after", + "category": "related" + }, + { + "from": 166, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 166, + "label": "owner of", + "category": "related" + }, + { + "from": 167, + "to": 166, + "label": "owned by", + "category": "related" + }, + { + "from": 168, + "to": 166, + "label": "owned by", + "category": "related" + }, + { + "from": 169, + "to": 166, + "label": "owned by", + "category": "related" + }, + { + "from": 169, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 170, + "to": 166, + "label": "owned by", + "category": "related" + }, + { + "from": 170, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 170, + "to": 167, + "label": "located", + "category": "related" + }, + { + "from": 170, + "to": 133, + "label": "located", + "category": "related" + }, + { + "from": 167, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 168, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 170, + "to": 167, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 170, + "to": 168, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 171, + "to": 172, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 172, + "to": 173, + "label": "shares border with", + "category": "related" + }, + { + "from": 173, + "to": 172, + "label": "shares border with", + "category": "related" + }, + { + "from": 174, + "to": 172, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 174, + "to": 175, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 172, + "to": 173, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 173, + "to": 172, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 174, + "to": 172, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 174, + "to": 172, + "label": "headquarters location", + "category": "related" + }, + { + "from": 176, + "to": 177, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 176, + "to": 177, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 178, + "to": 176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 176, + "to": 178, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 176, + "to": 178, + "label": "contains administrative", + "category": "related" + }, + { + "from": 176, + "to": 176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 176, + "to": 178, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 180, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 180, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 180, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 181, + "to": 179, + "label": "country", + "category": "related" + }, + { + "from": 181, + "to": 182, + "label": "country", + "category": "related" + }, + { + "from": 181, + "to": 179, + "label": "operating area", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 183, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 184, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 186, + "to": 187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 78, + "to": 187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 187, + "to": 188, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 189, + "to": 187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 190, + "to": 187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 191, + "to": 187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 188, + "to": 187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 188, + "to": 191, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 188, + "to": 78, + "label": "located in", + "category": "related" + }, + { + "from": 192, + "to": 187, + "label": "located in the", + "category": "related" + }, + { + "from": 77, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 193, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 194, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 194, + "to": 195, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 193, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 193, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 194, + "to": 77, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 194, + "to": 77, + "label": "located in", + "category": "related" + }, + { + "from": 196, + "to": 197, + "label": "officeholder", + "category": "related" + }, + { + "from": 197, + "to": 196, + "label": "position held", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 198, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 199, + "to": 198, + "label": "shares border with", + "category": "related" + }, + { + "from": 199, + "to": 200, + "label": "shares border with", + "category": "related" + }, + { + "from": 200, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 201, + "to": 202, + "label": "notable work", + "category": "related" + }, + { + "from": 201, + "to": 202, + "label": "religion", + "category": "related" + }, + { + "from": 7, + "to": 172, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 172, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 175, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 203, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 205, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 206, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 206, + "to": 207, + "label": "significant event", + "category": "related" + }, + { + "from": 206, + "to": 208, + "label": "significant event", + "category": "related" + }, + { + "from": 209, + "to": 207, + "label": "follows", + "category": "related" + }, + { + "from": 209, + "to": 208, + "label": "followed by", + "category": "related" + }, + { + "from": 209, + "to": 207, + "label": "instance of", + "category": "related" + }, + { + "from": 209, + "to": 208, + "label": "follows", + "category": "related" + }, + { + "from": 210, + "to": 211, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 212, + "to": 211, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 212, + "to": 213, + "label": "owned by", + "category": "related" + }, + { + "from": 213, + "to": 210, + "label": "owner of", + "category": "related" + }, + { + "from": 213, + "to": 212, + "label": "owner of", + "category": "related" + }, + { + "from": 214, + "to": 211, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 214, + "to": 215, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 216, + "to": 217, + "label": "position held", + "category": "related" + }, + { + "from": 218, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 218, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 219, + "label": "capital", + "category": "related" + }, + { + "from": 220, + "to": 221, + "label": "capital", + "category": "related" + }, + { + "from": 219, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 222, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 223, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 224, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 219, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 225, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 226, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 227, + "to": 228, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 228, + "to": 227, + "label": "capital", + "category": "related" + }, + { + "from": 229, + "to": 228, + "label": "place of death", + "category": "related" + }, + { + "from": 230, + "to": 228, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 228, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 232, + "to": 228, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 233, + "to": 228, + "label": "location", + "category": "related" + }, + { + "from": 234, + "to": 62, + "label": "point in time", + "category": "related" + }, + { + "from": 235, + "to": 62, + "label": "point in time", + "category": "related" + }, + { + "from": 236, + "to": 237, + "label": "subclass of", + "category": "related" + }, + { + "from": 237, + "to": 237, + "label": "subclass of", + "category": "related" + }, + { + "from": 237, + "to": 237, + "label": "has part", + "category": "related" + }, + { + "from": 238, + "to": 62, + "label": "point in time", + "category": "related" + }, + { + "from": 238, + "to": 62, + "label": "point", + "category": "related" + }, + { + "from": 239, + "to": 240, + "label": "inception", + "category": "related" + }, + { + "from": 239, + "to": 98, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 241, + "to": 242, + "label": "father", + "category": "related" + }, + { + "from": 242, + "to": 241, + "label": "child", + "category": "related" + }, + { + "from": 242, + "to": 98, + "label": "place of death", + "category": "related" + }, + { + "from": 243, + "to": 244, + "label": "mother", + "category": "related" + }, + { + "from": 243, + "to": 245, + "label": "mother", + "category": "related" + }, + { + "from": 243, + "to": 243, + "label": "father", + "category": "related" + }, + { + "from": 243, + "to": 246, + "label": "mother", + "category": "related" + }, + { + "from": 244, + "to": 243, + "label": "child", + "category": "related" + }, + { + "from": 244, + "to": 246, + "label": "child", + "category": "related" + }, + { + "from": 247, + "to": 226, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 226, + "to": 77, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 77, + "to": 226, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 77, + "to": 248, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 248, + "to": 226, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 248, + "to": 77, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 249, + "to": 226, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 250, + "to": 251, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 252, + "to": 251, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 251, + "to": 250, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 251, + "to": 252, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 253, + "to": 251, + "label": "location", + "category": "related" + }, + { + "from": 253, + "to": 250, + "label": "location", + "category": "related" + }, + { + "from": 254, + "to": 255, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 255, + "to": 254, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 255, + "to": 254, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 255, + "to": 255, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 220, + "label": "part of", + "category": "related" + }, + { + "from": 257, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 219, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 223, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 259, + "to": 220, + "label": "located", + "category": "related" + }, + { + "from": 260, + "to": 256, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 261, + "to": 262, + "label": "point in time", + "category": "related" + }, + { + "from": 263, + "to": 262, + "label": "point in time", + "category": "related" + }, + { + "from": 264, + "to": 265, + "label": "sports season of league or competition", + "category": "related" + }, + { + "from": 264, + "to": 262, + "label": "point in time", + "category": "related" + }, + { + "from": 261, + "to": 262, + "label": "point in", + "category": "related" + }, + { + "from": 261, + "to": 266, + "label": "point in time", + "category": "related" + }, + { + "from": 261, + "to": 267, + "label": "point in time", + "category": "related" + }, + { + "from": 268, + "to": 269, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 270, + "to": 271, + "label": "member of political party", + "category": "related" + }, + { + "from": 272, + "to": 273, + "label": "capital of", + "category": "related" + }, + { + "from": 273, + "to": 272, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 274, + "label": "head of government", + "category": "related" + }, + { + "from": 274, + "to": 275, + "label": "member of political party", + "category": "related" + }, + { + "from": 274, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 274, + "to": 7, + "label": "applies to", + "category": "related" + }, + { + "from": 276, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 277, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 278, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 278, + "to": 62, + "label": "point in time", + "category": "related" + }, + { + "from": 233, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 233, + "to": 62, + "label": "point in time", + "category": "related" + }, + { + "from": 233, + "to": 62, + "label": "country", + "category": "related" + }, + { + "from": 276, + "to": 62, + "label": "point in time", + "category": "related" + }, + { + "from": 233, + "to": 279, + "label": "point in time", + "category": "related" + }, + { + "from": 280, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 281, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 282, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 282, + "to": 282, + "label": "country", + "category": "related" + }, + { + "from": 283, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 284, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 285, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 286, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 287, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 288, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 289, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 290, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 291, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 291, + "to": 289, + "label": "facet of", + "category": "related" + }, + { + "from": 292, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 293, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 292, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 293, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 292, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 97, + "to": 294, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 295, + "label": "legislative body", + "category": "related" + }, + { + "from": 295, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 295, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 295, + "label": "legislative body", + "category": "related" + }, + { + "from": 296, + "to": 297, + "label": "chairperson", + "category": "related" + }, + { + "from": 297, + "to": 296, + "label": "employer", + "category": "related" + }, + { + "from": 297, + "to": 298, + "label": "member of", + "category": "related" + }, + { + "from": 298, + "to": 297, + "label": "chairperson", + "category": "related" + }, + { + "from": 299, + "to": 267, + "label": "point in time", + "category": "related" + }, + { + "from": 300, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 300, + "label": "position held", + "category": "related" + }, + { + "from": 301, + "to": 302, + "label": "position held", + "category": "related" + }, + { + "from": 303, + "to": 302, + "label": "position held", + "category": "related" + }, + { + "from": 303, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 304, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares", + "category": "related" + }, + { + "from": 13, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 305, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 305, + "label": "diplomatic", + "category": "related" + }, + { + "from": 306, + "to": 307, + "label": "work period (start)", + "category": "related" + }, + { + "from": 308, + "to": 309, + "label": "instance of", + "category": "related" + }, + { + "from": 308, + "to": 310, + "label": "named after", + "category": "related" + }, + { + "from": 308, + "to": 310, + "label": "author", + "category": "related" + }, + { + "from": 311, + "to": 312, + "label": "manufacturer", + "category": "related" + }, + { + "from": 313, + "to": 314, + "label": "employer", + "category": "related" + }, + { + "from": 315, + "to": 316, + "label": "drug used for treatment", + "category": "related" + }, + { + "from": 317, + "to": 316, + "label": "drug used for treatment", + "category": "related" + }, + { + "from": 318, + "to": 316, + "label": "drug used for treatment", + "category": "related" + }, + { + "from": 316, + "to": 315, + "label": "medical condition treated", + "category": "related" + }, + { + "from": 316, + "to": 317, + "label": "medical condition treated", + "category": "related" + }, + { + "from": 316, + "to": 318, + "label": "medical", + "category": "related" + }, + { + "from": 316, + "to": 318, + "label": "medical condition treated", + "category": "related" + }, + { + "from": 316, + "to": 315, + "label": "drug used for treatment", + "category": "related" + }, + { + "from": 316, + "to": 317, + "label": "drug used for treatment", + "category": "related" + }, + { + "from": 316, + "to": 318, + "label": "drug used for treatment", + "category": "related" + }, + { + "from": 319, + "to": 320, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 320, + "to": 319, + "label": "part of", + "category": "related" + }, + { + "from": 320, + "to": 321, + "label": "officeholder", + "category": "related" + }, + { + "from": 321, + "to": 320, + "label": "position held", + "category": "related" + }, + { + "from": 322, + "to": 320, + "label": "position held", + "category": "related" + }, + { + "from": 322, + "to": 323, + "label": "position held", + "category": "related" + }, + { + "from": 323, + "to": 319, + "label": "part of", + "category": "related" + }, + { + "from": 323, + "to": 321, + "label": "officeholder", + "category": "related" + }, + { + "from": 323, + "to": 322, + "label": "officeholder", + "category": "related" + }, + { + "from": 324, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 324, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 325, + "to": 326, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 326, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 326, + "to": 77, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 77, + "to": 326, + "label": "shares border with", + "category": "related" + }, + { + "from": 326, + "to": 77, + "label": "shares border with", + "category": "related" + }, + { + "from": 327, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 329, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 329, + "to": 328, + "label": "parent organization", + "category": "related" + }, + { + "from": 328, + "to": 328, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 328, + "to": 329, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 330, + "to": 331, + "label": "parent organization", + "category": "related" + }, + { + "from": 331, + "to": 330, + "label": "subsidiary", + "category": "related" + }, + { + "from": 331, + "to": 332, + "label": "subsidiary", + "category": "related" + }, + { + "from": 332, + "to": 331, + "label": "subsidiary", + "category": "related" + }, + { + "from": 332, + "to": 332, + "label": "subsidiary", + "category": "related" + }, + { + "from": 332, + "to": 332, + "label": "parent organization", + "category": "related" + }, + { + "from": 332, + "to": 332, + "label": "owned by", + "category": "related" + }, + { + "from": 333, + "to": 334, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 335, + "to": 334, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 336, + "to": 334, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 337, + "to": 334, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 338, + "to": 334, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 338, + "to": 338, + "label": "has parts of the", + "category": "related" + }, + { + "from": 338, + "to": 338, + "label": "instance of", + "category": "related" + }, + { + "from": 339, + "to": 340, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 339, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 341, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 342, + "to": 343, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 343, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 343, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 342, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 342, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 344, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 345, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 347, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 347, + "to": 348, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 348, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 348, + "to": 347, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 349, + "to": 350, + "label": "subclass of", + "category": "related" + }, + { + "from": 350, + "to": 351, + "label": "subclass of", + "category": "related" + }, + { + "from": 350, + "to": 351, + "label": "has part", + "category": "related" + }, + { + "from": 350, + "to": 351, + "label": "has cause", + "category": "related" + }, + { + "from": 352, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 353, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 354, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 355, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 356, + "to": 233, + "label": "part of", + "category": "related" + }, + { + "from": 233, + "to": 356, + "label": "has part", + "category": "related" + }, + { + "from": 356, + "to": 356, + "label": "has part", + "category": "related" + }, + { + "from": 123, + "to": 357, + "label": "chairperson", + "category": "related" + }, + { + "from": 357, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 358, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 358, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 358, + "to": 359, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 360, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 360, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 360, + "to": 359, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 361, + "to": 362, + "label": "officeholder", + "category": "related" + }, + { + "from": 362, + "to": 361, + "label": "position held", + "category": "related" + }, + { + "from": 363, + "to": 364, + "label": "place of burial", + "category": "related" + }, + { + "from": 364, + "to": 365, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 366, + "to": 361, + "label": "affiliation", + "category": "related" + }, + { + "from": 366, + "to": 367, + "label": "parent organization", + "category": "related" + }, + { + "from": 366, + "to": 361, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 366, + "to": 368, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 369, + "to": 370, + "label": "chairperson", + "category": "related" + }, + { + "from": 370, + "to": 371, + "label": "member of political party", + "category": "related" + }, + { + "from": 372, + "to": 371, + "label": "member of political party", + "category": "related" + }, + { + "from": 373, + "to": 371, + "label": "member of political party", + "category": "related" + }, + { + "from": 374, + "to": 371, + "label": "member of political party", + "category": "related" + }, + { + "from": 374, + "to": 375, + "label": "member of political party", + "category": "related" + }, + { + "from": 369, + "to": 376, + "label": "chairperson", + "category": "related" + }, + { + "from": 370, + "to": 369, + "label": "member of political party", + "category": "related" + }, + { + "from": 372, + "to": 369, + "label": "member of political party", + "category": "related" + }, + { + "from": 377, + "to": 378, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 379, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 379, + "label": "owner of", + "category": "related" + }, + { + "from": 380, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 380, + "to": 381, + "label": "instance of", + "category": "related" + }, + { + "from": 381, + "to": 381, + "label": "subclass of", + "category": "related" + }, + { + "from": 381, + "to": 381, + "label": "subclass", + "category": "related" + }, + { + "from": 382, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 357, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 383, + "to": 357, + "label": "chairperson", + "category": "related" + }, + { + "from": 384, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 385, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 386, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 387, + "to": 357, + "label": "chairperson", + "category": "related" + }, + { + "from": 387, + "to": 385, + "label": "chairperson", + "category": "related" + }, + { + "from": 113, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 388, + "to": 389, + "label": "country", + "category": "related" + }, + { + "from": 390, + "to": 391, + "label": "point in time", + "category": "related" + }, + { + "from": 392, + "to": 389, + "label": "country", + "category": "related" + }, + { + "from": 393, + "to": 394, + "label": "point in time", + "category": "related" + }, + { + "from": 395, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 395, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 396, + "to": 397, + "label": "point in time", + "category": "related" + }, + { + "from": 396, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 398, + "to": 399, + "label": "date of death", + "category": "related" + }, + { + "from": 400, + "to": 401, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 402, + "to": 399, + "label": "date of death", + "category": "related" + }, + { + "from": 403, + "to": 401, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 356, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 403, + "to": 400, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 404, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 404, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 405, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 406, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 406, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 407, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 408, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 408, + "to": 133, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 409, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 409, + "to": 408, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 409, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 133, + "to": 409, + "label": "located", + "category": "related" + }, + { + "from": 410, + "to": 136, + "label": "place of birth", + "category": "related" + }, + { + "from": 49, + "to": 136, + "label": "place of birth", + "category": "related" + }, + { + "from": 46, + "to": 136, + "label": "place of birth", + "category": "related" + }, + { + "from": 46, + "to": 411, + "label": "member of political party", + "category": "related" + }, + { + "from": 136, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 136, + "to": 412, + "label": "head of government", + "category": "related" + }, + { + "from": 413, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 413, + "to": 414, + "label": "father", + "category": "related" + }, + { + "from": 414, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 414, + "to": 413, + "label": "child", + "category": "related" + }, + { + "from": 415, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 415, + "to": 113, + "label": "owned by", + "category": "related" + }, + { + "from": 416, + "to": 417, + "label": "chairperson", + "category": "related" + }, + { + "from": 418, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 419, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 420, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 421, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 422, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 417, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 417, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 423, + "to": 424, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 425, + "to": 426, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 426, + "to": 423, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 426, + "to": 231, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 426, + "label": "located in", + "category": "related" + }, + { + "from": 231, + "to": 426, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 427, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 428, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 429, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 50, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 430, + "to": 133, + "label": "located in", + "category": "related" + }, + { + "from": 431, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 433, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 433, + "to": 434, + "label": "connects with", + "category": "related" + }, + { + "from": 434, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 434, + "to": 433, + "label": "connects with", + "category": "related" + }, + { + "from": 434, + "to": 435, + "label": "connects with", + "category": "related" + }, + { + "from": 123, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 113, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 436, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 436, + "to": 437, + "label": "position held", + "category": "related" + }, + { + "from": 43, + "to": 437, + "label": "member of political party", + "category": "related" + }, + { + "from": 438, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 439, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 172, + "to": 440, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 440, + "to": 172, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 172, + "to": 440, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 172, + "to": 440, + "label": "contains settlement", + "category": "related" + }, + { + "from": 441, + "to": 442, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 442, + "to": 441, + "label": "capital", + "category": "related" + }, + { + "from": 443, + "to": 441, + "label": "place of death", + "category": "related" + }, + { + "from": 443, + "to": 442, + "label": "place of death", + "category": "related" + }, + { + "from": 444, + "to": 441, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 444, + "to": 442, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 445, + "to": 441, + "label": "place of death", + "category": "related" + }, + { + "from": 445, + "to": 442, + "label": "place of death", + "category": "related" + }, + { + "from": 442, + "to": 444, + "label": "owner of", + "category": "related" + }, + { + "from": 446, + "to": 447, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 448, + "to": 447, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 447, + "to": 446, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 447, + "to": 448, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 447, + "to": 448, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 447, + "to": 448, + "label": "located in the", + "category": "related" + }, + { + "from": 447, + "to": 448, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 54, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 56, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 449, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 3, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 3, + "to": 43, + "label": "spouse", + "category": "related" + }, + { + "from": 43, + "to": 450, + "label": "member of political party", + "category": "related" + }, + { + "from": 451, + "to": 452, + "label": "participant", + "category": "related" + }, + { + "from": 451, + "to": 453, + "label": "participant", + "category": "related" + }, + { + "from": 454, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 451, + "label": "participant in", + "category": "related" + }, + { + "from": 13, + "to": 454, + "label": "participant in", + "category": "related" + }, + { + "from": 452, + "to": 451, + "label": "participant in", + "category": "related" + }, + { + "from": 451, + "to": 13, + "label": "participant", + "category": "related" + }, + { + "from": 455, + "to": 456, + "label": "operator", + "category": "related" + }, + { + "from": 455, + "to": 457, + "label": "operator", + "category": "related" + }, + { + "from": 457, + "to": 455, + "label": "owner of", + "category": "related" + }, + { + "from": 458, + "to": 456, + "label": "operator", + "category": "related" + }, + { + "from": 458, + "to": 457, + "label": "operator", + "category": "related" + }, + { + "from": 458, + "to": 455, + "label": "facet of", + "category": "related" + }, + { + "from": 459, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 460, + "to": 461, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 462, + "to": 463, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 464, + "to": 465, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 466, + "to": 465, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 465, + "to": 462, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 465, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 465, + "to": 462, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 467, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 467, + "to": 468, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 113, + "to": 469, + "label": "chairperson", + "category": "related" + }, + { + "from": 469, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 321, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 321, + "to": 470, + "label": "position held", + "category": "related" + }, + { + "from": 471, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 471, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 471, + "to": 133, + "label": "place", + "category": "related" + }, + { + "from": 471, + "to": 470, + "label": "position held", + "category": "related" + }, + { + "from": 472, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of", + "category": "related" + }, + { + "from": 473, + "to": 474, + "label": "date of birth", + "category": "related" + }, + { + "from": 473, + "to": 475, + "label": "member of political party", + "category": "related" + }, + { + "from": 476, + "to": 477, + "label": "chairperson", + "category": "related" + }, + { + "from": 477, + "to": 475, + "label": "member of political party", + "category": "related" + }, + { + "from": 478, + "to": 475, + "label": "member of political party", + "category": "related" + }, + { + "from": 477, + "to": 476, + "label": "position held", + "category": "related" + }, + { + "from": 479, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 480, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 481, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 481, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 481, + "to": 220, + "label": "applies", + "category": "related" + }, + { + "from": 37, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 482, + "to": 483, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 484, + "to": 483, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 485, + "to": 483, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 486, + "to": 483, + "label": "located in the", + "category": "related" + }, + { + "from": 487, + "to": 483, + "label": "location", + "category": "related" + }, + { + "from": 487, + "to": 488, + "label": "location", + "category": "related" + }, + { + "from": 489, + "to": 490, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 491, + "to": 490, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 491, + "to": 489, + "label": "has part", + "category": "related" + }, + { + "from": 489, + "to": 489, + "label": "has part", + "category": "related" + }, + { + "from": 489, + "to": 491, + "label": "has part", + "category": "related" + }, + { + "from": 491, + "to": 489, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 489, + "to": 492, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 493, + "to": 494, + "label": "crosses", + "category": "related" + }, + { + "from": 493, + "to": 495, + "label": "crosses", + "category": "related" + }, + { + "from": 496, + "to": 497, + "label": "point in time", + "category": "related" + }, + { + "from": 495, + "to": 494, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 495, + "to": 498, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 495, + "to": 497, + "label": "point in time", + "category": "related" + }, + { + "from": 499, + "to": 498, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 499, + "to": 495, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 265, + "to": 500, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 500, + "to": 265, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 43, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 261, + "to": 262, + "label": "point in time", + "category": "related" + }, + { + "from": 261, + "to": 501, + "label": "followed by", + "category": "related" + }, + { + "from": 501, + "to": 262, + "label": "point in time", + "category": "related" + }, + { + "from": 500, + "to": 54, + "label": "appointed by", + "category": "related" + }, + { + "from": 502, + "to": 265, + "label": "organizer", + "category": "related" + }, + { + "from": 502, + "to": 265, + "label": "facet", + "category": "related" + }, + { + "from": 503, + "to": 504, + "label": "officeholder", + "category": "related" + }, + { + "from": 504, + "to": 503, + "label": "position held", + "category": "related" + }, + { + "from": 13, + "to": 505, + "label": "shares border with", + "category": "related" + }, + { + "from": 505, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 506, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 507, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 507, + "to": 505, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 508, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 508, + "to": 505, + "label": "country", + "category": "related" + }, + { + "from": 507, + "to": 505, + "label": "country", + "category": "related" + }, + { + "from": 507, + "to": 505, + "label": "located", + "category": "related" + }, + { + "from": 509, + "to": 256, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 510, + "to": 511, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 512, + "to": 511, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 512, + "to": 256, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 513, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 256, + "to": 510, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 512, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 514, + "to": 511, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 515, + "to": 73, + "label": "headquarters location", + "category": "related" + }, + { + "from": 516, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 517, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 518, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 519, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 519, + "to": 516, + "label": "located in", + "category": "related" + }, + { + "from": 519, + "to": 517, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 519, + "to": 518, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 330, + "to": 331, + "label": "parent organization", + "category": "related" + }, + { + "from": 331, + "to": 330, + "label": "subsidiary", + "category": "related" + }, + { + "from": 331, + "to": 332, + "label": "subsidiary", + "category": "related" + }, + { + "from": 332, + "to": 331, + "label": "subsidiary", + "category": "related" + }, + { + "from": 332, + "to": 332, + "label": "subsidiary", + "category": "related" + }, + { + "from": 332, + "to": 332, + "label": "parent organization", + "category": "related" + }, + { + "from": 332, + "to": 332, + "label": "owned by", + "category": "related" + }, + { + "from": 233, + "to": 207, + "label": "has part", + "category": "related" + }, + { + "from": 207, + "to": 233, + "label": "part of", + "category": "related" + }, + { + "from": 233, + "to": 233, + "label": "has part", + "category": "related" + }, + { + "from": 233, + "to": 520, + "label": "has part", + "category": "related" + }, + { + "from": 257, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 224, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 224, + "to": 257, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 257, + "to": 224, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 257, + "to": 224, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 257, + "to": 257, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 515, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 522, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 523, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 524, + "to": 525, + "label": "officeholder", + "category": "related" + }, + { + "from": 525, + "to": 524, + "label": "position held", + "category": "related" + }, + { + "from": 526, + "to": 527, + "label": "position held", + "category": "related" + }, + { + "from": 528, + "to": 527, + "label": "position held", + "category": "related" + }, + { + "from": 529, + "to": 525, + "label": "chairperson", + "category": "related" + }, + { + "from": 529, + "to": 526, + "label": "chairperson", + "category": "related" + }, + { + "from": 529, + "to": 528, + "label": "chairperson", + "category": "related" + }, + { + "from": 529, + "to": 529, + "label": "parent organization", + "category": "related" + }, + { + "from": 529, + "to": 529, + "label": "chairperson", + "category": "related" + }, + { + "from": 529, + "to": 530, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 436, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 436, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 531, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 531, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 532, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 533, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 534, + "to": 48, + "label": "member of", + "category": "related" + }, + { + "from": 534, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 533, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 535, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 535, + "label": "capital", + "category": "related" + }, + { + "from": 220, + "to": 256, + "label": "capital", + "category": "related" + }, + { + "from": 256, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 536, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 536, + "to": 537, + "label": "officeholder", + "category": "related" + }, + { + "from": 537, + "to": 536, + "label": "position held", + "category": "related" + }, + { + "from": 220, + "to": 535, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 220, + "label": "capital of", + "category": "related" + }, + { + "from": 256, + "to": 220, + "label": "capital", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 538, + "to": 539, + "label": "part of", + "category": "related" + }, + { + "from": 538, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 538, + "to": 540, + "label": "part of", + "category": "related" + }, + { + "from": 540, + "to": 55, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 540, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 540, + "to": 538, + "label": "has part", + "category": "related" + }, + { + "from": 541, + "to": 542, + "label": "member of political party", + "category": "related" + }, + { + "from": 541, + "to": 543, + "label": "member of political party", + "category": "related" + }, + { + "from": 541, + "to": 538, + "label": "position held", + "category": "related" + }, + { + "from": 541, + "to": 540, + "label": "position", + "category": "related" + }, + { + "from": 540, + "to": 55, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 54, + "to": 544, + "label": "member of political party", + "category": "related" + }, + { + "from": 545, + "to": 544, + "label": "member of political party", + "category": "related" + }, + { + "from": 544, + "to": 545, + "label": "chairperson", + "category": "related" + }, + { + "from": 472, + "to": 302, + "label": "position held", + "category": "related" + }, + { + "from": 411, + "to": 546, + "label": "chairperson", + "category": "related" + }, + { + "from": 56, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 436, + "to": 437, + "label": "position held", + "category": "related" + }, + { + "from": 534, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 547, + "to": 437, + "label": "office contested", + "category": "related" + }, + { + "from": 547, + "to": 534, + "label": "participant", + "category": "related" + }, + { + "from": 547, + "to": 548, + "label": "court", + "category": "related" + }, + { + "from": 548, + "to": 437, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 549, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 549, + "to": 220, + "label": "applies", + "category": "related" + }, + { + "from": 550, + "to": 437, + "label": "position held", + "category": "related" + }, + { + "from": 548, + "to": 436, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 551, + "to": 52, + "label": "location", + "category": "related" + }, + { + "from": 552, + "to": 52, + "label": "country", + "category": "related" + }, + { + "from": 552, + "to": 553, + "label": "location", + "category": "related" + }, + { + "from": 52, + "to": 554, + "label": "shares border with", + "category": "related" + }, + { + "from": 52, + "to": 555, + "label": "shares border with", + "category": "related" + }, + { + "from": 554, + "to": 52, + "label": "shares border with", + "category": "related" + }, + { + "from": 554, + "to": 555, + "label": "shares border with", + "category": "related" + }, + { + "from": 555, + "to": 52, + "label": "shares border with", + "category": "related" + }, + { + "from": 555, + "to": 554, + "label": "shares border with", + "category": "related" + }, + { + "from": 556, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 555, + "to": 557, + "label": "shares border with", + "category": "related" + }, + { + "from": 319, + "to": 320, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 320, + "to": 319, + "label": "part of", + "category": "related" + }, + { + "from": 320, + "to": 558, + "label": "officeholder", + "category": "related" + }, + { + "from": 558, + "to": 320, + "label": "position held", + "category": "related" + }, + { + "from": 559, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 560, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 561, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 562, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 563, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 564, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 144, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 566, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 556, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 567, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 568, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 569, + "to": 565, + "label": "located in", + "category": "related" + }, + { + "from": 569, + "to": 565, + "label": "located", + "category": "related" + }, + { + "from": 569, + "to": 565, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 569, + "to": 231, + "label": "owned by", + "category": "related" + }, + { + "from": 569, + "to": 231, + "label": "owned", + "category": "related" + }, + { + "from": 570, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 571, + "to": 570, + "label": "owner of", + "category": "related" + }, + { + "from": 572, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 573, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 574, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 575, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 576, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 576, + "to": 575, + "label": "significant event", + "category": "related" + }, + { + "from": 576, + "to": 576, + "label": "owned by", + "category": "related" + }, + { + "from": 576, + "to": 577, + "label": "owned by", + "category": "related" + }, + { + "from": 578, + "to": 579, + "label": "member of political party", + "category": "related" + }, + { + "from": 580, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 581, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 582, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 583, + "to": 581, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 583, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 584, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 584, + "to": 581, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 584, + "to": 582, + "label": "founded by", + "category": "related" + }, + { + "from": 584, + "to": 585, + "label": "instance of", + "category": "related" + }, + { + "from": 584, + "to": 586, + "label": "instance of", + "category": "related" + }, + { + "from": 587, + "to": 588, + "label": "position held", + "category": "related" + }, + { + "from": 588, + "to": 587, + "label": "officeholder", + "category": "related" + }, + { + "from": 589, + "to": 588, + "label": "position held", + "category": "related" + }, + { + "from": 590, + "to": 588, + "label": "position held", + "category": "related" + }, + { + "from": 590, + "to": 591, + "label": "position held", + "category": "related" + }, + { + "from": 591, + "to": 588, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 591, + "to": 589, + "label": "officeholder", + "category": "related" + }, + { + "from": 591, + "to": 592, + "label": "officeholder", + "category": "related" + }, + { + "from": 591, + "to": 587, + "label": "officeholder", + "category": "related" + }, + { + "from": 591, + "to": 590, + "label": "officeholder", + "category": "related" + }, + { + "from": 593, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 594, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 594, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 596, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 597, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 598, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 599, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 599, + "to": 595, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 600, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 601, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 602, + "label": "member of", + "category": "related" + }, + { + "from": 601, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 601, + "to": 602, + "label": "member of", + "category": "related" + }, + { + "from": 602, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 604, + "to": 605, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 604, + "to": 606, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 606, + "to": 605, + "label": "shares border with", + "category": "related" + }, + { + "from": 605, + "to": 604, + "label": "shares border with", + "category": "related" + }, + { + "from": 605, + "to": 606, + "label": "shares border with", + "category": "related" + }, + { + "from": 606, + "to": 605, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 605, + "to": 604, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 101, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 607, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 608, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 609, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 610, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 611, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 612, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 91, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 92, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 93, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 94, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 613, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 614, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 612, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 614, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 144, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 615, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 616, + "to": 144, + "label": "employer", + "category": "related" + }, + { + "from": 616, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 13, + "to": 144, + "label": "legislative body", + "category": "related" + }, + { + "from": 617, + "to": 618, + "label": "different from", + "category": "related" + }, + { + "from": 618, + "to": 617, + "label": "different from", + "category": "related" + }, + { + "from": 619, + "to": 144, + "label": "part of", + "category": "related" + }, + { + "from": 619, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 619, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 620, + "to": 621, + "label": "point in time", + "category": "related" + }, + { + "from": 620, + "to": 622, + "label": "instance of", + "category": "related" + }, + { + "from": 623, + "to": 620, + "label": "significant event", + "category": "related" + }, + { + "from": 623, + "to": 624, + "label": "significant event", + "category": "related" + }, + { + "from": 624, + "to": 621, + "label": "point in time", + "category": "related" + }, + { + "from": 624, + "to": 620, + "label": "significant event", + "category": "related" + }, + { + "from": 625, + "to": 96, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 624, + "to": 623, + "label": "participant", + "category": "related" + }, + { + "from": 624, + "to": 620, + "label": "has effect", + "category": "related" + }, + { + "from": 626, + "to": 627, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 628, + "to": 627, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 629, + "to": 627, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 630, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 631, + "label": "head of government", + "category": "related" + }, + { + "from": 632, + "to": 633, + "label": "has effect", + "category": "related" + }, + { + "from": 633, + "to": 632, + "label": "has cause", + "category": "related" + }, + { + "from": 634, + "to": 632, + "label": "has cause", + "category": "related" + }, + { + "from": 635, + "to": 632, + "label": "has cause", + "category": "related" + }, + { + "from": 632, + "to": 633, + "label": "has cause", + "category": "related" + }, + { + "from": 632, + "to": 634, + "label": "has effect", + "category": "related" + }, + { + "from": 636, + "to": 632, + "label": "has cause", + "category": "related" + }, + { + "from": 636, + "to": 632, + "label": "has", + "category": "related" + }, + { + "from": 635, + "to": 632, + "label": "has", + "category": "related" + }, + { + "from": 632, + "to": 634, + "label": "has", + "category": "related" + }, + { + "from": 637, + "to": 638, + "label": "date of death", + "category": "related" + }, + { + "from": 637, + "to": 639, + "label": "place of death", + "category": "related" + }, + { + "from": 640, + "to": 638, + "label": "date of death", + "category": "related" + }, + { + "from": 640, + "to": 639, + "label": "place of death", + "category": "related" + }, + { + "from": 530, + "to": 638, + "label": "date of death", + "category": "related" + }, + { + "from": 530, + "to": 639, + "label": "place of death", + "category": "related" + }, + { + "from": 530, + "to": 639, + "label": "date of death", + "category": "related" + }, + { + "from": 641, + "to": 639, + "label": "place of death", + "category": "related" + }, + { + "from": 641, + "to": 638, + "label": "date of death", + "category": "related" + }, + { + "from": 642, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 643, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 644, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 645, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 646, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 340, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 647, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 647, + "to": 231, + "label": "owned by", + "category": "related" + }, + { + "from": 231, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 647, + "label": "owner of", + "category": "related" + }, + { + "from": 647, + "to": 648, + "label": "significant event", + "category": "related" + }, + { + "from": 647, + "to": 340, + "label": "located in", + "category": "related" + }, + { + "from": 231, + "to": 340, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 647, + "to": 649, + "label": "significant event", + "category": "related" + }, + { + "from": 647, + "to": 650, + "label": "significant event", + "category": "related" + }, + { + "from": 647, + "to": 231, + "label": "owned", + "category": "related" + }, + { + "from": 651, + "to": 652, + "label": "sibling", + "category": "related" + }, + { + "from": 652, + "to": 651, + "label": "sibling", + "category": "related" + }, + { + "from": 652, + "to": 653, + "label": "sibling", + "category": "related" + }, + { + "from": 653, + "to": 652, + "label": "sibling", + "category": "related" + }, + { + "from": 653, + "to": 651, + "label": "sibling", + "category": "related" + }, + { + "from": 651, + "to": 653, + "label": "sibling", + "category": "related" + }, + { + "from": 652, + "to": 652, + "label": "sibling", + "category": "related" + }, + { + "from": 654, + "to": 655, + "label": "chairperson", + "category": "related" + }, + { + "from": 655, + "to": 654, + "label": "member of political party", + "category": "related" + }, + { + "from": 656, + "to": 98, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 98, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 657, + "to": 98, + "label": "location", + "category": "related" + }, + { + "from": 657, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 96, + "to": 659, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 659, + "to": 96, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 660, + "to": 62, + "label": "point in time", + "category": "related" + }, + { + "from": 660, + "to": 96, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 96, + "to": 660, + "label": "significant event", + "category": "related" + }, + { + "from": 96, + "to": 659, + "label": "office held by head of", + "category": "related" + }, + { + "from": 661, + "to": 662, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 661, + "to": 663, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 415, + "to": 662, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 415, + "to": 663, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 662, + "to": 661, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 662, + "to": 415, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 663, + "to": 661, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 663, + "to": 415, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 664, + "to": 665, + "label": "position held", + "category": "related" + }, + { + "from": 666, + "to": 667, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 668, + "to": 667, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 667, + "to": 666, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 667, + "to": 668, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 669, + "to": 667, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 667, + "to": 669, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 667, + "to": 670, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 667, + "to": 668, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 152, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 671, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 13, + "to": 505, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 505, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 672, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 672, + "to": 505, + "label": "country", + "category": "related" + }, + { + "from": 133, + "to": 673, + "label": "authority", + "category": "related" + }, + { + "from": 673, + "to": 133, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 674, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 674, + "to": 673, + "label": "owned by", + "category": "related" + }, + { + "from": 675, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 675, + "to": 673, + "label": "owned by", + "category": "related" + }, + { + "from": 675, + "to": 673, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 676, + "to": 421, + "label": "chairperson", + "category": "related" + }, + { + "from": 421, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 677, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 678, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 678, + "to": 43, + "label": "facet of", + "category": "related" + }, + { + "from": 678, + "to": 43, + "label": "named after", + "category": "related" + }, + { + "from": 428, + "to": 137, + "label": "place of death", + "category": "related" + }, + { + "from": 428, + "to": 638, + "label": "date of death", + "category": "related" + }, + { + "from": 679, + "to": 137, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 137, + "to": 679, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 680, + "to": 137, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 681, + "to": 137, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 681, + "to": 680, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 679, + "to": 682, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 682, + "to": 679, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 593, + "to": 682, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 593, + "to": 681, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 681, + "to": 682, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 681, + "to": 593, + "label": "has part", + "category": "related" + }, + { + "from": 681, + "to": 679, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 658, + "to": 683, + "label": "has part", + "category": "related" + }, + { + "from": 683, + "to": 658, + "label": "part of", + "category": "related" + }, + { + "from": 684, + "to": 685, + "label": "member of political party", + "category": "related" + }, + { + "from": 684, + "to": 686, + "label": "member of political party", + "category": "related" + }, + { + "from": 684, + "to": 686, + "label": "member of", + "category": "related" + }, + { + "from": 684, + "to": 685, + "label": "member of", + "category": "related" + }, + { + "from": 687, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 688, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 689, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 689, + "to": 690, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 691, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 691, + "to": 692, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 691, + "to": 182, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 305, + "to": 693, + "label": "capital", + "category": "related" + }, + { + "from": 694, + "to": 695, + "label": "officeholder", + "category": "related" + }, + { + "from": 695, + "to": 694, + "label": "position held", + "category": "related" + }, + { + "from": 693, + "to": 305, + "label": "country", + "category": "related" + }, + { + "from": 696, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 697, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 698, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 699, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 700, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 700, + "to": 698, + "label": "country", + "category": "related" + }, + { + "from": 697, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 701, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 703, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 704, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 705, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 706, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 707, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 708, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 709, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 710, + "to": 702, + "label": "instance of", + "category": "related" + }, + { + "from": 710, + "to": 702, + "label": "subclass of", + "category": "related" + }, + { + "from": 711, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 711, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 13, + "to": 600, + "label": "member of", + "category": "related" + }, + { + "from": 711, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 712, + "to": 711, + "label": "position held", + "category": "related" + }, + { + "from": 713, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 713, + "to": 714, + "label": "officeholder", + "category": "related" + }, + { + "from": 714, + "to": 711, + "label": "position held", + "category": "related" + }, + { + "from": 714, + "to": 713, + "label": "position held", + "category": "related" + }, + { + "from": 715, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 715, + "to": 716, + "label": "country", + "category": "related" + }, + { + "from": 717, + "to": 718, + "label": "member of political party", + "category": "related" + }, + { + "from": 719, + "to": 718, + "label": "member of political party", + "category": "related" + }, + { + "from": 720, + "to": 718, + "label": "member of political party", + "category": "related" + }, + { + "from": 721, + "to": 718, + "label": "member of political party", + "category": "related" + }, + { + "from": 722, + "to": 718, + "label": "member of political party", + "category": "related" + }, + { + "from": 722, + "to": 723, + "label": "significant event", + "category": "related" + }, + { + "from": 722, + "to": 723, + "label": "conflict", + "category": "related" + }, + { + "from": 723, + "to": 718, + "label": "participant", + "category": "related" + }, + { + "from": 724, + "to": 725, + "label": "military branch", + "category": "related" + }, + { + "from": 726, + "to": 725, + "label": "owned by", + "category": "related" + }, + { + "from": 725, + "to": 726, + "label": "owner of", + "category": "related" + }, + { + "from": 726, + "to": 725, + "label": "owner of", + "category": "related" + }, + { + "from": 727, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 727, + "to": 725, + "label": "employer", + "category": "related" + }, + { + "from": 728, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 729, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 730, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 731, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 731, + "to": 90, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 732, + "to": 90, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 49, + "to": 733, + "label": "child", + "category": "related" + }, + { + "from": 733, + "to": 49, + "label": "father", + "category": "related" + }, + { + "from": 733, + "to": 734, + "label": "father", + "category": "related" + }, + { + "from": 734, + "to": 734, + "label": "child", + "category": "related" + }, + { + "from": 734, + "to": 735, + "label": "child", + "category": "related" + }, + { + "from": 734, + "to": 735, + "label": "father", + "category": "related" + }, + { + "from": 736, + "to": 737, + "label": "place of death", + "category": "related" + }, + { + "from": 738, + "to": 737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 738, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 739, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 738, + "label": "contains settlement", + "category": "related" + }, + { + "from": 737, + "to": 739, + "label": "contains settlement", + "category": "related" + }, + { + "from": 739, + "to": 737, + "label": "located in the", + "category": "related" + }, + { + "from": 739, + "to": 737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 740, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 740, + "to": 521, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 741, + "to": 742, + "label": "spouse", + "category": "related" + }, + { + "from": 742, + "to": 741, + "label": "spouse", + "category": "related" + }, + { + "from": 742, + "to": 741, + "label": "child", + "category": "related" + }, + { + "from": 741, + "to": 742, + "label": "father", + "category": "related" + }, + { + "from": 743, + "to": 741, + "label": "father", + "category": "related" + }, + { + "from": 743, + "to": 743, + "label": "child", + "category": "related" + }, + { + "from": 743, + "to": 743, + "label": "spouse", + "category": "related" + }, + { + "from": 743, + "to": 741, + "label": "child", + "category": "related" + }, + { + "from": 744, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 744, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 745, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 745, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 746, + "to": 747, + "label": "chairperson", + "category": "related" + }, + { + "from": 747, + "to": 746, + "label": "member of political party", + "category": "related" + }, + { + "from": 748, + "to": 749, + "label": "member of political party", + "category": "related" + }, + { + "from": 750, + "to": 751, + "label": "parent organization", + "category": "related" + }, + { + "from": 750, + "to": 752, + "label": "parent organization", + "category": "related" + }, + { + "from": 750, + "to": 750, + "label": "parent organization", + "category": "related" + }, + { + "from": 750, + "to": 751, + "label": "subsidiary", + "category": "related" + }, + { + "from": 750, + "to": 753, + "label": "subsidiary", + "category": "related" + }, + { + "from": 750, + "to": 753, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 753, + "to": 750, + "label": "legislative body", + "category": "related" + }, + { + "from": 754, + "to": 755, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 756, + "to": 755, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 756, + "to": 754, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 757, + "to": 755, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 757, + "to": 754, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 758, + "to": 755, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 758, + "to": 754, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 754, + "to": 758, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 149, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 737, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 149, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 759, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 760, + "to": 761, + "label": "subclass of", + "category": "related" + }, + { + "from": 760, + "to": 762, + "label": "subclass of", + "category": "related" + }, + { + "from": 760, + "to": 763, + "label": "subclass of", + "category": "related" + }, + { + "from": 764, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 765, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 766, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 767, + "to": 535, + "label": "place of death", + "category": "related" + }, + { + "from": 768, + "to": 535, + "label": "place of death", + "category": "related" + }, + { + "from": 769, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 770, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 771, + "to": 772, + "label": "member of political party", + "category": "related" + }, + { + "from": 773, + "to": 774, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 774, + "to": 513, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 219, + "to": 513, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 775, + "to": 513, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 776, + "to": 513, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 776, + "to": 513, + "label": "located in or next to body of", + "category": "related" + }, + { + "from": 775, + "to": 774, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 775, + "to": 774, + "label": "located", + "category": "related" + }, + { + "from": 612, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 91, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 92, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 613, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 614, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 93, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 777, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 56, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 609, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 101, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 607, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 608, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 778, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 610, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 778, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 610, + "to": 607, + "label": "country", + "category": "related" + }, + { + "from": 604, + "to": 605, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 604, + "to": 606, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 606, + "to": 605, + "label": "shares border with", + "category": "related" + }, + { + "from": 605, + "to": 604, + "label": "shares border with", + "category": "related" + }, + { + "from": 605, + "to": 606, + "label": "shares border with", + "category": "related" + }, + { + "from": 606, + "to": 605, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 605, + "to": 604, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 779, + "to": 780, + "label": "competition class", + "category": "related" + }, + { + "from": 779, + "to": 781, + "label": "sport", + "category": "related" + }, + { + "from": 782, + "to": 781, + "label": "sport", + "category": "related" + }, + { + "from": 783, + "to": 781, + "label": "sport", + "category": "related" + }, + { + "from": 784, + "to": 780, + "label": "competition class", + "category": "related" + }, + { + "from": 784, + "to": 781, + "label": "sport", + "category": "related" + }, + { + "from": 785, + "to": 781, + "label": "different from", + "category": "related" + }, + { + "from": 781, + "to": 785, + "label": "different from", + "category": "related" + }, + { + "from": 786, + "to": 781, + "label": "sport", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 787, + "to": 781, + "label": "sport", + "category": "related" + }, + { + "from": 787, + "to": 781, + "label": "part of", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 788, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 789, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 790, + "to": 791, + "label": "member of sports team", + "category": "related" + }, + { + "from": 792, + "to": 791, + "label": "member of sports team", + "category": "related" + }, + { + "from": 793, + "to": 791, + "label": "participating team", + "category": "related" + }, + { + "from": 793, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 195, + "label": "capital", + "category": "related" + }, + { + "from": 794, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "capital", + "category": "related" + }, + { + "from": 795, + "to": 796, + "label": "shares border with", + "category": "related" + }, + { + "from": 796, + "to": 795, + "label": "shares border with", + "category": "related" + }, + { + "from": 797, + "to": 795, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 798, + "to": 795, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 798, + "to": 798, + "label": "has part", + "category": "related" + }, + { + "from": 798, + "to": 798, + "label": "part of", + "category": "related" + }, + { + "from": 232, + "to": 795, + "label": "located in", + "category": "related" + }, + { + "from": 799, + "to": 800, + "label": "member of", + "category": "related" + }, + { + "from": 800, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 800, + "label": "member of", + "category": "related" + }, + { + "from": 801, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 801, + "to": 800, + "label": "has part", + "category": "related" + }, + { + "from": 801, + "to": 801, + "label": "has part", + "category": "related" + }, + { + "from": 801, + "to": 801, + "label": "part of", + "category": "related" + }, + { + "from": 801, + "to": 802, + "label": "part of", + "category": "related" + }, + { + "from": 802, + "to": 802, + "label": "has part", + "category": "related" + }, + { + "from": 802, + "to": 801, + "label": "has part", + "category": "related" + }, + { + "from": 802, + "to": 803, + "label": "has part", + "category": "related" + }, + { + "from": 801, + "to": 802, + "label": "has part", + "category": "related" + }, + { + "from": 801, + "to": 803, + "label": "has part", + "category": "related" + }, + { + "from": 13, + "to": 804, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 804, + "to": 13, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 804, + "to": 805, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 805, + "to": 804, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 285, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 285, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 285, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 432, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 806, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 172, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 117, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 98, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 432, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 807, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 117, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 432, + "label": "capital", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 808, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 809, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 810, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 811, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 812, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 813, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 383, + "to": 376, + "label": "chairperson", + "category": "related" + }, + { + "from": 376, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 376, + "to": 814, + "label": "candidacy in election", + "category": "related" + }, + { + "from": 814, + "to": 146, + "label": "candidate", + "category": "related" + }, + { + "from": 814, + "to": 376, + "label": "successful", + "category": "related" + }, + { + "from": 814, + "to": 376, + "label": "candidate", + "category": "related" + }, + { + "from": 815, + "to": 128, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 128, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 816, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 816, + "to": 179, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 179, + "to": 817, + "label": "head of government", + "category": "related" + }, + { + "from": 817, + "to": 179, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 319, + "to": 818, + "label": "chairperson", + "category": "related" + }, + { + "from": 818, + "to": 319, + "label": "position held", + "category": "related" + }, + { + "from": 818, + "to": 819, + "label": "candidacy in election", + "category": "related" + }, + { + "from": 819, + "to": 818, + "label": "successful candidate", + "category": "related" + }, + { + "from": 819, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 818, + "label": "head of government", + "category": "related" + }, + { + "from": 819, + "to": 818, + "label": "candidate", + "category": "related" + }, + { + "from": 7, + "to": 819, + "label": "legislative", + "category": "related" + }, + { + "from": 7, + "to": 819, + "label": "significant", + "category": "related" + }, + { + "from": 820, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 820, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 821, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 822, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 821, + "to": 97, + "label": "country", + "category": "related" + }, + { + "from": 813, + "to": 823, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 824, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 825, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 825, + "to": 146, + "label": "has part", + "category": "related" + }, + { + "from": 825, + "to": 824, + "label": "has part", + "category": "related" + }, + { + "from": 825, + "to": 825, + "label": "has part", + "category": "related" + }, + { + "from": 825, + "to": 146, + "label": "has", + "category": "related" + }, + { + "from": 825, + "to": 146, + "label": "member of political party", + "category": "related" + }, + { + "from": 825, + "to": 824, + "label": "member of political party", + "category": "related" + }, + { + "from": 825, + "to": 825, + "label": "member of political party", + "category": "related" + }, + { + "from": 825, + "to": 826, + "label": "position held", + "category": "related" + }, + { + "from": 113, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 827, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 828, + "label": "position held", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 55, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 829, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 820, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 820, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 830, + "to": 831, + "label": "maintained by", + "category": "related" + }, + { + "from": 830, + "to": 832, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 832, + "to": 831, + "label": "maintained by", + "category": "related" + }, + { + "from": 832, + "to": 830, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 833, + "to": 831, + "label": "participant", + "category": "related" + }, + { + "from": 833, + "to": 834, + "label": "participant", + "category": "related" + }, + { + "from": 835, + "to": 833, + "label": "participant in", + "category": "related" + }, + { + "from": 835, + "to": 836, + "label": "participant in", + "category": "related" + }, + { + "from": 836, + "to": 831, + "label": "participant", + "category": "related" + }, + { + "from": 836, + "to": 835, + "label": "participant", + "category": "related" + }, + { + "from": 524, + "to": 525, + "label": "officeholder", + "category": "related" + }, + { + "from": 525, + "to": 524, + "label": "position held", + "category": "related" + }, + { + "from": 92, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 612, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 837, + "to": 838, + "label": "member of political party", + "category": "related" + }, + { + "from": 838, + "to": 837, + "label": "chairperson", + "category": "related" + }, + { + "from": 838, + "to": 96, + "label": "location of formation", + "category": "related" + }, + { + "from": 838, + "to": 97, + "label": "location of formation", + "category": "related" + }, + { + "from": 839, + "to": 838, + "label": "member of political party", + "category": "related" + }, + { + "from": 839, + "to": 96, + "label": "place of birth", + "category": "related" + }, + { + "from": 839, + "to": 840, + "label": "place of birth", + "category": "related" + }, + { + "from": 839, + "to": 96, + "label": "residence", + "category": "related" + }, + { + "from": 839, + "to": 97, + "label": "residence", + "category": "related" + }, + { + "from": 839, + "to": 96, + "label": "location of formation", + "category": "related" + }, + { + "from": 839, + "to": 840, + "label": "location of formation", + "category": "related" + }, + { + "from": 841, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 842, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 340, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 842, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 340, + "to": 231, + "label": "owned by", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 843, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 844, + "to": 845, + "label": "date of death", + "category": "related" + }, + { + "from": 844, + "to": 96, + "label": "place of death", + "category": "related" + }, + { + "from": 846, + "to": 96, + "label": "place of death", + "category": "related" + }, + { + "from": 846, + "to": 845, + "label": "date of death", + "category": "related" + }, + { + "from": 340, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 847, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 848, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 848, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 849, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 849, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 848, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 850, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 851, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 852, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 852, + "to": 851, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 852, + "to": 853, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 853, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 853, + "to": 852, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 853, + "to": 97, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 854, + "to": 111, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 855, + "to": 111, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 856, + "to": 111, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 857, + "to": 858, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 859, + "to": 858, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 860, + "to": 857, + "label": "place of death", + "category": "related" + }, + { + "from": 860, + "to": 858, + "label": "place of death", + "category": "related" + }, + { + "from": 857, + "to": 860, + "label": "occupant", + "category": "related" + }, + { + "from": 857, + "to": 861, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 857, + "to": 860, + "label": "head of government", + "category": "related" + }, + { + "from": 857, + "to": 862, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 857, + "to": 862, + "label": "head of government", + "category": "related" + }, + { + "from": 863, + "to": 864, + "label": "member of political party", + "category": "related" + }, + { + "from": 865, + "to": 864, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 864, + "label": "member of political party", + "category": "related" + }, + { + "from": 866, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 47, + "label": "head of government", + "category": "related" + }, + { + "from": 7, + "to": 866, + "label": "legislative body", + "category": "related" + }, + { + "from": 7, + "to": 867, + "label": "head of government", + "category": "related" + }, + { + "from": 7, + "to": 866, + "label": "significant event", + "category": "related" + }, + { + "from": 865, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 868, + "label": "head of government", + "category": "related" + }, + { + "from": 869, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 869, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 870, + "to": 869, + "label": "educated at", + "category": "related" + }, + { + "from": 870, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 871, + "to": 869, + "label": "educated at", + "category": "related" + }, + { + "from": 871, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 872, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 872, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 873, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 874, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 875, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 876, + "to": 877, + "label": "chairperson", + "category": "related" + }, + { + "from": 877, + "to": 876, + "label": "member of political party", + "category": "related" + }, + { + "from": 877, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 48, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "contains administrative", + "category": "related" + }, + { + "from": 220, + "to": 48, + "label": "country", + "category": "related" + }, + { + "from": 48, + "to": 878, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 879, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 880, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 881, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 882, + "to": 43, + "label": "participant", + "category": "related" + }, + { + "from": 7, + "to": 883, + "label": "legislative body", + "category": "related" + }, + { + "from": 884, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 884, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 885, + "to": 886, + "label": "employer", + "category": "related" + }, + { + "from": 886, + "to": 885, + "label": "chairperson", + "category": "related" + }, + { + "from": 887, + "to": 885, + "label": "chairperson", + "category": "related" + }, + { + "from": 887, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 886, + "label": "member of", + "category": "related" + }, + { + "from": 888, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 888, + "to": 889, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 888, + "to": 7, + "label": "work location", + "category": "related" + }, + { + "from": 888, + "to": 890, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 734, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 891, + "to": 136, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 892, + "to": 136, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 893, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 137, + "to": 136, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 136, + "to": 137, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 894, + "to": 895, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 896, + "to": 895, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 895, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 897, + "to": 895, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 897, + "to": 897, + "label": "has effect", + "category": "related" + }, + { + "from": 897, + "to": 897, + "label": "has cause", + "category": "related" + }, + { + "from": 897, + "to": 896, + "label": "location", + "category": "related" + }, + { + "from": 898, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 899, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 900, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 901, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 901, + "to": 902, + "label": "owned by", + "category": "related" + }, + { + "from": 902, + "to": 901, + "label": "owner of", + "category": "related" + }, + { + "from": 901, + "to": 902, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 902, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 902, + "to": 903, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 902, + "to": 904, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 905, + "to": 906, + "label": "parent organization", + "category": "related" + }, + { + "from": 906, + "to": 905, + "label": "subsidiary", + "category": "related" + }, + { + "from": 906, + "to": 907, + "label": "subsidiary", + "category": "related" + }, + { + "from": 907, + "to": 906, + "label": "parent organization", + "category": "related" + }, + { + "from": 908, + "to": 168, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 168, + "to": 168, + "label": "located", + "category": "related" + }, + { + "from": 909, + "to": 910, + "label": "work location", + "category": "related" + }, + { + "from": 909, + "to": 911, + "label": "employer", + "category": "related" + }, + { + "from": 909, + "to": 912, + "label": "work location", + "category": "related" + }, + { + "from": 909, + "to": 913, + "label": "field of work", + "category": "related" + }, + { + "from": 909, + "to": 914, + "label": "field of work", + "category": "related" + }, + { + "from": 913, + "to": 910, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 913, + "to": 912, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 914, + "to": 910, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 914, + "to": 912, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 915, + "to": 910, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 916, + "to": 910, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 916, + "to": 912, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 916, + "to": 910, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 917, + "to": 631, + "label": "officeholder", + "category": "related" + }, + { + "from": 631, + "to": 917, + "label": "position held", + "category": "related" + }, + { + "from": 918, + "to": 917, + "label": "owned by", + "category": "related" + }, + { + "from": 918, + "to": 919, + "label": "instance of", + "category": "related" + }, + { + "from": 920, + "to": 917, + "label": "position held", + "category": "related" + }, + { + "from": 920, + "to": 919, + "label": "instance of", + "category": "related" + }, + { + "from": 37, + "to": 917, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 37, + "to": 631, + "label": "head of government", + "category": "related" + }, + { + "from": 37, + "to": 918, + "label": "owner of", + "category": "related" + }, + { + "from": 37, + "to": 917, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 37, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 921, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 921, + "label": "owner of", + "category": "related" + }, + { + "from": 922, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 922, + "to": 923, + "label": "employer", + "category": "related" + }, + { + "from": 924, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 924, + "to": 923, + "label": "employer", + "category": "related" + }, + { + "from": 923, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 923, + "to": 133, + "label": "located in", + "category": "related" + }, + { + "from": 925, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 925, + "to": 133, + "label": "located in the", + "category": "related" + }, + { + "from": 917, + "to": 631, + "label": "officeholder", + "category": "related" + }, + { + "from": 631, + "to": 917, + "label": "position held", + "category": "related" + }, + { + "from": 926, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 917, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 432, + "to": 926, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 432, + "to": 917, + "label": "office", + "category": "related" + }, + { + "from": 927, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the", + "category": "related" + }, + { + "from": 7, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 928, + "to": 929, + "label": "point in time", + "category": "related" + }, + { + "from": 930, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 284, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 284, + "to": 929, + "label": "point in time", + "category": "related" + }, + { + "from": 929, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 929, + "to": 929, + "label": "point in time", + "category": "related" + }, + { + "from": 929, + "to": 284, + "label": "instance of", + "category": "related" + }, + { + "from": 929, + "to": 929, + "label": "point", + "category": "related" + }, + { + "from": 284, + "to": 929, + "label": "point", + "category": "related" + }, + { + "from": 931, + "to": 176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 176, + "to": 931, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 176, + "to": 932, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 932, + "to": 176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 176, + "to": 932, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 530, + "to": 176, + "label": "place of death", + "category": "related" + }, + { + "from": 530, + "to": 176, + "label": "place of", + "category": "related" + }, + { + "from": 530, + "to": 176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 933, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 934, + "to": 935, + "label": "position held", + "category": "related" + }, + { + "from": 7, + "to": 933, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 936, + "to": 933, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 936, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 936, + "to": 937, + "label": "instance of", + "category": "related" + }, + { + "from": 937, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 938, + "to": 838, + "label": "member of political party", + "category": "related" + }, + { + "from": 939, + "to": 838, + "label": "member of political party", + "category": "related" + }, + { + "from": 940, + "to": 838, + "label": "member of political party", + "category": "related" + }, + { + "from": 941, + "to": 285, + "label": "employer", + "category": "related" + }, + { + "from": 942, + "to": 943, + "label": "officeholder", + "category": "related" + }, + { + "from": 943, + "to": 942, + "label": "position held", + "category": "related" + }, + { + "from": 944, + "to": 838, + "label": "member of political party", + "category": "related" + }, + { + "from": 943, + "to": 838, + "label": "member of political party", + "category": "related" + }, + { + "from": 945, + "to": 943, + "label": "officeholder", + "category": "related" + }, + { + "from": 946, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 946, + "to": 947, + "label": "member of political party", + "category": "related" + }, + { + "from": 948, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 948, + "to": 947, + "label": "member of political party", + "category": "related" + }, + { + "from": 54, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 54, + "to": 947, + "label": "member of political party", + "category": "related" + }, + { + "from": 949, + "to": 145, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 145, + "to": 949, + "label": "part of", + "category": "related" + }, + { + "from": 950, + "to": 145, + "label": "position held", + "category": "related" + }, + { + "from": 951, + "to": 145, + "label": "position held", + "category": "related" + }, + { + "from": 952, + "to": 535, + "label": "place of birth", + "category": "related" + }, + { + "from": 953, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 535, + "to": 954, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 145, + "to": 949, + "label": "subsidiary", + "category": "related" + }, + { + "from": 954, + "to": 220, + "label": "applies", + "category": "related" + }, + { + "from": 955, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 820, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 956, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 820, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 820, + "to": 956, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 957, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 495, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 958, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 959, + "to": 960, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 961, + "to": 960, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 962, + "to": 960, + "label": "place of death", + "category": "related" + }, + { + "from": 963, + "to": 960, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 963, + "to": 960, + "label": "place of death", + "category": "related" + }, + { + "from": 963, + "to": 964, + "label": "followed by", + "category": "related" + }, + { + "from": 964, + "to": 960, + "label": "place of death", + "category": "related" + }, + { + "from": 965, + "to": 966, + "label": "father", + "category": "related" + }, + { + "from": 966, + "to": 965, + "label": "child", + "category": "related" + }, + { + "from": 966, + "to": 967, + "label": "date of death", + "category": "related" + }, + { + "from": 968, + "to": 969, + "label": "part of", + "category": "related" + }, + { + "from": 969, + "to": 966, + "label": "named after", + "category": "related" + }, + { + "from": 969, + "to": 967, + "label": "date of death", + "category": "related" + }, + { + "from": 970, + "to": 966, + "label": "child", + "category": "related" + }, + { + "from": 969, + "to": 967, + "label": "date of official opening", + "category": "related" + }, + { + "from": 970, + "to": 967, + "label": "child", + "category": "related" + }, + { + "from": 971, + "to": 972, + "label": "member of political party", + "category": "related" + }, + { + "from": 973, + "to": 974, + "label": "member of political party", + "category": "related" + }, + { + "from": 975, + "to": 974, + "label": "member of political party", + "category": "related" + }, + { + "from": 976, + "to": 974, + "label": "member of political party", + "category": "related" + }, + { + "from": 976, + "to": 535, + "label": "place of birth", + "category": "related" + }, + { + "from": 976, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 976, + "to": 972, + "label": "member of political party", + "category": "related" + }, + { + "from": 976, + "to": 535, + "label": "place of death", + "category": "related" + }, + { + "from": 977, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 978, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 954, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 979, + "to": 144, + "label": "court", + "category": "related" + }, + { + "from": 980, + "to": 981, + "label": "part of", + "category": "related" + }, + { + "from": 981, + "to": 981, + "label": "has part", + "category": "related" + }, + { + "from": 981, + "to": 980, + "label": "has part", + "category": "related" + }, + { + "from": 982, + "to": 144, + "label": "court", + "category": "related" + }, + { + "from": 983, + "to": 984, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 168, + "to": 984, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 984, + "to": 983, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 984, + "to": 168, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 985, + "to": 986, + "label": "spouse", + "category": "related" + }, + { + "from": 986, + "to": 985, + "label": "spouse", + "category": "related" + }, + { + "from": 986, + "to": 987, + "label": "spouse", + "category": "related" + }, + { + "from": 988, + "to": 985, + "label": "spouse", + "category": "related" + }, + { + "from": 988, + "to": 987, + "label": "spouse", + "category": "related" + }, + { + "from": 989, + "to": 737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 989, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 990, + "to": 737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 990, + "to": 991, + "label": "field of work", + "category": "related" + }, + { + "from": 991, + "to": 991, + "label": "product or material produced", + "category": "related" + }, + { + "from": 992, + "to": 993, + "label": "subclass of", + "category": "related" + }, + { + "from": 994, + "to": 993, + "label": "subclass of", + "category": "related" + }, + { + "from": 990, + "to": 995, + "label": "field of work", + "category": "related" + }, + { + "from": 995, + "to": 993, + "label": "subclass of", + "category": "related" + }, + { + "from": 996, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 997, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 998, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 999, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 284, + "to": 113, + "label": "participant", + "category": "related" + }, + { + "from": 284, + "to": 43, + "label": "successful candidate", + "category": "related" + }, + { + "from": 284, + "to": 113, + "label": "successful candidate", + "category": "related" + }, + { + "from": 152, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 1000, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 747, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 747, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 1002, + "to": 658, + "label": "member", + "category": "related" + }, + { + "from": 747, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1003, + "to": 113, + "label": "member of", + "category": "related" + }, + { + "from": 1004, + "to": 11, + "label": "operator", + "category": "related" + }, + { + "from": 1005, + "to": 11, + "label": "operator", + "category": "related" + }, + { + "from": 1006, + "to": 11, + "label": "operator", + "category": "related" + }, + { + "from": 1007, + "to": 11, + "label": "operator", + "category": "related" + }, + { + "from": 1008, + "to": 11, + "label": "operator", + "category": "related" + }, + { + "from": 759, + "to": 11, + "label": "owned by", + "category": "related" + }, + { + "from": 759, + "to": 11, + "label": "operator", + "category": "related" + }, + { + "from": 1008, + "to": 759, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1009, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1010, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1011, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 1012, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1012, + "to": 1010, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 1010, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1013, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1013, + "to": 1010, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1013, + "to": 1011, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1013, + "to": 73, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 1014, + "to": 1015, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1016, + "to": 1015, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1017, + "to": 1015, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1018, + "to": 1015, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1019, + "to": 1015, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1020, + "to": 1015, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1021, + "to": 1015, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1021, + "to": 1022, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1021, + "to": 1023, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 1024, + "label": "shares border with", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 1024, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 1025, + "to": 1026, + "label": "replaced by", + "category": "related" + }, + { + "from": 1026, + "to": 1025, + "label": "replaces", + "category": "related" + }, + { + "from": 1027, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1029, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1030, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1031, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1032, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1033, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1034, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1035, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1036, + "to": 1028, + "label": "member of sports team", + "category": "related" + }, + { + "from": 505, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1037, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1038, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1039, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1024, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1040, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1041, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1042, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1043, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1044, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1045, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 452, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1046, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1047, + "to": 541, + "label": "officeholder", + "category": "related" + }, + { + "from": 541, + "to": 1047, + "label": "position held", + "category": "related" + }, + { + "from": 1048, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1049, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1050, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1051, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1052, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 1053, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 1054, + "label": "member of", + "category": "related" + }, + { + "from": 1055, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1057, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1058, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1059, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1060, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1061, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1062, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1063, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 1064, + "to": 1056, + "label": "subclass of", + "category": "related" + }, + { + "from": 54, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 123, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 123, + "to": 376, + "label": "chairperson", + "category": "related" + }, + { + "from": 376, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1065, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1066, + "to": 1067, + "label": "officeholder", + "category": "related" + }, + { + "from": 1067, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1067, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 1067, + "to": 1066, + "label": "position held", + "category": "related" + }, + { + "from": 1068, + "to": 960, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 490, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 490, + "to": 737, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1069, + "to": 737, + "label": "location", + "category": "related" + }, + { + "from": 1069, + "to": 1069, + "label": "instance of", + "category": "related" + }, + { + "from": 1069, + "to": 1070, + "label": "instance of", + "category": "related" + }, + { + "from": 1071, + "to": 1072, + "label": "employer", + "category": "related" + }, + { + "from": 1073, + "to": 1072, + "label": "employer", + "category": "related" + }, + { + "from": 1073, + "to": 1074, + "label": "position held", + "category": "related" + }, + { + "from": 1074, + "to": 1072, + "label": "part of", + "category": "related" + }, + { + "from": 1074, + "to": 1073, + "label": "officeholder", + "category": "related" + }, + { + "from": 1075, + "to": 1072, + "label": "operator", + "category": "related" + }, + { + "from": 1076, + "to": 1072, + "label": "owned by", + "category": "related" + }, + { + "from": 1076, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1077, + "to": 1072, + "label": "owned by", + "category": "related" + }, + { + "from": 1077, + "to": 1072, + "label": "operator", + "category": "related" + }, + { + "from": 144, + "to": 813, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 813, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 813, + "to": 1078, + "label": "officeholder", + "category": "related" + }, + { + "from": 813, + "to": 1079, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 1078, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 1079, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 1080, + "to": 48, + "label": "member", + "category": "related" + }, + { + "from": 1081, + "to": 1082, + "label": "place of death", + "category": "related" + }, + { + "from": 1083, + "to": 1082, + "label": "connects with", + "category": "related" + }, + { + "from": 1084, + "to": 1082, + "label": "connects with", + "category": "related" + }, + { + "from": 1085, + "to": 1082, + "label": "place of death", + "category": "related" + }, + { + "from": 1085, + "to": 1083, + "label": "connects with", + "category": "related" + }, + { + "from": 1085, + "to": 1084, + "label": "connects with", + "category": "related" + }, + { + "from": 1084, + "to": 1083, + "label": "connects with", + "category": "related" + }, + { + "from": 1084, + "to": 1085, + "label": "connects with", + "category": "related" + }, + { + "from": 1084, + "to": 1086, + "label": "connects with", + "category": "related" + }, + { + "from": 1084, + "to": 1084, + "label": "connects with", + "category": "related" + }, + { + "from": 1087, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 172, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 292, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1088, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1089, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 137, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1090, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1091, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1092, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1093, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 136, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1094, + "to": 1095, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 598, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 1096, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 77, + "to": 1097, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 77, + "to": 1098, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1099, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1099, + "to": 195, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 71, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 231, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 1100, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1101, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1102, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1103, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1103, + "to": 1101, + "label": "connecting line", + "category": "related" + }, + { + "from": 1103, + "to": 1102, + "label": "connecting line", + "category": "related" + }, + { + "from": 1103, + "to": 1100, + "label": "connecting line", + "category": "related" + }, + { + "from": 1103, + "to": 77, + "label": "connecting line", + "category": "related" + }, + { + "from": 1103, + "to": 1104, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 696, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 1105, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1106, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 319, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 319, + "label": "legislative body", + "category": "related" + }, + { + "from": 1106, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1107, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 1108, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1108, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1109, + "to": 1110, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1111, + "to": 1112, + "label": "instance of", + "category": "related" + }, + { + "from": 1113, + "to": 1112, + "label": "instance of", + "category": "related" + }, + { + "from": 1114, + "to": 1112, + "label": "instance of", + "category": "related" + }, + { + "from": 1115, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1116, + "to": 1117, + "label": "followed by", + "category": "related" + }, + { + "from": 1116, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 1117, + "label": "head of government", + "category": "related" + }, + { + "from": 7, + "to": 1116, + "label": "follows", + "category": "related" + }, + { + "from": 360, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 360, + "to": 1116, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 360, + "to": 7, + "label": "country", + "category": "related" + }, + { + "from": 128, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1118, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 128, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "capital of", + "category": "related" + }, + { + "from": 123, + "to": 1119, + "label": "chairperson", + "category": "related" + }, + { + "from": 1119, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1119, + "to": 1120, + "label": "award received", + "category": "related" + }, + { + "from": 1120, + "to": 1119, + "label": "winner", + "category": "related" + }, + { + "from": 1121, + "to": 1120, + "label": "award received", + "category": "related" + }, + { + "from": 1122, + "to": 1120, + "label": "award received", + "category": "related" + }, + { + "from": 1120, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1123, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1124, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1125, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1125, + "to": 1126, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1127, + "to": 1120, + "label": "award received", + "category": "related" + }, + { + "from": 1128, + "to": 96, + "label": "place of death", + "category": "related" + }, + { + "from": 1128, + "to": 1129, + "label": "date of death", + "category": "related" + }, + { + "from": 1130, + "to": 96, + "label": "place of death", + "category": "related" + }, + { + "from": 1130, + "to": 1131, + "label": "place of death", + "category": "related" + }, + { + "from": 1130, + "to": 1129, + "label": "date of death", + "category": "related" + }, + { + "from": 1131, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1131, + "to": 231, + "label": "owned by", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 1130, + "label": "owner of", + "category": "related" + }, + { + "from": 231, + "to": 1131, + "label": "owner of", + "category": "related" + }, + { + "from": 231, + "to": 1132, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1133, + "to": 1134, + "label": "position held", + "category": "related" + }, + { + "from": 1135, + "to": 1134, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 1136, + "to": 1134, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 1136, + "to": 1134, + "label": "office held by head of", + "category": "related" + }, + { + "from": 1137, + "to": 1134, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 112, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 112, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1138, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 97, + "to": 112, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 840, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1139, + "to": 1140, + "label": "mouth of the watercourse", + "category": "related" + }, + { + "from": 1140, + "to": 1139, + "label": "tributary", + "category": "related" + }, + { + "from": 1139, + "to": 1140, + "label": "mouth of the water", + "category": "related" + }, + { + "from": 813, + "to": 1141, + "label": "officeholder", + "category": "related" + }, + { + "from": 1141, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 950, + "to": 1142, + "label": "position held", + "category": "related" + }, + { + "from": 1142, + "to": 950, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 146, + "to": 1143, + "label": "position held", + "category": "related" + }, + { + "from": 950, + "to": 1144, + "label": "position held", + "category": "related" + }, + { + "from": 1144, + "to": 950, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 1144, + "label": "position held", + "category": "related" + }, + { + "from": 1145, + "to": 1146, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1147, + "to": 1148, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1147, + "to": 1149, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1149, + "to": 1145, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1149, + "to": 1147, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 4, + "to": 3, + "label": "chairperson", + "category": "related" + }, + { + "from": 3, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 3, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 3, + "to": 412, + "label": "father", + "category": "related" + }, + { + "from": 412, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 3, + "label": "child", + "category": "related" + }, + { + "from": 305, + "to": 1150, + "label": "head of state", + "category": "related" + }, + { + "from": 1150, + "to": 305, + "label": "country", + "category": "related" + }, + { + "from": 412, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1150, + "to": 305, + "label": "country of", + "category": "related" + }, + { + "from": 1151, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1151, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1152, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1152, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 1152, + "label": "capital", + "category": "related" + }, + { + "from": 1142, + "to": 7, + "label": "located", + "category": "related" + }, + { + "from": 1153, + "to": 1154, + "label": "place of death", + "category": "related" + }, + { + "from": 1155, + "to": 1154, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1154, + "to": 1155, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1154, + "to": 1154, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1154, + "to": 1154, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1156, + "to": 1157, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 899, + "to": 1157, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1158, + "to": 1159, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1159, + "to": 1158, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 415, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1160, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1161, + "to": 1160, + "label": "part of", + "category": "related" + }, + { + "from": 1161, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 1161, + "label": "legislative body", + "category": "related" + }, + { + "from": 1160, + "to": 1161, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1160, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1161, + "to": 1160, + "label": "parent organization", + "category": "related" + }, + { + "from": 1160, + "to": 1161, + "label": "subsidiary", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 1162, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 1163, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1162, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1163, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1164, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1165, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1165, + "to": 48, + "label": "member", + "category": "related" + }, + { + "from": 1166, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1165, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1165, + "to": 48, + "label": "member of political", + "category": "related" + }, + { + "from": 133, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1167, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1168, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1169, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1170, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1171, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1172, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1173, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1174, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1175, + "to": 1176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1177, + "to": 1176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1178, + "to": 1176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1179, + "to": 1176, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1180, + "to": 1181, + "label": "subclass", + "category": "related" + }, + { + "from": 1181, + "to": 1182, + "label": "subclass of", + "category": "related" + }, + { + "from": 658, + "to": 1183, + "label": "chairperson", + "category": "related" + }, + { + "from": 1183, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 1184, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1186, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1187, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1188, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1189, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1189, + "to": 1187, + "label": "has cause", + "category": "related" + }, + { + "from": 1189, + "to": 1187, + "label": "has", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1185, + "to": 1187, + "label": "legislative", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has part", + "category": "related" + }, + { + "from": 1185, + "to": 1187, + "label": "has", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 43, + "to": 1190, + "label": "spouse", + "category": "related" + }, + { + "from": 1190, + "to": 43, + "label": "spouse", + "category": "related" + }, + { + "from": 1190, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 1190, + "to": 1191, + "label": "position held", + "category": "related" + }, + { + "from": 1190, + "to": 1192, + "label": "position held", + "category": "related" + }, + { + "from": 1193, + "to": 1194, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1195, + "to": 1194, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1195, + "to": 225, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 225, + "to": 1195, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1196, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1197, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1198, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1199, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1200, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1201, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1201, + "to": 1200, + "label": "located", + "category": "related" + }, + { + "from": 1201, + "to": 1200, + "label": "affiliation", + "category": "related" + }, + { + "from": 1202, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1203, + "to": 1204, + "label": "said to be the same as", + "category": "related" + }, + { + "from": 1205, + "to": 1206, + "label": "instance of", + "category": "related" + }, + { + "from": 1207, + "to": 1206, + "label": "instance of", + "category": "related" + }, + { + "from": 1208, + "to": 1206, + "label": "instance of", + "category": "related" + }, + { + "from": 1209, + "to": 1206, + "label": "instance of", + "category": "related" + }, + { + "from": 1209, + "to": 1207, + "label": "has part", + "category": "related" + }, + { + "from": 1209, + "to": 1210, + "label": "has part", + "category": "related" + }, + { + "from": 1210, + "to": 1206, + "label": "instance of", + "category": "related" + }, + { + "from": 1210, + "to": 1208, + "label": "owner of", + "category": "related" + }, + { + "from": 1210, + "to": 1209, + "label": "owner of", + "category": "related" + }, + { + "from": 1210, + "to": 1209, + "label": "instance of", + "category": "related" + }, + { + "from": 1209, + "to": 1208, + "label": "has part", + "category": "related" + }, + { + "from": 1208, + "to": 1207, + "label": "has part", + "category": "related" + }, + { + "from": 1208, + "to": 1209, + "label": "has part", + "category": "related" + }, + { + "from": 13, + "to": 1206, + "label": "instance of", + "category": "related" + }, + { + "from": 13, + "to": 1207, + "label": "instance of", + "category": "related" + }, + { + "from": 1211, + "to": 180, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1212, + "to": 1213, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1213, + "to": 1212, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1213, + "to": 1214, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1214, + "to": 1213, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1214, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1215, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1216, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 220, + "to": 256, + "label": "capital", + "category": "related" + }, + { + "from": 1217, + "to": 1218, + "label": "position held", + "category": "related" + }, + { + "from": 256, + "to": 220, + "label": "capital of", + "category": "related" + }, + { + "from": 795, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 795, + "to": 256, + "label": "capital", + "category": "related" + }, + { + "from": 795, + "to": 359, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 359, + "to": 256, + "label": "capital", + "category": "related" + }, + { + "from": 359, + "to": 795, + "label": "contains administrative", + "category": "related" + }, + { + "from": 224, + "to": 795, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1219, + "to": 795, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1220, + "to": 1221, + "label": "parent organization", + "category": "related" + }, + { + "from": 1222, + "to": 1219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1219, + "to": 795, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1219, + "to": 795, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1222, + "to": 1222, + "label": "part of", + "category": "related" + }, + { + "from": 1223, + "to": 1224, + "label": "point in time", + "category": "related" + }, + { + "from": 1225, + "to": 1226, + "label": "position held", + "category": "related" + }, + { + "from": 1226, + "to": 1225, + "label": "officeholder", + "category": "related" + }, + { + "from": 1225, + "to": 1225, + "label": "officeholder", + "category": "related" + }, + { + "from": 1225, + "to": 1225, + "label": "position held", + "category": "related" + }, + { + "from": 772, + "to": 1227, + "label": "chairperson", + "category": "related" + }, + { + "from": 1227, + "to": 772, + "label": "member of political party", + "category": "related" + }, + { + "from": 766, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1228, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1229, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1229, + "to": 766, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1228, + "to": 766, + "label": "location", + "category": "related" + }, + { + "from": 766, + "to": 1228, + "label": "significant event", + "category": "related" + }, + { + "from": 1230, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1231, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1232, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1233, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1234, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1234, + "to": 1235, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1236, + "to": 535, + "label": "located in the", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1237, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1238, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1239, + "to": 220, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1240, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1241, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 737, + "label": "capital", + "category": "related" + }, + { + "from": 737, + "to": 521, + "label": "capital of", + "category": "related" + }, + { + "from": 1242, + "to": 521, + "label": "place of death", + "category": "related" + }, + { + "from": 1243, + "to": 521, + "label": "place of death", + "category": "related" + }, + { + "from": 1243, + "to": 737, + "label": "place of death", + "category": "related" + }, + { + "from": 737, + "to": 1244, + "label": "capital of", + "category": "related" + }, + { + "from": 737, + "to": 1245, + "label": "capital of", + "category": "related" + }, + { + "from": 521, + "to": 1243, + "label": "head of government", + "category": "related" + }, + { + "from": 1243, + "to": 521, + "label": "place of", + "category": "related" + }, + { + "from": 1246, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 113, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1247, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1248, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 744, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1249, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 1247, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 1248, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 117, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 99, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1250, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1251, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 856, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1252, + "to": 1253, + "label": "said to be the same as", + "category": "related" + }, + { + "from": 1253, + "to": 1252, + "label": "said to be the same as", + "category": "related" + }, + { + "from": 1253, + "to": 1254, + "label": "country of origin", + "category": "related" + }, + { + "from": 1254, + "to": 1253, + "label": "said to be the same as", + "category": "related" + }, + { + "from": 932, + "to": 231, + "label": "part of", + "category": "related" + }, + { + "from": 231, + "to": 932, + "label": "has part", + "category": "related" + }, + { + "from": 535, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1255, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1195, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 225, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 223, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 219, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1256, + "to": 510, + "label": "place of death", + "category": "related" + }, + { + "from": 1256, + "to": 1257, + "label": "sport", + "category": "related" + }, + { + "from": 1258, + "to": 510, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1258, + "to": 1012, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1012, + "to": 510, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 510, + "to": 1258, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 510, + "to": 1012, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1012, + "to": 510, + "label": "located", + "category": "related" + }, + { + "from": 510, + "to": 1258, + "label": "contains settlement", + "category": "related" + }, + { + "from": 510, + "to": 1012, + "label": "contains settlement", + "category": "related" + }, + { + "from": 1012, + "to": 510, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1259, + "to": 1260, + "label": "has cause", + "category": "related" + }, + { + "from": 1260, + "to": 1259, + "label": "has effect", + "category": "related" + }, + { + "from": 1260, + "to": 1261, + "label": "has effect", + "category": "related" + }, + { + "from": 1261, + "to": 1259, + "label": "has effect", + "category": "related" + }, + { + "from": 1261, + "to": 1260, + "label": "has cause", + "category": "related" + }, + { + "from": 1261, + "to": 1259, + "label": "has cause", + "category": "related" + }, + { + "from": 1262, + "to": 1263, + "label": "subclass of", + "category": "related" + }, + { + "from": 1264, + "to": 1263, + "label": "subclass of", + "category": "related" + }, + { + "from": 1265, + "to": 1263, + "label": "subclass of", + "category": "related" + }, + { + "from": 1266, + "to": 1263, + "label": "subclass of", + "category": "related" + }, + { + "from": 1267, + "to": 1263, + "label": "subclass of", + "category": "related" + }, + { + "from": 317, + "to": 1263, + "label": "subclass of", + "category": "related" + }, + { + "from": 318, + "to": 1263, + "label": "subclass of", + "category": "related" + }, + { + "from": 317, + "to": 1263, + "label": "instance of", + "category": "related" + }, + { + "from": 318, + "to": 1263, + "label": "instance of", + "category": "related" + }, + { + "from": 1268, + "to": 795, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1269, + "to": 795, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1270, + "to": 795, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1270, + "to": 1268, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1270, + "to": 1269, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1269, + "to": 1270, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1269, + "to": 1268, + "label": "contains administrative", + "category": "related" + }, + { + "from": 401, + "to": 1271, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1271, + "to": 401, + "label": "capital", + "category": "related" + }, + { + "from": 1272, + "to": 1271, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1273, + "to": 1274, + "label": "has part", + "category": "related" + }, + { + "from": 1273, + "to": 1275, + "label": "has part", + "category": "related" + }, + { + "from": 1274, + "to": 1273, + "label": "part of", + "category": "related" + }, + { + "from": 1275, + "to": 1274, + "label": "part of", + "category": "related" + }, + { + "from": 1275, + "to": 1273, + "label": "part of", + "category": "related" + }, + { + "from": 1273, + "to": 1275, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1276, + "to": 149, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 149, + "to": 737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 149, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1277, + "to": 737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1278, + "to": 737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 737, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 1279, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 737, + "to": 1280, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1281, + "to": 1282, + "label": "location", + "category": "related" + }, + { + "from": 1281, + "to": 603, + "label": "country", + "category": "related" + }, + { + "from": 1282, + "to": 603, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1281, + "label": "participant in", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 1281, + "label": "participant in", + "category": "related" + }, + { + "from": 199, + "to": 600, + "label": "member of", + "category": "related" + }, + { + "from": 199, + "to": 805, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 805, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 805, + "to": 600, + "label": "member of", + "category": "related" + }, + { + "from": 603, + "to": 805, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 805, + "to": 199, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 285, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 806, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 806, + "label": "capital", + "category": "related" + }, + { + "from": 806, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 806, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 806, + "to": 179, + "label": "capital of", + "category": "related" + }, + { + "from": 1283, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1283, + "to": 929, + "label": "point in time", + "category": "related" + }, + { + "from": 806, + "to": 1283, + "label": "capital of", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 942, + "label": "position held", + "category": "related" + }, + { + "from": 942, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 942, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 55, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 55, + "to": 43, + "label": "officeholder", + "category": "related" + }, + { + "from": 1284, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1284, + "to": 942, + "label": "position held", + "category": "related" + }, + { + "from": 1284, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1285, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1286, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1285, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 1287, + "to": 1288, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1288, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 1288, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 539, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 539, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 539, + "to": 1288, + "label": "applies", + "category": "related" + }, + { + "from": 1289, + "to": 266, + "label": "point in time", + "category": "related" + }, + { + "from": 1288, + "to": 840, + "label": "shares border with", + "category": "related" + }, + { + "from": 539, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1290, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1291, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1292, + "to": 1293, + "label": "position held", + "category": "related" + }, + { + "from": 1292, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1292, + "to": 1294, + "label": "employer", + "category": "related" + }, + { + "from": 1292, + "to": 1295, + "label": "employer", + "category": "related" + }, + { + "from": 1292, + "to": 1296, + "label": "employer", + "category": "related" + }, + { + "from": 1293, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1293, + "to": 1297, + "label": "country", + "category": "related" + }, + { + "from": 1298, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1299, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1300, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1301, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1302, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1303, + "to": 1304, + "label": "parent organization", + "category": "related" + }, + { + "from": 1304, + "to": 1303, + "label": "subsidiary", + "category": "related" + }, + { + "from": 1304, + "to": 1305, + "label": "owner of", + "category": "related" + }, + { + "from": 1305, + "to": 1304, + "label": "owned by", + "category": "related" + }, + { + "from": 1306, + "to": 1307, + "label": "followed by", + "category": "related" + }, + { + "from": 1306, + "to": 1308, + "label": "follows", + "category": "related" + }, + { + "from": 1308, + "to": 1307, + "label": "followed by", + "category": "related" + }, + { + "from": 1308, + "to": 1306, + "label": "followed by", + "category": "related" + }, + { + "from": 1308, + "to": 1309, + "label": "followed by", + "category": "related" + }, + { + "from": 1310, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1311, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1312, + "to": 1313, + "label": "subclass of", + "category": "related" + }, + { + "from": 1312, + "to": 1314, + "label": "subclass of", + "category": "related" + }, + { + "from": 1312, + "to": 1315, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 1312, + "to": 1316, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 1316, + "to": 1313, + "label": "practiced by", + "category": "related" + }, + { + "from": 1316, + "to": 1314, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 1316, + "to": 1315, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 1316, + "to": 1312, + "label": "practiced by", + "category": "related" + }, + { + "from": 1316, + "to": 1314, + "label": "practiced by", + "category": "related" + }, + { + "from": 1316, + "to": 1313, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 1317, + "to": 1318, + "label": "facet of", + "category": "related" + }, + { + "from": 1319, + "to": 542, + "label": "member of political party", + "category": "related" + }, + { + "from": 1080, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1320, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1320, + "to": 1321, + "label": "position held", + "category": "related" + }, + { + "from": 48, + "to": 1080, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 1322, + "label": "chairperson", + "category": "related" + }, + { + "from": 1323, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1323, + "to": 1321, + "label": "position held", + "category": "related" + }, + { + "from": 48, + "to": 1324, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 1320, + "label": "chairperson", + "category": "related" + }, + { + "from": 113, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 1325, + "to": 113, + "label": "part of", + "category": "related" + }, + { + "from": 1325, + "to": 43, + "label": "officeholder", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 1325, + "label": "position held", + "category": "related" + }, + { + "from": 1326, + "to": 43, + "label": "participant", + "category": "related" + }, + { + "from": 1326, + "to": 1327, + "label": "participant", + "category": "related" + }, + { + "from": 1326, + "to": 1328, + "label": "participant", + "category": "related" + }, + { + "from": 1326, + "to": 1138, + "label": "main subject", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member", + "category": "related" + }, + { + "from": 1326, + "to": 1138, + "label": "part of", + "category": "related" + }, + { + "from": 49, + "to": 1329, + "label": "position held", + "category": "related" + }, + { + "from": 410, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 1330, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1330, + "to": 1331, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1331, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1332, + "to": 1329, + "label": "position held", + "category": "related" + }, + { + "from": 1332, + "to": 44, + "label": "member", + "category": "related" + }, + { + "from": 1333, + "to": 149, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1334, + "to": 149, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1335, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1336, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1336, + "to": 1335, + "label": "part of", + "category": "related" + }, + { + "from": 1336, + "to": 250, + "label": "location", + "category": "related" + }, + { + "from": 1336, + "to": 1337, + "label": "location", + "category": "related" + }, + { + "from": 250, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 250, + "to": 149, + "label": "country", + "category": "related" + }, + { + "from": 52, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 305, + "to": 52, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 52, + "to": 1338, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1339, + "to": 1340, + "label": "member of political party", + "category": "related" + }, + { + "from": 1341, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1342, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 759, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1343, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 224, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 829, + "to": 1344, + "label": "item operated", + "category": "related" + }, + { + "from": 829, + "to": 73, + "label": "airline hub", + "category": "related" + }, + { + "from": 1344, + "to": 829, + "label": "operator", + "category": "related" + }, + { + "from": 73, + "to": 829, + "label": "operator", + "category": "related" + }, + { + "from": 1345, + "to": 1346, + "label": "part of", + "category": "related" + }, + { + "from": 1346, + "to": 1345, + "label": "has parts of the class", + "category": "related" + }, + { + "from": 1347, + "to": 73, + "label": "place served by transport hub", + "category": "related" + }, + { + "from": 1347, + "to": 829, + "label": "operator", + "category": "related" + }, + { + "from": 1347, + "to": 73, + "label": "place served", + "category": "related" + }, + { + "from": 1348, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 63, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1349, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 597, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1350, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1351, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1352, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1051, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1353, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1353, + "to": 1051, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 319, + "label": "legislative body", + "category": "related" + }, + { + "from": 1354, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1355, + "to": 1356, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 1356, + "to": 1355, + "label": "practiced by", + "category": "related" + }, + { + "from": 1357, + "to": 1356, + "label": "subclass of", + "category": "related" + }, + { + "from": 1357, + "to": 1356, + "label": "part of", + "category": "related" + }, + { + "from": 1358, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1359, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 1359, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1360, + "to": 1361, + "label": "subclass of", + "category": "related" + }, + { + "from": 1362, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 1362, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1360, + "to": 1361, + "label": "facet of", + "category": "related" + }, + { + "from": 91, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 92, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 612, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1363, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1364, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 1364, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 77, + "to": 1365, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1366, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1367, + "to": 77, + "label": "location", + "category": "related" + }, + { + "from": 1367, + "to": 1368, + "label": "point in time", + "category": "related" + }, + { + "from": 1368, + "to": 77, + "label": "location", + "category": "related" + }, + { + "from": 1368, + "to": 1367, + "label": "instance of", + "category": "related" + }, + { + "from": 1368, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1368, + "to": 1369, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 662, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 662, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 432, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 1089, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 136, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1089, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 136, + "to": 77, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1370, + "to": 1371, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1370, + "to": 1372, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1017, + "to": 1371, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1017, + "to": 1372, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1372, + "to": 1370, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1372, + "to": 1371, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1372, + "to": 1373, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1372, + "to": 769, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 769, + "to": 1372, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1374, + "to": 658, + "label": "member of political", + "category": "related" + }, + { + "from": 1372, + "to": 1373, + "label": "located in", + "category": "related" + }, + { + "from": 13, + "to": 1375, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1375, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1376, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1375, + "to": 1375, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1377, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1378, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1378, + "to": 220, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 342, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1379, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1380, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1381, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 1380, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 1381, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 97, + "to": 1379, + "label": "authority", + "category": "related" + }, + { + "from": 1382, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1382, + "to": 97, + "label": "located in", + "category": "related" + }, + { + "from": 1383, + "to": 1384, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1385, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1385, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1386, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1386, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1387, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1388, + "to": 96, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 1387, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1388, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1388, + "to": 1389, + "label": "country", + "category": "related" + }, + { + "from": 1390, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1391, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1392, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1392, + "to": 1393, + "label": "position held", + "category": "related" + }, + { + "from": 1392, + "to": 1394, + "label": "position held", + "category": "related" + }, + { + "from": 1394, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1394, + "to": 1391, + "label": "officeholder", + "category": "related" + }, + { + "from": 1394, + "to": 1395, + "label": "officeholder", + "category": "related" + }, + { + "from": 1394, + "to": 1396, + "label": "officeholder", + "category": "related" + }, + { + "from": 1394, + "to": 1392, + "label": "officeholder", + "category": "related" + }, + { + "from": 1397, + "to": 1398, + "label": "point in time", + "category": "related" + }, + { + "from": 1397, + "to": 1384, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1399, + "to": 1384, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1384, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 380, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 380, + "to": 647, + "label": "parent organization", + "category": "related" + }, + { + "from": 380, + "to": 647, + "label": "part of", + "category": "related" + }, + { + "from": 380, + "to": 647, + "label": "owned by", + "category": "related" + }, + { + "from": 816, + "to": 122, + "label": "officeholder", + "category": "related" + }, + { + "from": 122, + "to": 816, + "label": "position held", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 1400, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1400, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1401, + "to": 1402, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1403, + "to": 1402, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1404, + "to": 1402, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 293, + "to": 1402, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1405, + "to": 1406, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 292, + "to": 1402, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 128, + "to": 1402, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 128, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 128, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 128, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 122, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 1407, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 97, + "to": 122, + "label": "head of government", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 1408, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 733, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 49, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1409, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 113, + "to": 733, + "label": "chairperson", + "category": "related" + }, + { + "from": 113, + "to": 1410, + "label": "chairperson", + "category": "related" + }, + { + "from": 113, + "to": 733, + "label": "founded by", + "category": "related" + }, + { + "from": 113, + "to": 1410, + "label": "founded by", + "category": "related" + }, + { + "from": 1411, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 376, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 1412, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 383, + "to": 376, + "label": "chairperson", + "category": "related" + }, + { + "from": 383, + "to": 376, + "label": "chair", + "category": "related" + }, + { + "from": 383, + "to": 1325, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 1413, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 383, + "to": 1411, + "label": "chairperson", + "category": "related" + }, + { + "from": 1413, + "to": 375, + "label": "member of political party", + "category": "related" + }, + { + "from": 1414, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1415, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1415, + "to": 1414, + "label": "spouse", + "category": "related" + }, + { + "from": 1415, + "to": 43, + "label": "spouse", + "category": "related" + }, + { + "from": 1416, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1416, + "to": 1417, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1418, + "to": 77, + "label": "place of birth", + "category": "related" + }, + { + "from": 1419, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1419, + "to": 1420, + "label": "participant", + "category": "related" + }, + { + "from": 1419, + "to": 1421, + "label": "participant", + "category": "related" + }, + { + "from": 1421, + "to": 1419, + "label": "participant in", + "category": "related" + }, + { + "from": 1422, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1422, + "to": 1420, + "label": "participant", + "category": "related" + }, + { + "from": 1422, + "to": 1423, + "label": "participant", + "category": "related" + }, + { + "from": 1422, + "to": 1421, + "label": "participant", + "category": "related" + }, + { + "from": 1422, + "to": 1104, + "label": "participant", + "category": "related" + }, + { + "from": 1422, + "to": 1419, + "label": "has effect", + "category": "related" + }, + { + "from": 1422, + "to": 1424, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1417, + "to": 673, + "label": "owned by", + "category": "related" + }, + { + "from": 673, + "to": 1417, + "label": "owner of", + "category": "related" + }, + { + "from": 673, + "to": 1425, + "label": "owner of", + "category": "related" + }, + { + "from": 1425, + "to": 673, + "label": "owned by", + "category": "related" + }, + { + "from": 1426, + "to": 673, + "label": "owned by", + "category": "related" + }, + { + "from": 1426, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 673, + "label": "owned by", + "category": "related" + }, + { + "from": 133, + "to": 673, + "label": "owner of", + "category": "related" + }, + { + "from": 133, + "to": 673, + "label": "authority", + "category": "related" + }, + { + "from": 133, + "to": 1426, + "label": "owner", + "category": "related" + }, + { + "from": 1427, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1427, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1428, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1429, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1429, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 1430, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1431, + "to": 432, + "label": "place of death", + "category": "related" + }, + { + "from": 1431, + "to": 1430, + "label": "place of death", + "category": "related" + }, + { + "from": 432, + "to": 1430, + "label": "owner of", + "category": "related" + }, + { + "from": 1432, + "to": 136, + "label": "place of death", + "category": "related" + }, + { + "from": 136, + "to": 136, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 136, + "to": 136, + "label": "capital", + "category": "related" + }, + { + "from": 136, + "to": 136, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1433, + "to": 1398, + "label": "date of death", + "category": "related" + }, + { + "from": 1433, + "to": 1434, + "label": "place of death", + "category": "related" + }, + { + "from": 1434, + "to": 1435, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1435, + "to": 1434, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1435, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1434, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1436, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1434, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1437, + "to": 1438, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1439, + "to": 1438, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1438, + "to": 1437, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1438, + "to": 1439, + "label": "owner of", + "category": "related" + }, + { + "from": 1440, + "to": 1441, + "label": "employer", + "category": "related" + }, + { + "from": 1441, + "to": 1438, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1438, + "to": 1439, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1441, + "to": 1438, + "label": "headquarters location", + "category": "related" + }, + { + "from": 1441, + "to": 627, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1073, + "to": 1442, + "label": "position held", + "category": "related" + }, + { + "from": 1443, + "to": 1146, + "label": "location", + "category": "related" + }, + { + "from": 1159, + "to": 1072, + "label": "owned by", + "category": "related" + }, + { + "from": 1159, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1072, + "to": 1159, + "label": "owner of", + "category": "related" + }, + { + "from": 1072, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1444, + "to": 1072, + "label": "owned by", + "category": "related" + }, + { + "from": 1445, + "to": 1072, + "label": "operator", + "category": "related" + }, + { + "from": 1445, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 813, + "to": 1446, + "label": "officeholder", + "category": "related" + }, + { + "from": 813, + "to": 1079, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 1447, + "to": 1448, + "label": "follows", + "category": "related" + }, + { + "from": 1448, + "to": 1447, + "label": "followed by", + "category": "related" + }, + { + "from": 1448, + "to": 1448, + "label": "followed by", + "category": "related" + }, + { + "from": 1448, + "to": 1448, + "label": "follows", + "category": "related" + }, + { + "from": 1448, + "to": 1449, + "label": "follows", + "category": "related" + }, + { + "from": 1448, + "to": 1449, + "label": "followed by", + "category": "related" + }, + { + "from": 1450, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 1451, + "to": 820, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 820, + "to": 407, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 820, + "to": 407, + "label": "part of", + "category": "related" + }, + { + "from": 820, + "to": 407, + "label": "shares border with", + "category": "related" + }, + { + "from": 1452, + "to": 144, + "label": "employer", + "category": "related" + }, + { + "from": 1453, + "to": 144, + "label": "employer", + "category": "related" + }, + { + "from": 1454, + "to": 144, + "label": "employer", + "category": "related" + }, + { + "from": 1455, + "to": 144, + "label": "employer", + "category": "related" + }, + { + "from": 144, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1456, + "to": 144, + "label": "part of", + "category": "related" + }, + { + "from": 144, + "to": 1457, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 144, + "to": 144, + "label": "has part", + "category": "related" + }, + { + "from": 144, + "to": 1456, + "label": "has part", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 128, + "to": 1458, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1459, + "to": 1458, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1459, + "to": 128, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 128, + "to": 1460, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 128, + "to": 1459, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1461, + "to": 806, + "label": "place of death", + "category": "related" + }, + { + "from": 1461, + "to": 77, + "label": "place of death", + "category": "related" + }, + { + "from": 1462, + "to": 806, + "label": "place of publication", + "category": "related" + }, + { + "from": 77, + "to": 73, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 73, + "to": 77, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 1463, + "to": 806, + "label": "place of death", + "category": "related" + }, + { + "from": 1463, + "to": 77, + "label": "place of death", + "category": "related" + }, + { + "from": 1464, + "to": 806, + "label": "place of death", + "category": "related" + }, + { + "from": 1464, + "to": 77, + "label": "place of death", + "category": "related" + }, + { + "from": 1462, + "to": 806, + "label": "headquarters location", + "category": "related" + }, + { + "from": 1464, + "to": 77, + "label": "date of death", + "category": "related" + }, + { + "from": 1465, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1466, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1467, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1468, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 180, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1469, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1470, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1246, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1471, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1472, + "to": 929, + "label": "point in time", + "category": "related" + }, + { + "from": 1473, + "to": 981, + "label": "part of", + "category": "related" + }, + { + "from": 1474, + "to": 981, + "label": "part of", + "category": "related" + }, + { + "from": 981, + "to": 1473, + "label": "has part", + "category": "related" + }, + { + "from": 981, + "to": 1474, + "label": "has part", + "category": "related" + }, + { + "from": 1472, + "to": 113, + "label": "successful candidate", + "category": "related" + }, + { + "from": 1472, + "to": 1475, + "label": "point in time", + "category": "related" + }, + { + "from": 1476, + "to": 521, + "label": "work location", + "category": "related" + }, + { + "from": 1477, + "to": 521, + "label": "work location", + "category": "related" + }, + { + "from": 1477, + "to": 1478, + "label": "position held", + "category": "related" + }, + { + "from": 1478, + "to": 521, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1477, + "to": 1479, + "label": "position held", + "category": "related" + }, + { + "from": 1477, + "to": 521, + "label": "position held", + "category": "related" + }, + { + "from": 1480, + "to": 521, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1481, + "to": 521, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1482, + "to": 521, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1482, + "to": 1481, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1482, + "to": 1482, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1482, + "to": 1482, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1482, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1483, + "to": 1484, + "label": "author", + "category": "related" + }, + { + "from": 1484, + "to": 1483, + "label": "notable work", + "category": "related" + }, + { + "from": 1483, + "to": 1485, + "label": "author", + "category": "related" + }, + { + "from": 1485, + "to": 1483, + "label": "notable work", + "category": "related" + }, + { + "from": 1486, + "to": 1483, + "label": "notable work", + "category": "related" + }, + { + "from": 1483, + "to": 1486, + "label": "author", + "category": "related" + }, + { + "from": 1487, + "to": 1488, + "label": "employer", + "category": "related" + }, + { + "from": 1489, + "to": 1488, + "label": "employer", + "category": "related" + }, + { + "from": 1490, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1491, + "to": 1492, + "label": "creator", + "category": "related" + }, + { + "from": 1491, + "to": 1493, + "label": "creator", + "category": "related" + }, + { + "from": 1494, + "to": 774, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1495, + "to": 1012, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1012, + "to": 774, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 774, + "to": 1494, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 774, + "to": 1495, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 510, + "to": 1494, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1496, + "to": 1494, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 571, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1497, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1498, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 1498, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1498, + "to": 1497, + "label": "owned by", + "category": "related" + }, + { + "from": 1499, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1499, + "to": 1497, + "label": "owned by", + "category": "related" + }, + { + "from": 1499, + "to": 1498, + "label": "owner of", + "category": "related" + }, + { + "from": 1497, + "to": 1498, + "label": "country", + "category": "related" + }, + { + "from": 1500, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1500, + "to": 571, + "label": "owned by", + "category": "related" + }, + { + "from": 1500, + "to": 13, + "label": "owned by", + "category": "related" + }, + { + "from": 1501, + "to": 1502, + "label": "owned by", + "category": "related" + }, + { + "from": 1502, + "to": 1501, + "label": "owner of", + "category": "related" + }, + { + "from": 1503, + "to": 1502, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1504, + "to": 1502, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1505, + "to": 1502, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1506, + "to": 1502, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1506, + "to": 1507, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1506, + "to": 557, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1508, + "to": 1509, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1510, + "to": 1509, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1511, + "to": 1512, + "label": "subclass of", + "category": "related" + }, + { + "from": 1512, + "to": 1513, + "label": "subclass of", + "category": "related" + }, + { + "from": 1514, + "to": 1513, + "label": "use", + "category": "related" + }, + { + "from": 1515, + "to": 1516, + "label": "instance of", + "category": "related" + }, + { + "from": 1516, + "to": 1515, + "label": "has cause", + "category": "related" + }, + { + "from": 1515, + "to": 287, + "label": "instance of", + "category": "related" + }, + { + "from": 813, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 1517, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 220, + "to": 1517, + "label": "legislative body", + "category": "related" + }, + { + "from": 1518, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1519, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 593, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1519, + "to": 1520, + "label": "located in", + "category": "related" + }, + { + "from": 1521, + "to": 958, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 958, + "to": 1521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 958, + "to": 226, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 226, + "to": 958, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1522, + "to": 226, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 226, + "to": 1522, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 226, + "to": 1523, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 772, + "to": 1227, + "label": "chairperson", + "category": "related" + }, + { + "from": 1227, + "to": 772, + "label": "member of political party", + "category": "related" + }, + { + "from": 1227, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 1227, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 1524, + "label": "chairperson", + "category": "related" + }, + { + "from": 1525, + "to": 1227, + "label": "head of", + "category": "related" + }, + { + "from": 1525, + "to": 43, + "label": "head of government", + "category": "related" + }, + { + "from": 1525, + "to": 258, + "label": "head of government", + "category": "related" + }, + { + "from": 1526, + "to": 1527, + "label": "subclass of", + "category": "related" + }, + { + "from": 1528, + "to": 1526, + "label": "subclass of", + "category": "related" + }, + { + "from": 1528, + "to": 1527, + "label": "subclass of", + "category": "related" + }, + { + "from": 1527, + "to": 1526, + "label": "has part", + "category": "related" + }, + { + "from": 1529, + "to": 1526, + "label": "facet of", + "category": "related" + }, + { + "from": 1529, + "to": 1527, + "label": "facet of", + "category": "related" + }, + { + "from": 1527, + "to": 1527, + "label": "has part", + "category": "related" + }, + { + "from": 1529, + "to": 1526, + "label": "subclass of", + "category": "related" + }, + { + "from": 1529, + "to": 1527, + "label": "subclass of", + "category": "related" + }, + { + "from": 1527, + "to": 1530, + "label": "has part", + "category": "related" + }, + { + "from": 1527, + "to": 1531, + "label": "has part", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 54, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 54, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 56, + "to": 113, + "label": "has part", + "category": "related" + }, + { + "from": 56, + "to": 412, + "label": "chairperson", + "category": "related" + }, + { + "from": 56, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 56, + "to": 54, + "label": "chairperson", + "category": "related" + }, + { + "from": 1532, + "to": 52, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1533, + "to": 52, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1534, + "to": 52, + "label": "country", + "category": "related" + }, + { + "from": 1534, + "to": 1535, + "label": "chairperson", + "category": "related" + }, + { + "from": 1534, + "to": 1533, + "label": "chairperson", + "category": "related" + }, + { + "from": 52, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 554, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 557, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 555, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1536, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1536, + "to": 1537, + "label": "member of", + "category": "related" + }, + { + "from": 1536, + "to": 1538, + "label": "member of", + "category": "related" + }, + { + "from": 144, + "to": 437, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 437, + "to": 144, + "label": "part of", + "category": "related" + }, + { + "from": 437, + "to": 436, + "label": "officeholder", + "category": "related" + }, + { + "from": 1539, + "to": 437, + "label": "position held", + "category": "related" + }, + { + "from": 1540, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1540, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1540, + "to": 179, + "label": "location", + "category": "related" + }, + { + "from": 1541, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 610, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1542, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1543, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1544, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1545, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1545, + "to": 1542, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1545, + "to": 1542, + "label": "located", + "category": "related" + }, + { + "from": 1546, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1546, + "to": 193, + "label": "located", + "category": "related" + }, + { + "from": 1546, + "to": 96, + "label": "located in", + "category": "related" + }, + { + "from": 1547, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1547, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 305, + "to": 693, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 693, + "to": 305, + "label": "country", + "category": "related" + }, + { + "from": 305, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 693, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1338, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 693, + "label": "capital", + "category": "related" + }, + { + "from": 1548, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1548, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1549, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1549, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1550, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1550, + "to": 193, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1551, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1552, + "to": 77, + "label": "work location", + "category": "related" + }, + { + "from": 1552, + "to": 193, + "label": "work location", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1553, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1553, + "to": 328, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "applies", + "category": "related" + }, + { + "from": 1553, + "to": 328, + "label": "part of", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "part of", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1554, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1555, + "to": 1556, + "label": "point in time", + "category": "related" + }, + { + "from": 1557, + "to": 43, + "label": "owned by", + "category": "related" + }, + { + "from": 1557, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 56, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 56, + "to": 1554, + "label": "chairperson", + "category": "related" + }, + { + "from": 1558, + "to": 1559, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 334, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1560, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 1560, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 77, + "label": "shares border with", + "category": "related" + }, + { + "from": 77, + "to": 71, + "label": "shares border with", + "category": "related" + }, + { + "from": 71, + "to": 77, + "label": "shares border", + "category": "related" + }, + { + "from": 71, + "to": 71, + "label": "shares border with", + "category": "related" + }, + { + "from": 77, + "to": 71, + "label": "shares border", + "category": "related" + }, + { + "from": 1561, + "to": 326, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1561, + "to": 1562, + "label": "owned by", + "category": "related" + }, + { + "from": 1563, + "to": 1564, + "label": "author", + "category": "related" + }, + { + "from": 1563, + "to": 326, + "label": "narrative location", + "category": "related" + }, + { + "from": 1562, + "to": 1561, + "label": "owner of", + "category": "related" + }, + { + "from": 1562, + "to": 326, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1565, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 597, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1566, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1566, + "to": 1567, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1567, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1567, + "to": 597, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1567, + "to": 1566, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 64, + "label": "located", + "category": "related" + }, + { + "from": 1568, + "to": 1569, + "label": "place of death", + "category": "related" + }, + { + "from": 1568, + "to": 1570, + "label": "child", + "category": "related" + }, + { + "from": 1570, + "to": 1568, + "label": "father", + "category": "related" + }, + { + "from": 1570, + "to": 1569, + "label": "place of death", + "category": "related" + }, + { + "from": 1570, + "to": 1571, + "label": "spouse", + "category": "related" + }, + { + "from": 1570, + "to": 1571, + "label": "mother", + "category": "related" + }, + { + "from": 1570, + "to": 1570, + "label": "father", + "category": "related" + }, + { + "from": 1572, + "to": 1573, + "label": "place of birth", + "category": "related" + }, + { + "from": 65, + "to": 1573, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1573, + "to": 1574, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1573, + "to": 65, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1575, + "to": 1574, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1575, + "to": 1573, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1576, + "to": 1574, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1576, + "to": 1575, + "label": "employer", + "category": "related" + }, + { + "from": 1576, + "to": 231, + "label": "employer", + "category": "related" + }, + { + "from": 13, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 305, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1024, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1024, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 305, + "to": 1024, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1577, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1578, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1579, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1580, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1581, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 196, + "to": 197, + "label": "officeholder", + "category": "related" + }, + { + "from": 197, + "to": 196, + "label": "position held", + "category": "related" + }, + { + "from": 1582, + "to": 1583, + "label": "part of", + "category": "related" + }, + { + "from": 1583, + "to": 196, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 1583, + "to": 1582, + "label": "has part", + "category": "related" + }, + { + "from": 1583, + "to": 1584, + "label": "publication date", + "category": "related" + }, + { + "from": 1585, + "to": 196, + "label": "chairperson", + "category": "related" + }, + { + "from": 1583, + "to": 1584, + "label": "point in time", + "category": "related" + }, + { + "from": 1586, + "to": 1587, + "label": "owned by", + "category": "related" + }, + { + "from": 13, + "to": 1588, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1588, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1589, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1590, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1591, + "to": 1592, + "label": "member of political party", + "category": "related" + }, + { + "from": 1593, + "to": 1592, + "label": "member of political party", + "category": "related" + }, + { + "from": 1593, + "to": 1591, + "label": "member of political party", + "category": "related" + }, + { + "from": 1593, + "to": 1594, + "label": "member of political party", + "category": "related" + }, + { + "from": 1595, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 1595, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1596, + "to": 432, + "label": "place of death", + "category": "related" + }, + { + "from": 432, + "to": 1595, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 1597, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1598, + "to": 1224, + "label": "point in time", + "category": "related" + }, + { + "from": 1598, + "to": 1599, + "label": "follows", + "category": "related" + }, + { + "from": 1599, + "to": 1598, + "label": "followed by", + "category": "related" + }, + { + "from": 1599, + "to": 1600, + "label": "point in time", + "category": "related" + }, + { + "from": 1601, + "to": 1602, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1601, + "to": 231, + "label": "participant", + "category": "related" + }, + { + "from": 231, + "to": 1603, + "label": "participant", + "category": "related" + }, + { + "from": 231, + "to": 1601, + "label": "participant", + "category": "related" + }, + { + "from": 231, + "to": 1604, + "label": "participant", + "category": "related" + }, + { + "from": 1605, + "to": 746, + "label": "member of political party", + "category": "related" + }, + { + "from": 1606, + "to": 746, + "label": "member of political party", + "category": "related" + }, + { + "from": 1607, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 1608, + "to": 411, + "label": "member of political party", + "category": "related" + }, + { + "from": 1609, + "to": 411, + "label": "member of political party", + "category": "related" + }, + { + "from": 1610, + "to": 411, + "label": "member of political party", + "category": "related" + }, + { + "from": 1611, + "to": 1612, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1607, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1613, + "to": 1611, + "label": "place of birth", + "category": "related" + }, + { + "from": 1613, + "to": 1614, + "label": "place of birth", + "category": "related" + }, + { + "from": 1615, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1616, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 98, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1403, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 857, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1617, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1618, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1619, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1620, + "to": 1615, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 1621, + "to": 1622, + "label": "educated at", + "category": "related" + }, + { + "from": 1622, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1623, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1624, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1624, + "to": 1622, + "label": "educated at", + "category": "related" + }, + { + "from": 1625, + "to": 1622, + "label": "educated at", + "category": "related" + }, + { + "from": 1624, + "to": 1626, + "label": "educated at", + "category": "related" + }, + { + "from": 1624, + "to": 1627, + "label": "educated at", + "category": "related" + }, + { + "from": 1628, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1629, + "to": 1630, + "label": "subclass of", + "category": "related" + }, + { + "from": 1631, + "to": 1632, + "label": "has effect", + "category": "related" + }, + { + "from": 1632, + "to": 1631, + "label": "has cause", + "category": "related" + }, + { + "from": 1633, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1634, + "to": 1632, + "label": "part of", + "category": "related" + }, + { + "from": 1635, + "to": 1636, + "label": "subclass of", + "category": "related" + }, + { + "from": 1635, + "to": 1637, + "label": "subclass", + "category": "related" + }, + { + "from": 1635, + "to": 1637, + "label": "instance", + "category": "related" + }, + { + "from": 1635, + "to": 1636, + "label": "instance of", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 1638, + "to": 266, + "label": "point in time", + "category": "related" + }, + { + "from": 1638, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 1403, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 99, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1639, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1640, + "to": 1639, + "label": "member of", + "category": "related" + }, + { + "from": 1639, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1641, + "to": 1639, + "label": "member of", + "category": "related" + }, + { + "from": 1642, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1643, + "to": 378, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1644, + "to": 378, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 378, + "to": 1643, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 378, + "to": 1644, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1434, + "to": 1645, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1646, + "to": 1645, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1646, + "to": 1434, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1434, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1646, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1647, + "to": 1645, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1646, + "to": 1647, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1647, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1434, + "to": 1646, + "label": "located in", + "category": "related" + }, + { + "from": 1434, + "to": 1646, + "label": "contains administrative", + "category": "related" + }, + { + "from": 1648, + "to": 1649, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1092, + "to": 1649, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1650, + "to": 1649, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1648, + "to": 1649, + "label": "located in", + "category": "related" + }, + { + "from": 1648, + "to": 1649, + "label": "located", + "category": "related" + }, + { + "from": 49, + "to": 733, + "label": "child", + "category": "related" + }, + { + "from": 733, + "to": 49, + "label": "father", + "category": "related" + }, + { + "from": 733, + "to": 734, + "label": "father", + "category": "related" + }, + { + "from": 734, + "to": 734, + "label": "child", + "category": "related" + }, + { + "from": 734, + "to": 735, + "label": "child", + "category": "related" + }, + { + "from": 734, + "to": 735, + "label": "father", + "category": "related" + }, + { + "from": 1651, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 49, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 1652, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 1653, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 13, + "to": 1654, + "label": "legislative body", + "category": "related" + }, + { + "from": 1654, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1655, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1656, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1657, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1658, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1658, + "to": 1659, + "label": "member of political party", + "category": "related" + }, + { + "from": 1660, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1660, + "to": 1659, + "label": "member of political party", + "category": "related" + }, + { + "from": 1661, + "to": 7, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 1661, + "to": 7, + "label": "location", + "category": "related" + }, + { + "from": 1662, + "to": 1663, + "label": "participant", + "category": "related" + }, + { + "from": 1662, + "to": 1664, + "label": "end time", + "category": "related" + }, + { + "from": 1665, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 1662, + "label": "significant event", + "category": "related" + }, + { + "from": 1666, + "to": 1667, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1668, + "to": 1667, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1667, + "to": 1666, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1667, + "to": 1668, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1669, + "to": 1670, + "label": "spouse", + "category": "related" + }, + { + "from": 1669, + "to": 1671, + "label": "child", + "category": "related" + }, + { + "from": 1670, + "to": 1669, + "label": "spouse", + "category": "related" + }, + { + "from": 1670, + "to": 1671, + "label": "child", + "category": "related" + }, + { + "from": 1671, + "to": 1669, + "label": "father", + "category": "related" + }, + { + "from": 1595, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 1595, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1672, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1672, + "to": 1595, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1595, + "to": 432, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1672, + "to": 1595, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1595, + "to": 432, + "label": "located", + "category": "related" + }, + { + "from": 1673, + "to": 432, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1674, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1675, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1676, + "to": 133, + "label": "place of birth", + "category": "related" + }, + { + "from": 1677, + "to": 133, + "label": "place of birth", + "category": "related" + }, + { + "from": 1678, + "to": 1679, + "label": "has part", + "category": "related" + }, + { + "from": 180, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 78, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1680, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1681, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1118, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1682, + "to": 817, + "label": "officeholder", + "category": "related" + }, + { + "from": 179, + "to": 817, + "label": "head of government", + "category": "related" + }, + { + "from": 1683, + "to": 1684, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1683, + "to": 1685, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1684, + "to": 1685, + "label": "mouth of the watercourse", + "category": "related" + }, + { + "from": 1685, + "to": 1684, + "label": "tributary", + "category": "related" + }, + { + "from": 1685, + "to": 1686, + "label": "mouth of the watercourse", + "category": "related" + }, + { + "from": 1685, + "to": 1687, + "label": "tributary", + "category": "related" + }, + { + "from": 1686, + "to": 1688, + "label": "tributary", + "category": "related" + }, + { + "from": 1686, + "to": 1687, + "label": "tributary", + "category": "related" + }, + { + "from": 1686, + "to": 1685, + "label": "tributary", + "category": "related" + }, + { + "from": 1689, + "to": 172, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 631, + "label": "head of government", + "category": "related" + }, + { + "from": 7, + "to": 627, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 662, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 627, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 662, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 662, + "to": 631, + "label": "head of government", + "category": "related" + }, + { + "from": 1689, + "to": 1690, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1598, + "to": 1224, + "label": "point in time", + "category": "related" + }, + { + "from": 1598, + "to": 1599, + "label": "follows", + "category": "related" + }, + { + "from": 1599, + "to": 1598, + "label": "followed by", + "category": "related" + }, + { + "from": 1599, + "to": 1600, + "label": "point in time", + "category": "related" + }, + { + "from": 231, + "to": 1691, + "label": "has part", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "has part", + "category": "related" + }, + { + "from": 231, + "to": 1691, + "label": "part of", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "part of", + "category": "related" + }, + { + "from": 813, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 1692, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 1692, + "to": 1693, + "label": "position held", + "category": "related" + }, + { + "from": 1693, + "to": 813, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 1694, + "to": 1693, + "label": "position held", + "category": "related" + }, + { + "from": 1693, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 1693, + "to": 1692, + "label": "officeholder", + "category": "related" + }, + { + "from": 1693, + "to": 146, + "label": "has part", + "category": "related" + }, + { + "from": 1693, + "to": 1692, + "label": "has part", + "category": "related" + }, + { + "from": 436, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1695, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1695, + "to": 1696, + "label": "position held", + "category": "related" + }, + { + "from": 1697, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1697, + "to": 1696, + "label": "position held", + "category": "related" + }, + { + "from": 1698, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1698, + "to": 1696, + "label": "position held", + "category": "related" + }, + { + "from": 1698, + "to": 48, + "label": "member", + "category": "related" + }, + { + "from": 1699, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1700, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1700, + "to": 1701, + "label": "has cause", + "category": "related" + }, + { + "from": 1702, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1702, + "to": 1701, + "label": "has cause", + "category": "related" + }, + { + "from": 1703, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1703, + "to": 1701, + "label": "has cause", + "category": "related" + }, + { + "from": 1704, + "to": 1705, + "label": "product or material produced", + "category": "related" + }, + { + "from": 1706, + "to": 1705, + "label": "subclass of", + "category": "related" + }, + { + "from": 1682, + "to": 817, + "label": "officeholder", + "category": "related" + }, + { + "from": 1682, + "to": 179, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 817, + "to": 1682, + "label": "position held", + "category": "related" + }, + { + "from": 179, + "to": 817, + "label": "head of government", + "category": "related" + }, + { + "from": 1707, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1708, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 1682, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 179, + "to": 1707, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 1708, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 658, + "to": 152, + "label": "chairperson", + "category": "related" + }, + { + "from": 152, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 1709, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1710, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 1710, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 1711, + "to": 1001, + "label": "member of political party", + "category": "related" + }, + { + "from": 1712, + "to": 658, + "label": "part of", + "category": "related" + }, + { + "from": 1713, + "to": 1712, + "label": "member of political party", + "category": "related" + }, + { + "from": 1712, + "to": 658, + "label": "parent organization", + "category": "related" + }, + { + "from": 658, + "to": 1712, + "label": "subsidiary", + "category": "related" + }, + { + "from": 71, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1565, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 63, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1714, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1715, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1715, + "to": 48, + "label": "member", + "category": "related" + }, + { + "from": 1715, + "to": 1716, + "label": "member", + "category": "related" + }, + { + "from": 1717, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1566, + "to": 64, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 149, + "to": 739, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 739, + "to": 149, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 739, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1718, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1718, + "to": 1719, + "label": "member of", + "category": "related" + }, + { + "from": 1719, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1719, + "to": 1718, + "label": "has part", + "category": "related" + }, + { + "from": 1720, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 949, + "to": 1721, + "label": "chairperson", + "category": "related" + }, + { + "from": 1721, + "to": 949, + "label": "position held", + "category": "related" + }, + { + "from": 1722, + "to": 949, + "label": "position held", + "category": "related" + }, + { + "from": 975, + "to": 949, + "label": "position held", + "category": "related" + }, + { + "from": 975, + "to": 1721, + "label": "employer", + "category": "related" + }, + { + "from": 975, + "to": 1722, + "label": "employer", + "category": "related" + }, + { + "from": 975, + "to": 1723, + "label": "employer", + "category": "related" + }, + { + "from": 1723, + "to": 949, + "label": "occupant", + "category": "related" + }, + { + "from": 1723, + "to": 1721, + "label": "occupant", + "category": "related" + }, + { + "from": 1723, + "to": 1721, + "label": "chairperson", + "category": "related" + }, + { + "from": 1723, + "to": 224, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1724, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 204, + "to": 1724, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1725, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1726, + "to": 204, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 681, + "to": 745, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 681, + "to": 745, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 737, + "to": 796, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 796, + "to": 737, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 796, + "to": 759, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 759, + "to": 796, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 149, + "to": 796, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1727, + "to": 796, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1728, + "to": 796, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1729, + "to": 1730, + "label": "sport", + "category": "related" + }, + { + "from": 1729, + "to": 1731, + "label": "sport", + "category": "related" + }, + { + "from": 1730, + "to": 1731, + "label": "subclass of", + "category": "related" + }, + { + "from": 1731, + "to": 1730, + "label": "subclass of", + "category": "related" + }, + { + "from": 1732, + "to": 1730, + "label": "sports discipline competed in", + "category": "related" + }, + { + "from": 1732, + "to": 1731, + "label": "sports discipline competed in", + "category": "related" + }, + { + "from": 1732, + "to": 1733, + "label": "sports discipline competed in", + "category": "related" + }, + { + "from": 1733, + "to": 1731, + "label": "subclass", + "category": "related" + }, + { + "from": 1730, + "to": 1731, + "label": "said to be the same as", + "category": "related" + }, + { + "from": 1731, + "to": 1730, + "label": "said to be the same as", + "category": "related" + }, + { + "from": 1732, + "to": 1731, + "label": "sport", + "category": "related" + }, + { + "from": 1731, + "to": 1732, + "label": "said to be the same as", + "category": "related" + }, + { + "from": 1734, + "to": 1735, + "label": "officeholder", + "category": "related" + }, + { + "from": 1735, + "to": 1734, + "label": "position held", + "category": "related" + }, + { + "from": 805, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 805, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1547, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1736, + "to": 1547, + "label": "employer", + "category": "related" + }, + { + "from": 1736, + "to": 73, + "label": "place of death", + "category": "related" + }, + { + "from": 696, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 696, + "to": 1736, + "label": "chairperson", + "category": "related" + }, + { + "from": 73, + "to": 305, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1737, + "to": 1738, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1739, + "to": 1738, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1738, + "to": 1737, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1740, + "to": 1737, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1740, + "to": 1737, + "label": "contains", + "category": "related" + }, + { + "from": 1740, + "to": 1737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1740, + "to": 1737, + "label": "facet of", + "category": "related" + }, + { + "from": 13, + "to": 1741, + "label": "part of", + "category": "related" + }, + { + "from": 1741, + "to": 13, + "label": "has part", + "category": "related" + }, + { + "from": 97, + "to": 595, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 595, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 595, + "label": "located in or next to body of", + "category": "related" + }, + { + "from": 97, + "to": 595, + "label": "located in or next to body", + "category": "related" + }, + { + "from": 1742, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1743, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1744, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1745, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1746, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 658, + "to": 152, + "label": "chairperson", + "category": "related" + }, + { + "from": 152, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 152, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 55, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 55, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 55, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 303, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 303, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 303, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 542, + "to": 839, + "label": "chairperson", + "category": "related" + }, + { + "from": 839, + "to": 542, + "label": "member of political party", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1698, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1747, + "to": 1698, + "label": "participant", + "category": "related" + }, + { + "from": 1747, + "to": 1747, + "label": "main subject", + "category": "related" + }, + { + "from": 1747, + "to": 1747, + "label": "has cause", + "category": "related" + }, + { + "from": 1747, + "to": 1747, + "label": "facet of", + "category": "related" + }, + { + "from": 1748, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1749, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1750, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1751, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1752, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1752, + "to": 1753, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1753, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1753, + "to": 1750, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1754, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1754, + "to": 1750, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1754, + "to": 1751, + "label": "followed by", + "category": "related" + }, + { + "from": 1754, + "to": 1749, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1754, + "to": 1750, + "label": "located in the", + "category": "related" + }, + { + "from": 1754, + "to": 1751, + "label": "has effect", + "category": "related" + }, + { + "from": 1755, + "to": 1756, + "label": "country", + "category": "related" + }, + { + "from": 1756, + "to": 1757, + "label": "instance of", + "category": "related" + }, + { + "from": 1757, + "to": 1756, + "label": "has part", + "category": "related" + }, + { + "from": 1758, + "to": 1756, + "label": "country", + "category": "related" + }, + { + "from": 1759, + "to": 1756, + "label": "country", + "category": "related" + }, + { + "from": 1759, + "to": 1758, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1759, + "to": 1760, + "label": "shares border with", + "category": "related" + }, + { + "from": 1758, + "to": 1757, + "label": "instance of", + "category": "related" + }, + { + "from": 1758, + "to": 1759, + "label": "shares border with", + "category": "related" + }, + { + "from": 1761, + "to": 1757, + "label": "instance of", + "category": "related" + }, + { + "from": 1760, + "to": 1759, + "label": "shares border with", + "category": "related" + }, + { + "from": 1762, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1763, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 1762, + "label": "authority", + "category": "related" + }, + { + "from": 73, + "to": 1763, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "authority", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 1762, + "label": "legislative body", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "legislative body", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to", + "category": "related" + }, + { + "from": 73, + "to": 265, + "label": "owned by", + "category": "related" + }, + { + "from": 265, + "to": 73, + "label": "owner of", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 1764, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1764, + "to": 1104, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 777, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1765, + "to": 1766, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1767, + "to": 1766, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1766, + "to": 169, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 444, + "to": 1766, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 444, + "to": 169, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1768, + "to": 169, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 169, + "to": 1766, + "label": "capital", + "category": "related" + }, + { + "from": 169, + "to": 1769, + "label": "capital", + "category": "related" + }, + { + "from": 169, + "to": 1768, + "label": "capital", + "category": "related" + }, + { + "from": 169, + "to": 1767, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 665, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1770, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1770, + "to": 665, + "label": "position held", + "category": "related" + }, + { + "from": 231, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 1771, + "to": 1772, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1771, + "to": 1773, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1774, + "to": 1772, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1774, + "to": 1773, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1775, + "to": 1772, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1775, + "to": 1773, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1776, + "to": 1772, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1776, + "to": 1773, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1776, + "to": 1777, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1776, + "to": 1778, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1080, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1779, + "to": 1780, + "label": "member of political party", + "category": "related" + }, + { + "from": 1779, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1781, + "to": 1780, + "label": "member of political party", + "category": "related" + }, + { + "from": 1781, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1781, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1781, + "to": 73, + "label": "place of birth", + "category": "related" + }, + { + "from": 1781, + "to": 73, + "label": "place of death", + "category": "related" + }, + { + "from": 1782, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1783, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1784, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1785, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1785, + "to": 1786, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1787, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1787, + "to": 1785, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1787, + "to": 1785, + "label": "located in", + "category": "related" + }, + { + "from": 1785, + "to": 1788, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1789, + "to": 1790, + "label": "published in", + "category": "related" + }, + { + "from": 1790, + "to": 1789, + "label": "has part", + "category": "related" + }, + { + "from": 1791, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1791, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 90, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1792, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1793, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1794, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1794, + "to": 90, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1795, + "to": 1796, + "label": "subclass of", + "category": "related" + }, + { + "from": 1795, + "to": 1796, + "label": "instance of", + "category": "related" + }, + { + "from": 1797, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1798, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1799, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1800, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1801, + "to": 77, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1801, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1801, + "to": 1799, + "label": "owned by", + "category": "related" + }, + { + "from": 1801, + "to": 77, + "label": "owned by", + "category": "related" + }, + { + "from": 1800, + "to": 1799, + "label": "owned by", + "category": "related" + }, + { + "from": 1800, + "to": 1104, + "label": "owned by", + "category": "related" + }, + { + "from": 220, + "to": 820, + "label": "shares border with", + "category": "related" + }, + { + "from": 820, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 1802, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 820, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1803, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1804, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1805, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1782, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1783, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1806, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1807, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1808, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1809, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1809, + "to": 432, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1809, + "to": 1810, + "label": "employer", + "category": "related" + }, + { + "from": 1811, + "to": 32, + "label": "point in time", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 357, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1812, + "to": 113, + "label": "facet of", + "category": "related" + }, + { + "from": 1812, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1813, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1814, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1815, + "to": 1816, + "label": "subclass of", + "category": "related" + }, + { + "from": 1816, + "to": 1815, + "label": "has part", + "category": "related" + }, + { + "from": 1815, + "to": 1816, + "label": "has part", + "category": "related" + }, + { + "from": 1817, + "to": 1818, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1819, + "to": 1818, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1820, + "to": 1818, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1821, + "to": 1818, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1822, + "to": 1818, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 1818, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1245, + "to": 1818, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 1823, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 1824, + "to": 416, + "label": "member of political party", + "category": "related" + }, + { + "from": 416, + "to": 412, + "label": "chairperson", + "category": "related" + }, + { + "from": 416, + "to": 1824, + "label": "chairperson", + "category": "related" + }, + { + "from": 1825, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1825, + "to": 96, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1826, + "to": 1827, + "label": "member of political party", + "category": "related" + }, + { + "from": 1828, + "to": 1829, + "label": "member of political party", + "category": "related" + }, + { + "from": 1830, + "to": 1831, + "label": "chairperson", + "category": "related" + }, + { + "from": 1831, + "to": 1830, + "label": "member of political party", + "category": "related" + }, + { + "from": 1832, + "to": 1833, + "label": "member of political party", + "category": "related" + }, + { + "from": 1833, + "to": 1832, + "label": "chair", + "category": "related" + }, + { + "from": 1833, + "to": 1832, + "label": "founded", + "category": "related" + }, + { + "from": 1833, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1379, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1779, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 97, + "to": 1379, + "label": "authority", + "category": "related" + }, + { + "from": 97, + "to": 1834, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 1834, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1835, + "to": 1834, + "label": "position held", + "category": "related" + }, + { + "from": 1835, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 97, + "to": 1834, + "label": "office", + "category": "related" + }, + { + "from": 97, + "to": 1836, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 1837, + "to": 535, + "label": "headquarters location", + "category": "related" + }, + { + "from": 766, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 766, + "to": 1371, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1371, + "to": 521, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1371, + "to": 535, + "label": "capital", + "category": "related" + }, + { + "from": 535, + "to": 521, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 535, + "to": 1371, + "label": "capital of", + "category": "related" + }, + { + "from": 535, + "to": 1371, + "label": "capital", + "category": "related" + }, + { + "from": 535, + "to": 1837, + "label": "capital of", + "category": "related" + }, + { + "from": 535, + "to": 221, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 1838, + "label": "head of government", + "category": "related" + }, + { + "from": 1838, + "to": 220, + "label": "employer", + "category": "related" + }, + { + "from": 1838, + "to": 1839, + "label": "position held", + "category": "related" + }, + { + "from": 1838, + "to": 1840, + "label": "employer", + "category": "related" + }, + { + "from": 1840, + "to": 1838, + "label": "head of government", + "category": "related" + }, + { + "from": 1840, + "to": 220, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1840, + "to": 1838, + "label": "officeholder", + "category": "related" + }, + { + "from": 37, + "to": 1838, + "label": "officeholder", + "category": "related" + }, + { + "from": 37, + "to": 258, + "label": "officeholder", + "category": "related" + }, + { + "from": 1840, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 385, + "to": 1841, + "label": "member of political party", + "category": "related" + }, + { + "from": 1842, + "to": 1843, + "label": "member of political party", + "category": "related" + }, + { + "from": 1843, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 1843, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 1843, + "label": "legislative body", + "category": "related" + }, + { + "from": 821, + "to": 1844, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1845, + "to": 1844, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1846, + "to": 1844, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares", + "category": "related" + }, + { + "from": 7, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 1847, + "to": 1458, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1848, + "to": 1458, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1458, + "to": 1847, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1458, + "to": 1848, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1849, + "to": 1458, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1458, + "to": 1849, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1458, + "to": 1850, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 542, + "to": 938, + "label": "chairperson", + "category": "related" + }, + { + "from": 938, + "to": 542, + "label": "member of political party", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 542, + "to": 938, + "label": "chair", + "category": "related" + }, + { + "from": 542, + "to": 1851, + "label": "chairperson", + "category": "related" + }, + { + "from": 1852, + "to": 98, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1853, + "to": 98, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 98, + "to": 1853, + "label": "contains settlement", + "category": "related" + }, + { + "from": 1853, + "to": 98, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 98, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1854, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 1855, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 1856, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 1857, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 1652, + "to": 676, + "label": "member of political party", + "category": "related" + }, + { + "from": 1652, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 1652, + "to": 1858, + "label": "employer", + "category": "related" + }, + { + "from": 1652, + "to": 1858, + "label": "member of political party", + "category": "related" + }, + { + "from": 1152, + "to": 1859, + "label": "affiliation", + "category": "related" + }, + { + "from": 1859, + "to": 1152, + "label": "subsidiary", + "category": "related" + }, + { + "from": 1859, + "to": 627, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1860, + "to": 627, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 627, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 627, + "label": "capital", + "category": "related" + }, + { + "from": 1861, + "to": 1859, + "label": "employer", + "category": "related" + }, + { + "from": 1862, + "to": 1859, + "label": "employer", + "category": "related" + }, + { + "from": 1862, + "to": 7, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 7, + "to": 627, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1862, + "to": 7, + "label": "located", + "category": "related" + }, + { + "from": 1861, + "to": 1859, + "label": "affiliation", + "category": "related" + }, + { + "from": 1862, + "to": 1859, + "label": "affiliation", + "category": "related" + }, + { + "from": 1863, + "to": 1864, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1865, + "to": 1864, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1864, + "to": 1863, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1864, + "to": 1866, + "label": "parent organization", + "category": "related" + }, + { + "from": 1866, + "to": 1864, + "label": "subsidiary", + "category": "related" + }, + { + "from": 1867, + "to": 1866, + "label": "operator", + "category": "related" + }, + { + "from": 1867, + "to": 1867, + "label": "followed by", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 820, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 820, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1868, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1869, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1869, + "to": 266, + "label": "point in time", + "category": "related" + }, + { + "from": 1869, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1870, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1414, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 1414, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1871, + "to": 169, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1872, + "to": 169, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1873, + "to": 169, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 169, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 169, + "to": 1871, + "label": "significant event", + "category": "related" + }, + { + "from": 169, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 169, + "to": 133, + "label": "located in", + "category": "related" + }, + { + "from": 1874, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1875, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 1875, + "to": 1876, + "label": "occupation", + "category": "related" + }, + { + "from": 1875, + "to": 1874, + "label": "employer", + "category": "related" + }, + { + "from": 1875, + "to": 408, + "label": "place of death", + "category": "related" + }, + { + "from": 408, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1875, + "to": 1876, + "label": "place of death", + "category": "related" + }, + { + "from": 1877, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1878, + "to": 1879, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1878, + "to": 447, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1880, + "to": 1879, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1880, + "to": 447, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1880, + "to": 1881, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 899, + "to": 663, + "label": "shares border with", + "category": "related" + }, + { + "from": 663, + "to": 899, + "label": "shares border with", + "category": "related" + }, + { + "from": 1882, + "to": 899, + "label": "place of birth", + "category": "related" + }, + { + "from": 1882, + "to": 663, + "label": "place of birth", + "category": "related" + }, + { + "from": 415, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 415, + "to": 663, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1883, + "to": 899, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1883, + "to": 663, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 4, + "to": 1884, + "label": "chairperson", + "category": "related" + }, + { + "from": 1884, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1885, + "to": 1886, + "label": "chairperson", + "category": "related" + }, + { + "from": 1886, + "to": 1885, + "label": "employer", + "category": "related" + }, + { + "from": 1887, + "to": 1888, + "label": "position held", + "category": "related" + }, + { + "from": 1887, + "to": 1889, + "label": "position held", + "category": "related" + }, + { + "from": 1890, + "to": 1888, + "label": "position held", + "category": "related" + }, + { + "from": 1890, + "to": 1889, + "label": "position held", + "category": "related" + }, + { + "from": 1891, + "to": 1888, + "label": "position held", + "category": "related" + }, + { + "from": 1891, + "to": 1889, + "label": "position held", + "category": "related" + }, + { + "from": 1891, + "to": 1892, + "label": "position held", + "category": "related" + }, + { + "from": 1891, + "to": 1893, + "label": "position held", + "category": "related" + }, + { + "from": 1891, + "to": 1894, + "label": "position held", + "category": "related" + }, + { + "from": 1414, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 410, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 1895, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 1895, + "to": 1896, + "label": "position held", + "category": "related" + }, + { + "from": 863, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 863, + "to": 1896, + "label": "position held", + "category": "related" + }, + { + "from": 13, + "to": 505, + "label": "shares border with", + "category": "related" + }, + { + "from": 505, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 1897, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1897, + "to": 505, + "label": "country", + "category": "related" + }, + { + "from": 1898, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1899, + "to": 1900, + "label": "publisher", + "category": "related" + }, + { + "from": 1899, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1901, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1901, + "to": 26, + "label": "point in time", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 1902, + "label": "instance of", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 1902, + "label": "instance of", + "category": "related" + }, + { + "from": 1903, + "to": 1902, + "label": "instance of", + "category": "related" + }, + { + "from": 13, + "to": 1902, + "label": "instance of", + "category": "related" + }, + { + "from": 220, + "to": 256, + "label": "capital", + "category": "related" + }, + { + "from": 256, + "to": 220, + "label": "capital of", + "category": "related" + }, + { + "from": 1904, + "to": 256, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 1904, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 1905, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1905, + "to": 256, + "label": "capital", + "category": "related" + }, + { + "from": 1905, + "to": 1905, + "label": "different from", + "category": "related" + }, + { + "from": 1905, + "to": 1905, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 219, + "to": 222, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 222, + "to": 219, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1906, + "to": 1907, + "label": "position held", + "category": "related" + }, + { + "from": 220, + "to": 222, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1908, + "to": 222, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1909, + "to": 222, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1910, + "to": 222, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 220, + "to": 1906, + "label": "head of government", + "category": "related" + }, + { + "from": 1908, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1910, + "to": 222, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1910, + "to": 1911, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1912, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1913, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1914, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1915, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1916, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1917, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1917, + "to": 1915, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1917, + "to": 1916, + "label": "located in the", + "category": "related" + }, + { + "from": 1918, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1917, + "to": 1918, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 1917, + "to": 1917, + "label": "located", + "category": "related" + }, + { + "from": 521, + "to": 256, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1919, + "to": 1920, + "label": "work period (start)", + "category": "related" + }, + { + "from": 256, + "to": 1921, + "label": "language used", + "category": "related" + }, + { + "from": 1921, + "to": 256, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1921, + "to": 256, + "label": "indigenous to", + "category": "related" + }, + { + "from": 1922, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1923, + "to": 1922, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1923, + "to": 1924, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1924, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1925, + "to": 1926, + "label": "part of", + "category": "related" + }, + { + "from": 1926, + "to": 1925, + "label": "has part", + "category": "related" + }, + { + "from": 1926, + "to": 1927, + "label": "has part", + "category": "related" + }, + { + "from": 1927, + "to": 1926, + "label": "part of", + "category": "related" + }, + { + "from": 1926, + "to": 1927, + "label": "field of work", + "category": "related" + }, + { + "from": 1928, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1929, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1930, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1931, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1932, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1933, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1934, + "to": 258, + "label": "located in the", + "category": "related" + }, + { + "from": 1934, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1935, + "to": 258, + "label": "located in", + "category": "related" + }, + { + "from": 1936, + "to": 258, + "label": "located in the", + "category": "related" + }, + { + "from": 1607, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1937, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1938, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 1939, + "to": 383, + "label": "member of political party", + "category": "related" + }, + { + "from": 962, + "to": 1940, + "label": "position held", + "category": "related" + }, + { + "from": 962, + "to": 217, + "label": "position held", + "category": "related" + }, + { + "from": 962, + "to": 1940, + "label": "occupation", + "category": "related" + }, + { + "from": 665, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1770, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1770, + "to": 665, + "label": "position held", + "category": "related" + }, + { + "from": 231, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 1941, + "to": 1942, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1943, + "to": 1944, + "label": "child", + "category": "related" + }, + { + "from": 1944, + "to": 1943, + "label": "father", + "category": "related" + }, + { + "from": 1944, + "to": 1943, + "label": "sibling", + "category": "related" + }, + { + "from": 1943, + "to": 1944, + "label": "sibling", + "category": "related" + }, + { + "from": 1944, + "to": 1944, + "label": "sibling", + "category": "related" + }, + { + "from": 1944, + "to": 1943, + "label": "spouse", + "category": "related" + }, + { + "from": 1943, + "to": 1944, + "label": "spouse", + "category": "related" + }, + { + "from": 1762, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1763, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 1762, + "label": "authority", + "category": "related" + }, + { + "from": 73, + "to": 1763, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "authority", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 1762, + "label": "legislative body", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "legislative body", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to", + "category": "related" + }, + { + "from": 1945, + "to": 1946, + "label": "location", + "category": "related" + }, + { + "from": 1947, + "to": 1946, + "label": "location", + "category": "related" + }, + { + "from": 1948, + "to": 1945, + "label": "participant in", + "category": "related" + }, + { + "from": 1948, + "to": 1947, + "label": "participant in", + "category": "related" + }, + { + "from": 1948, + "to": 1946, + "label": "participant in", + "category": "related" + }, + { + "from": 1949, + "to": 1947, + "label": "participant in", + "category": "related" + }, + { + "from": 1949, + "to": 1946, + "label": "participant in", + "category": "related" + }, + { + "from": 1949, + "to": 1948, + "label": "participant", + "category": "related" + }, + { + "from": 1948, + "to": 1949, + "label": "participant", + "category": "related" + }, + { + "from": 1948, + "to": 1950, + "label": "participant", + "category": "related" + }, + { + "from": 1949, + "to": 1948, + "label": "participant in", + "category": "related" + }, + { + "from": 1948, + "to": 1949, + "label": "participant in", + "category": "related" + }, + { + "from": 13, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1951, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 556, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1952, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 1953, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1954, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 693, + "to": 305, + "label": "country", + "category": "related" + }, + { + "from": 305, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1955, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1955, + "to": 1951, + "label": "airline hub", + "category": "related" + }, + { + "from": 1955, + "to": 693, + "label": "location of formation", + "category": "related" + }, + { + "from": 305, + "to": 693, + "label": "capital", + "category": "related" + }, + { + "from": 1955, + "to": 693, + "label": "airline hub", + "category": "related" + }, + { + "from": 13, + "to": 820, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 820, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 820, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 820, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 1956, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1957, + "to": 1958, + "label": "genre", + "category": "related" + }, + { + "from": 1959, + "to": 1958, + "label": "genre", + "category": "related" + }, + { + "from": 1960, + "to": 1958, + "label": "genre", + "category": "related" + }, + { + "from": 1960, + "to": 1961, + "label": "production company", + "category": "related" + }, + { + "from": 1960, + "to": 1962, + "label": "production company", + "category": "related" + }, + { + "from": 1963, + "to": 1961, + "label": "part of", + "category": "related" + }, + { + "from": 1745, + "to": 1964, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1965, + "to": 1966, + "label": "instance of", + "category": "related" + }, + { + "from": 1963, + "to": 1745, + "label": "part of", + "category": "related" + }, + { + "from": 1965, + "to": 1964, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1966, + "to": 1964, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 410, + "to": 1967, + "label": "member of political party", + "category": "related" + }, + { + "from": 1968, + "to": 1967, + "label": "member of political party", + "category": "related" + }, + { + "from": 1968, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 44, + "to": 410, + "label": "chairperson", + "category": "related" + }, + { + "from": 44, + "to": 1968, + "label": "chairperson", + "category": "related" + }, + { + "from": 44, + "to": 1969, + "label": "chairperson", + "category": "related" + }, + { + "from": 53, + "to": 1970, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 805, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 1970, + "to": 53, + "label": "part of", + "category": "related" + }, + { + "from": 1970, + "to": 1971, + "label": "officeholder", + "category": "related" + }, + { + "from": 1971, + "to": 1970, + "label": "position held", + "category": "related" + }, + { + "from": 1972, + "to": 505, + "label": "country", + "category": "related" + }, + { + "from": 1537, + "to": 1973, + "label": "has part", + "category": "related" + }, + { + "from": 1973, + "to": 1537, + "label": "part of", + "category": "related" + }, + { + "from": 1973, + "to": 1972, + "label": "significant", + "category": "related" + }, + { + "from": 505, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 505, + "to": 1537, + "label": "member of", + "category": "related" + }, + { + "from": 1537, + "to": 1970, + "label": "office held by head", + "category": "related" + }, + { + "from": 1973, + "to": 1972, + "label": "notable", + "category": "related" + }, + { + "from": 1547, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 791, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 791, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 791, + "to": 73, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 791, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 1974, + "to": 1975, + "label": "member of political party", + "category": "related" + }, + { + "from": 1976, + "to": 1975, + "label": "member of political party", + "category": "related" + }, + { + "from": 1975, + "to": 1974, + "label": "chairperson", + "category": "related" + }, + { + "from": 1975, + "to": 1976, + "label": "chairperson", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 627, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 172, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 432, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 806, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 627, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 172, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 432, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 806, + "label": "capital", + "category": "related" + }, + { + "from": 1977, + "to": 594, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1978, + "to": 594, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 594, + "to": 1566, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 594, + "to": 1978, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1979, + "to": 594, + "label": "place of death", + "category": "related" + }, + { + "from": 1980, + "to": 594, + "label": "location", + "category": "related" + }, + { + "from": 1575, + "to": 594, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1981, + "to": 231, + "label": "part of", + "category": "related" + }, + { + "from": 1982, + "to": 1983, + "label": "member of", + "category": "related" + }, + { + "from": 1983, + "to": 1982, + "label": "chairperson", + "category": "related" + }, + { + "from": 1984, + "to": 1985, + "label": "has cause", + "category": "related" + }, + { + "from": 1985, + "to": 1984, + "label": "has effect", + "category": "related" + }, + { + "from": 237, + "to": 1985, + "label": "manufacturer", + "category": "related" + }, + { + "from": 237, + "to": 237, + "label": "subclass of", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 113, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1986, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1986, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1987, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 974, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1988, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1988, + "to": 974, + "label": "owned by", + "category": "related" + }, + { + "from": 256, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 974, + "to": 1988, + "label": "owner of", + "category": "related" + }, + { + "from": 71, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 71, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 1989, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1989, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 1989, + "label": "owner of", + "category": "related" + }, + { + "from": 133, + "to": 1989, + "label": "owned by", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 1989, + "label": "authority", + "category": "related" + }, + { + "from": 13, + "to": 1990, + "label": "significant event", + "category": "related" + }, + { + "from": 1990, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1991, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1992, + "to": 1992, + "label": "subclass of", + "category": "related" + }, + { + "from": 1992, + "to": 1992, + "label": "different from", + "category": "related" + }, + { + "from": 1993, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1994, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1995, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1996, + "to": 1995, + "label": "facet of", + "category": "related" + }, + { + "from": 1996, + "to": 1997, + "label": "facet of", + "category": "related" + }, + { + "from": 1996, + "to": 1995, + "label": "part of", + "category": "related" + }, + { + "from": 1996, + "to": 1997, + "label": "part of", + "category": "related" + }, + { + "from": 1998, + "to": 1072, + "label": "operator", + "category": "related" + }, + { + "from": 1999, + "to": 1998, + "label": "connecting line", + "category": "related" + }, + { + "from": 1999, + "to": 1072, + "label": "owned by", + "category": "related" + }, + { + "from": 2000, + "to": 2001, + "label": "subclass of", + "category": "related" + }, + { + "from": 2002, + "to": 2001, + "label": "subclass of", + "category": "related" + }, + { + "from": 2002, + "to": 2003, + "label": "has parts of the class", + "category": "related" + }, + { + "from": 2002, + "to": 2004, + "label": "has parts of the class", + "category": "related" + }, + { + "from": 2002, + "to": 2005, + "label": "has parts of the class", + "category": "related" + }, + { + "from": 2005, + "to": 2001, + "label": "subclass of", + "category": "related" + }, + { + "from": 2005, + "to": 2003, + "label": "has", + "category": "related" + }, + { + "from": 2005, + "to": 2003, + "label": "subclass", + "category": "related" + }, + { + "from": 2006, + "to": 646, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 646, + "to": 2006, + "label": "contains settlement", + "category": "related" + }, + { + "from": 340, + "to": 646, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 340, + "to": 2006, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 340, + "to": 2007, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 646, + "to": 2006, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 340, + "to": 2008, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1401, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2009, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 128, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2010, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1251, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2010, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2011, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1384, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2012, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2013, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2014, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 101, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2015, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2016, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2015, + "to": 96, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 776, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "capital", + "category": "related" + }, + { + "from": 1639, + "to": 2017, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 2017, + "to": 1639, + "label": "part of", + "category": "related" + }, + { + "from": 2018, + "to": 99, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2019, + "to": 2020, + "label": "ethnic group", + "category": "related" + }, + { + "from": 2020, + "to": 2021, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2020, + "to": 2018, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2020, + "to": 2020, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2020, + "to": 99, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2022, + "to": 364, + "label": "place of death", + "category": "related" + }, + { + "from": 2023, + "to": 364, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2023, + "to": 231, + "label": "owned by", + "category": "related" + }, + { + "from": 231, + "to": 2022, + "label": "chairperson", + "category": "related" + }, + { + "from": 364, + "to": 2022, + "label": "head of government", + "category": "related" + }, + { + "from": 2023, + "to": 231, + "label": "parent organization", + "category": "related" + }, + { + "from": 2022, + "to": 364, + "label": "place of birth", + "category": "related" + }, + { + "from": 2024, + "to": 627, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2024, + "to": 1787, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1787, + "to": 627, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1787, + "to": 2024, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 627, + "to": 2024, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 627, + "to": 1787, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2025, + "to": 2026, + "label": "subclass of", + "category": "related" + }, + { + "from": 152, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 2027, + "to": 658, + "label": "member of political party", + "category": "related" + }, + { + "from": 2027, + "to": 2028, + "label": "member of political party", + "category": "related" + }, + { + "from": 2028, + "to": 152, + "label": "chairperson", + "category": "related" + }, + { + "from": 2028, + "to": 2027, + "label": "chairperson", + "category": "related" + }, + { + "from": 2029, + "to": 2028, + "label": "participant", + "category": "related" + }, + { + "from": 2029, + "to": 2030, + "label": "has effect", + "category": "related" + }, + { + "from": 2030, + "to": 2029, + "label": "has cause", + "category": "related" + }, + { + "from": 2029, + "to": 2027, + "label": "participant", + "category": "related" + }, + { + "from": 2030, + "to": 2029, + "label": "part of", + "category": "related" + }, + { + "from": 7, + "to": 631, + "label": "head of government", + "category": "related" + }, + { + "from": 631, + "to": 7, + "label": "position held", + "category": "related" + }, + { + "from": 2031, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2032, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2033, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2034, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 1834, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2035, + "to": 1834, + "label": "position held", + "category": "related" + }, + { + "from": 2035, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 2035, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2036, + "to": 2037, + "label": "instance of", + "category": "related" + }, + { + "from": 2038, + "to": 2037, + "label": "instance of", + "category": "related" + }, + { + "from": 2039, + "to": 2037, + "label": "instance of", + "category": "related" + }, + { + "from": 2040, + "to": 2037, + "label": "instance of", + "category": "related" + }, + { + "from": 1585, + "to": 2037, + "label": "instance of", + "category": "related" + }, + { + "from": 2041, + "to": 2036, + "label": "member of", + "category": "related" + }, + { + "from": 2041, + "to": 2039, + "label": "member of", + "category": "related" + }, + { + "from": 2041, + "to": 2040, + "label": "member of", + "category": "related" + }, + { + "from": 2041, + "to": 1585, + "label": "member of", + "category": "related" + }, + { + "from": 1585, + "to": 2042, + "label": "instance of", + "category": "related" + }, + { + "from": 1585, + "to": 2040, + "label": "member of", + "category": "related" + }, + { + "from": 1585, + "to": 2040, + "label": "member", + "category": "related" + }, + { + "from": 13, + "to": 2043, + "label": "sport", + "category": "related" + }, + { + "from": 2044, + "to": 2043, + "label": "sport", + "category": "related" + }, + { + "from": 2044, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2043, + "to": 2045, + "label": "uses", + "category": "related" + }, + { + "from": 2045, + "to": 2043, + "label": "sport", + "category": "related" + }, + { + "from": 412, + "to": 2043, + "label": "sport", + "category": "related" + }, + { + "from": 412, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 2046, + "to": 2043, + "label": "sport", + "category": "related" + }, + { + "from": 2046, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2047, + "to": 2043, + "label": "sport", + "category": "related" + }, + { + "from": 2048, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2049, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1766, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2050, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2050, + "to": 432, + "label": "located", + "category": "related" + }, + { + "from": 2051, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2051, + "to": 432, + "label": "located in", + "category": "related" + }, + { + "from": 2052, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 2048, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 2049, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2053, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1087, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2054, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2054, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2054, + "to": 1087, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2054, + "to": 2055, + "label": "significant event", + "category": "related" + }, + { + "from": 2055, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2055, + "to": 2055, + "label": "point", + "category": "related" + }, + { + "from": 2055, + "to": 2056, + "label": "instance of", + "category": "related" + }, + { + "from": 2055, + "to": 2057, + "label": "instance of", + "category": "related" + }, + { + "from": 2055, + "to": 2055, + "label": "instance", + "category": "related" + }, + { + "from": 2058, + "to": 1975, + "label": "member of political party", + "category": "related" + }, + { + "from": 2059, + "to": 1975, + "label": "member of political party", + "category": "related" + }, + { + "from": 2060, + "to": 1975, + "label": "member of political party", + "category": "related" + }, + { + "from": 2061, + "to": 1975, + "label": "member of political party", + "category": "related" + }, + { + "from": 2061, + "to": 2062, + "label": "member of political party", + "category": "related" + }, + { + "from": 2062, + "to": 2063, + "label": "has part", + "category": "related" + }, + { + "from": 2062, + "to": 2064, + "label": "has part", + "category": "related" + }, + { + "from": 2062, + "to": 2063, + "label": "follows", + "category": "related" + }, + { + "from": 2062, + "to": 2064, + "label": "follows", + "category": "related" + }, + { + "from": 1707, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 806, + "to": 1707, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 806, + "to": 467, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 467, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 806, + "to": 467, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2065, + "to": 806, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2065, + "to": 467, + "label": "located in the", + "category": "related" + }, + { + "from": 2065, + "to": 467, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 2066, + "to": 806, + "label": "location", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in", + "category": "related" + }, + { + "from": 49, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 49, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 3, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 436, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 436, + "to": 2067, + "label": "position held", + "category": "related" + }, + { + "from": 412, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 942, + "label": "position held", + "category": "related" + }, + { + "from": 942, + "to": 43, + "label": "officeholder", + "category": "related" + }, + { + "from": 942, + "to": 436, + "label": "officeholder", + "category": "related" + }, + { + "from": 942, + "to": 986, + "label": "officeholder", + "category": "related" + }, + { + "from": 942, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 942, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 2068, + "to": 2069, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2069, + "to": 2068, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2069, + "to": 1108, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2069, + "to": 2070, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2069, + "to": 2071, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2069, + "to": 1466, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1108, + "to": 2069, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2070, + "to": 2069, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2071, + "to": 2069, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2072, + "to": 2069, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2073, + "to": 2069, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2074, + "to": 2069, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2075, + "to": 197, + "label": "officeholder", + "category": "related" + }, + { + "from": 197, + "to": 2075, + "label": "position held", + "category": "related" + }, + { + "from": 197, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 2076, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 13, + "to": 2075, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 13, + "to": 2077, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 13, + "to": 943, + "label": "head of government", + "category": "related" + }, + { + "from": 2078, + "to": 2079, + "label": "part of", + "category": "related" + }, + { + "from": 2079, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2078, + "to": 2080, + "label": "part of", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2081, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2082, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2065, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 521, + "to": 483, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 483, + "to": 521, + "label": "capital", + "category": "related" + }, + { + "from": 2083, + "to": 483, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2084, + "to": 2085, + "label": "parent organization", + "category": "related" + }, + { + "from": 2085, + "to": 2084, + "label": "subsidiary", + "category": "related" + }, + { + "from": 2084, + "to": 2085, + "label": "parent", + "category": "related" + }, + { + "from": 2086, + "to": 2085, + "label": "subsidiary", + "category": "related" + }, + { + "from": 806, + "to": 179, + "label": "capital of", + "category": "related" + }, + { + "from": 179, + "to": 806, + "label": "capital", + "category": "related" + }, + { + "from": 2087, + "to": 2088, + "label": "member of political party", + "category": "related" + }, + { + "from": 2089, + "to": 2088, + "label": "member of political party", + "category": "related" + }, + { + "from": 2090, + "to": 2088, + "label": "member of political party", + "category": "related" + }, + { + "from": 2091, + "to": 2088, + "label": "member of political party", + "category": "related" + }, + { + "from": 806, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 180, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 2092, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 1469, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 1467, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 2071, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 2093, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 1708, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 2094, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 2095, + "to": 179, + "label": "part of", + "category": "related" + }, + { + "from": 2096, + "to": 2097, + "label": "parent organization", + "category": "related" + }, + { + "from": 2097, + "to": 2096, + "label": "subsidiary", + "category": "related" + }, + { + "from": 2097, + "to": 2098, + "label": "facet of", + "category": "related" + }, + { + "from": 2097, + "to": 2098, + "label": "part of", + "category": "related" + }, + { + "from": 2097, + "to": 2098, + "label": "participant in", + "category": "related" + }, + { + "from": 2099, + "to": 665, + "label": "position held", + "category": "related" + }, + { + "from": 766, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2100, + "to": 535, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 535, + "to": 766, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 535, + "to": 2100, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2101, + "to": 535, + "label": "location", + "category": "related" + }, + { + "from": 2101, + "to": 535, + "label": "located in the", + "category": "related" + }, + { + "from": 2102, + "to": 256, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 480, + "to": 256, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 256, + "to": 521, + "label": "capital of", + "category": "related" + }, + { + "from": 256, + "to": 521, + "label": "capital", + "category": "related" + }, + { + "from": 256, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 256, + "to": 1902, + "label": "instance of", + "category": "related" + }, + { + "from": 113, + "to": 469, + "label": "chairperson", + "category": "related" + }, + { + "from": 469, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 112, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2103, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2103, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2103, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 469, + "label": "chair", + "category": "related" + }, + { + "from": 13, + "to": 258, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 257, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2104, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 2105, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 1255, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 508, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 508, + "to": 505, + "label": "country", + "category": "related" + }, + { + "from": 505, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 508, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2106, + "to": 937, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2106, + "to": 2107, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2108, + "to": 937, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2108, + "to": 2107, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2108, + "to": 255, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 255, + "to": 2106, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 255, + "to": 2108, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2107, + "to": 2106, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 255, + "to": 2106, + "label": "capital", + "category": "related" + }, + { + "from": 255, + "to": 2108, + "label": "capital", + "category": "related" + }, + { + "from": 2107, + "to": 2106, + "label": "capital", + "category": "related" + }, + { + "from": 2107, + "to": 2108, + "label": "capital", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2109, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 2109, + "to": 2110, + "label": "sport", + "category": "related" + }, + { + "from": 2111, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 2111, + "to": 2110, + "label": "sport", + "category": "related" + }, + { + "from": 2112, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 2112, + "to": 2110, + "label": "sport", + "category": "related" + }, + { + "from": 2113, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 2113, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2113, + "to": 2110, + "label": "sport", + "category": "related" + }, + { + "from": 247, + "to": 225, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2114, + "to": 225, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 956, + "to": 225, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 225, + "to": 956, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2115, + "to": 225, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 225, + "to": 956, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 956, + "to": 225, + "label": "located in the", + "category": "related" + }, + { + "from": 247, + "to": 225, + "label": "located in", + "category": "related" + }, + { + "from": 13, + "to": 2116, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 2117, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 321, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 2116, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2116, + "to": 2117, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2117, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2117, + "to": 2116, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2117, + "to": 2118, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2118, + "to": 2117, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2119, + "to": 2120, + "label": "officeholder", + "category": "related" + }, + { + "from": 2120, + "to": 2119, + "label": "position held", + "category": "related" + }, + { + "from": 2121, + "to": 2122, + "label": "part of", + "category": "related" + }, + { + "from": 2122, + "to": 2121, + "label": "has part", + "category": "related" + }, + { + "from": 2122, + "to": 1185, + "label": "has part", + "category": "related" + }, + { + "from": 1185, + "to": 2122, + "label": "part of", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "part of", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has part", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "part", + "category": "related" + }, + { + "from": 2123, + "to": 219, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2124, + "to": 2125, + "label": "connects with", + "category": "related" + }, + { + "from": 2125, + "to": 2124, + "label": "connects with", + "category": "related" + }, + { + "from": 2125, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2126, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 2126, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 744, + "to": 2127, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2127, + "to": 744, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 745, + "to": 744, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2128, + "to": 744, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2128, + "to": 1070, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2128, + "to": 878, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2129, + "to": 2130, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1032, + "to": 2130, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2131, + "to": 2130, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2132, + "to": 2130, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2133, + "to": 2130, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2134, + "to": 2130, + "label": "member of sports", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2135, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 2135, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 2136, + "to": 2135, + "label": "organizer", + "category": "related" + }, + { + "from": 2136, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2136, + "to": 305, + "label": "country", + "category": "related" + }, + { + "from": 2136, + "to": 2137, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 2135, + "label": "owner of", + "category": "related" + }, + { + "from": 2136, + "to": 2138, + "label": "organizer", + "category": "related" + }, + { + "from": 2136, + "to": 2139, + "label": "country", + "category": "related" + }, + { + "from": 2136, + "to": 305, + "label": "participant", + "category": "related" + }, + { + "from": 2136, + "to": 2137, + "label": "participant", + "category": "related" + }, + { + "from": 2140, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2141, + "to": 13, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2142, + "to": 13, + "label": "participating team", + "category": "related" + }, + { + "from": 2142, + "to": 791, + "label": "participating team", + "category": "related" + }, + { + "from": 2143, + "to": 13, + "label": "participating team", + "category": "related" + }, + { + "from": 2143, + "to": 2142, + "label": "part of", + "category": "related" + }, + { + "from": 13, + "to": 2142, + "label": "participant in", + "category": "related" + }, + { + "from": 13, + "to": 2143, + "label": "participant in", + "category": "related" + }, + { + "from": 2144, + "to": 13, + "label": "participating team", + "category": "related" + }, + { + "from": 2145, + "to": 13, + "label": "participating team", + "category": "related" + }, + { + "from": 2146, + "to": 2147, + "label": "chairperson", + "category": "related" + }, + { + "from": 2147, + "to": 2146, + "label": "member of political party", + "category": "related" + }, + { + "from": 2148, + "to": 2149, + "label": "chairperson", + "category": "related" + }, + { + "from": 2149, + "to": 2148, + "label": "employer", + "category": "related" + }, + { + "from": 2149, + "to": 2150, + "label": "employer", + "category": "related" + }, + { + "from": 55, + "to": 2151, + "label": "officeholder", + "category": "related" + }, + { + "from": 2151, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 2151, + "to": 2150, + "label": "position held", + "category": "related" + }, + { + "from": 2152, + "to": 2153, + "label": "has effect", + "category": "related" + }, + { + "from": 37, + "to": 2151, + "label": "head of government", + "category": "related" + }, + { + "from": 2152, + "to": 2153, + "label": "part of", + "category": "related" + }, + { + "from": 4, + "to": 412, + "label": "chairperson", + "category": "related" + }, + { + "from": 412, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 3, + "label": "child", + "category": "related" + }, + { + "from": 3, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 3, + "to": 412, + "label": "father", + "category": "related" + }, + { + "from": 54, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 54, + "to": 3, + "label": "child", + "category": "related" + }, + { + "from": 43, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 54, + "to": 43, + "label": "relative", + "category": "related" + }, + { + "from": 54, + "to": 412, + "label": "father", + "category": "related" + }, + { + "from": 54, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 555, + "to": 2154, + "label": "head of state", + "category": "related" + }, + { + "from": 555, + "to": 2155, + "label": "member of", + "category": "related" + }, + { + "from": 2154, + "to": 555, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 556, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 305, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 305, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 693, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2156, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative", + "category": "related" + }, + { + "from": 2157, + "to": 2158, + "label": "main subject", + "category": "related" + }, + { + "from": 2157, + "to": 2159, + "label": "main subject", + "category": "related" + }, + { + "from": 2157, + "to": 2160, + "label": "main subject", + "category": "related" + }, + { + "from": 2157, + "to": 2160, + "label": "main", + "category": "related" + }, + { + "from": 2161, + "to": 2158, + "label": "facet of", + "category": "related" + }, + { + "from": 2161, + "to": 2159, + "label": "facet of", + "category": "related" + }, + { + "from": 2161, + "to": 2160, + "label": "facet of", + "category": "related" + }, + { + "from": 2158, + "to": 2160, + "label": "facet of", + "category": "related" + }, + { + "from": 2162, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 287, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2163, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2164, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2165, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2166, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2167, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2168, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2169, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2169, + "to": 2164, + "label": "instance of", + "category": "related" + }, + { + "from": 2169, + "to": 2164, + "label": "part of", + "category": "related" + }, + { + "from": 2169, + "to": 2164, + "label": "facet of", + "category": "related" + }, + { + "from": 180, + "to": 2170, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2170, + "to": 180, + "label": "capital", + "category": "related" + }, + { + "from": 2170, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 2170, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2171, + "to": 2172, + "label": "maintained by", + "category": "related" + }, + { + "from": 2171, + "to": 2173, + "label": "main subject", + "category": "related" + }, + { + "from": 2173, + "to": 2174, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 2174, + "to": 2173, + "label": "practiced by", + "category": "related" + }, + { + "from": 418, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2175, + "to": 2120, + "label": "officeholder", + "category": "related" + }, + { + "from": 2176, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2176, + "to": 2175, + "label": "position held", + "category": "related" + }, + { + "from": 577, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 577, + "to": 418, + "label": "has part", + "category": "related" + }, + { + "from": 577, + "to": 1080, + "label": "has part", + "category": "related" + }, + { + "from": 2177, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 284, + "to": 113, + "label": "participant", + "category": "related" + }, + { + "from": 284, + "to": 2177, + "label": "participant", + "category": "related" + }, + { + "from": 2178, + "to": 1340, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 56, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 303, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 303, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 303, + "to": 2179, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 2180, + "to": 43, + "label": "participant", + "category": "related" + }, + { + "from": 43, + "to": 2180, + "label": "significant event", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political", + "category": "related" + }, + { + "from": 43, + "to": 1090, + "label": "significant event", + "category": "related" + }, + { + "from": 144, + "to": 813, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 813, + "to": 144, + "label": "part of", + "category": "related" + }, + { + "from": 813, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 813, + "label": "position held", + "category": "related" + }, + { + "from": 472, + "to": 2181, + "label": "position held", + "category": "related" + }, + { + "from": 548, + "to": 813, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 548, + "to": 146, + "label": "chairperson", + "category": "related" + }, + { + "from": 548, + "to": 2182, + "label": "chairperson", + "category": "related" + }, + { + "from": 334, + "to": 2183, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2184, + "to": 2183, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2185, + "to": 2183, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2183, + "to": 334, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2183, + "to": 1559, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1559, + "to": 2183, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2186, + "to": 2187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2188, + "to": 2187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2189, + "to": 2187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2190, + "to": 2187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2190, + "to": 2189, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2190, + "to": 2191, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2191, + "to": 2187, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 2191, + "to": 2187, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2191, + "to": 2190, + "label": "located in the", + "category": "related" + }, + { + "from": 2191, + "to": 2190, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 1779, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2192, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2193, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2194, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2195, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 113, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2196, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2197, + "to": 2196, + "label": "employer", + "category": "related" + }, + { + "from": 2197, + "to": 77, + "label": "place of birth", + "category": "related" + }, + { + "from": 2198, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2199, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2200, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2197, + "to": 2196, + "label": "member of", + "category": "related" + }, + { + "from": 2201, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2202, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2203, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2204, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2205, + "to": 2204, + "label": "part of", + "category": "related" + }, + { + "from": 2205, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 2204, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 2205, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 2206, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2206, + "to": 71, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 2204, + "label": "contains", + "category": "related" + }, + { + "from": 71, + "to": 2206, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 71, + "to": 2205, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 2207, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2208, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 73, + "to": 2208, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 2209, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2210, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2210, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 2211, + "to": 73, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 2212, + "to": 2210, + "label": "position held", + "category": "related" + }, + { + "from": 2213, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2214, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2215, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2216, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2217, + "to": 2218, + "label": "subclass of", + "category": "related" + }, + { + "from": 2219, + "to": 2218, + "label": "facet of", + "category": "related" + }, + { + "from": 2220, + "to": 2218, + "label": "facet of", + "category": "related" + }, + { + "from": 2221, + "to": 2218, + "label": "facet of", + "category": "related" + }, + { + "from": 2222, + "to": 2218, + "label": "facet of", + "category": "related" + }, + { + "from": 2223, + "to": 2218, + "label": "subclass of", + "category": "related" + }, + { + "from": 2224, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2225, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2225, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2225, + "to": 99, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 99, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 99, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2226, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2227, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 91, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 612, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 612, + "to": 91, + "label": "connects with", + "category": "related" + }, + { + "from": 612, + "to": 612, + "label": "connects with", + "category": "related" + }, + { + "from": 91, + "to": 612, + "label": "connects with", + "category": "related" + }, + { + "from": 612, + "to": 2228, + "label": "connects with", + "category": "related" + }, + { + "from": 113, + "to": 1779, + "label": "chairperson", + "category": "related" + }, + { + "from": 1779, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 152, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 152, + "to": 151, + "label": "member of political party", + "category": "related" + }, + { + "from": 2229, + "to": 2230, + "label": "country", + "category": "related" + }, + { + "from": 2229, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2231, + "to": 1148, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1148, + "to": 2231, + "label": "capital", + "category": "related" + }, + { + "from": 2231, + "to": 1148, + "label": "located in", + "category": "related" + }, + { + "from": 2232, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 2233, + "to": 1146, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2234, + "to": 1146, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2235, + "to": 1146, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 2236, + "to": 542, + "label": "member of political party", + "category": "related" + }, + { + "from": 2237, + "to": 542, + "label": "member of political party", + "category": "related" + }, + { + "from": 2238, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2239, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2240, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 1834, + "to": 122, + "label": "officeholder", + "category": "related" + }, + { + "from": 122, + "to": 1834, + "label": "position held", + "category": "related" + }, + { + "from": 2241, + "to": 2242, + "label": "position held", + "category": "related" + }, + { + "from": 2243, + "to": 2244, + "label": "position held", + "category": "related" + }, + { + "from": 2245, + "to": 1218, + "label": "position held", + "category": "related" + }, + { + "from": 2246, + "to": 2247, + "label": "employer", + "category": "related" + }, + { + "from": 2246, + "to": 665, + "label": "position held", + "category": "related" + }, + { + "from": 2248, + "to": 2247, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2248, + "to": 2247, + "label": "parent organization", + "category": "related" + }, + { + "from": 2248, + "to": 96, + "label": "parent organization", + "category": "related" + }, + { + "from": 2247, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 117, + "to": 99, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 99, + "to": 117, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 99, + "to": 99, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 99, + "to": 117, + "label": "twin", + "category": "related" + }, + { + "from": 1828, + "to": 1829, + "label": "member of political party", + "category": "related" + }, + { + "from": 1195, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2249, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2250, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2251, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 2252, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2253, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1659, + "to": 73, + "label": "location of formation", + "category": "related" + }, + { + "from": 2254, + "to": 2255, + "label": "has parts of the class", + "category": "related" + }, + { + "from": 73, + "to": 1154, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 2254, + "to": 2255, + "label": "part of", + "category": "related" + }, + { + "from": 2256, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2256, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 2256, + "to": 73, + "label": "place of death", + "category": "related" + }, + { + "from": 2256, + "to": 73, + "label": "place of birth", + "category": "related" + }, + { + "from": 2257, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2258, + "to": 2257, + "label": "educated at", + "category": "related" + }, + { + "from": 2259, + "to": 2257, + "label": "educated at", + "category": "related" + }, + { + "from": 2260, + "to": 2257, + "label": "educated at", + "category": "related" + }, + { + "from": 2260, + "to": 2261, + "label": "educated at", + "category": "related" + }, + { + "from": 1430, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2258, + "to": 2257, + "label": "employer", + "category": "related" + }, + { + "from": 2259, + "to": 2257, + "label": "employer", + "category": "related" + }, + { + "from": 1689, + "to": 2262, + "label": "affiliation", + "category": "related" + }, + { + "from": 2263, + "to": 2262, + "label": "educated at", + "category": "related" + }, + { + "from": 2264, + "to": 2262, + "label": "affiliation", + "category": "related" + }, + { + "from": 1689, + "to": 2265, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2264, + "to": 2265, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2264, + "to": 2265, + "label": "located", + "category": "related" + }, + { + "from": 2264, + "to": 2262, + "label": "parent organization", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 1834, + "to": 631, + "label": "officeholder", + "category": "related" + }, + { + "from": 1834, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 631, + "to": 1834, + "label": "position held", + "category": "related" + }, + { + "from": 631, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 1834, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 7, + "to": 631, + "label": "head of government", + "category": "related" + }, + { + "from": 137, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1574, + "to": 1879, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1879, + "to": 1574, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1879, + "to": 2266, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2266, + "to": 1879, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2267, + "to": 1093, + "label": "place of death", + "category": "related" + }, + { + "from": 2267, + "to": 1879, + "label": "place of death", + "category": "related" + }, + { + "from": 1879, + "to": 2266, + "label": "located in the", + "category": "related" + }, + { + "from": 1879, + "to": 1574, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2267, + "to": 2268, + "label": "position held", + "category": "related" + }, + { + "from": 2268, + "to": 1879, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2268, + "to": 2269, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2270, + "to": 2271, + "label": "father", + "category": "related" + }, + { + "from": 2270, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 2271, + "to": 2270, + "label": "child", + "category": "related" + }, + { + "from": 2271, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 113, + "to": 133, + "label": "location of formation", + "category": "related" + }, + { + "from": 47, + "to": 133, + "label": "work location", + "category": "related" + }, + { + "from": 47, + "to": 113, + "label": "member of political party", + "category": "related" + }, + { + "from": 47, + "to": 133, + "label": "residence", + "category": "related" + }, + { + "from": 47, + "to": 954, + "label": "member of political party", + "category": "related" + }, + { + "from": 2272, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 47, + "to": 1366, + "label": "court", + "category": "related" + }, + { + "from": 1547, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2273, + "to": 73, + "label": "place of death", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1092, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1092, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 1092, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 1092, + "label": "contains", + "category": "related" + }, + { + "from": 1092, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 136, + "to": 1737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1090, + "to": 1737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2274, + "to": 1737, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2275, + "to": 1090, + "label": "place of death", + "category": "related" + }, + { + "from": 2276, + "to": 2277, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2054, + "to": 2277, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2277, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2277, + "to": 2054, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 2277, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 2054, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 2054, + "label": "contains", + "category": "related" + }, + { + "from": 2277, + "to": 133, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 2277, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2054, + "to": 2277, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 3, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 2278, + "to": 2067, + "label": "position held", + "category": "related" + }, + { + "from": 2279, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 2278, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 2279, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 2280, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 2281, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 180, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2282, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 2283, + "label": "shares border with", + "category": "related" + }, + { + "from": 2283, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 2072, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2284, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2284, + "to": 2072, + "label": "headquarters location", + "category": "related" + }, + { + "from": 13, + "to": 2072, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2072, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 2284, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 2285, + "to": 228, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2286, + "to": 228, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2286, + "to": 2285, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2287, + "to": 228, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2286, + "to": 2285, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 2286, + "to": 2285, + "label": "located in", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 2288, + "label": "instance of", + "category": "related" + }, + { + "from": 2288, + "to": 220, + "label": "has part", + "category": "related" + }, + { + "from": 2289, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2288, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1811, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 250, + "to": 252, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 252, + "to": 250, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 252, + "to": 2290, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2290, + "to": 252, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2291, + "to": 1659, + "label": "parent organization", + "category": "related" + }, + { + "from": 1659, + "to": 2291, + "label": "subsidiary", + "category": "related" + }, + { + "from": 2292, + "to": 1659, + "label": "member of political party", + "category": "related" + }, + { + "from": 2293, + "to": 250, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2293, + "to": 252, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2294, + "to": 1659, + "label": "part of", + "category": "related" + }, + { + "from": 1659, + "to": 2294, + "label": "has part", + "category": "related" + }, + { + "from": 521, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 258, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2295, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2295, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1269, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 258, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 258, + "to": 740, + "label": "instance of", + "category": "related" + }, + { + "from": 740, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 258, + "to": 2295, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 1269, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 220, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2296, + "to": 220, + "label": "location", + "category": "related" + }, + { + "from": 2296, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2297, + "to": 220, + "label": "location", + "category": "related" + }, + { + "from": 2297, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2297, + "to": 258, + "label": "located in the", + "category": "related" + }, + { + "from": 521, + "to": 360, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2298, + "to": 360, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 360, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 360, + "to": 2298, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2299, + "to": 521, + "label": "work location", + "category": "related" + }, + { + "from": 2299, + "to": 360, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2299, + "to": 2300, + "label": "position held", + "category": "related" + }, + { + "from": 1294, + "to": 360, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1294, + "to": 2300, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1838, + "to": 2301, + "label": "position held", + "category": "related" + }, + { + "from": 2301, + "to": 1838, + "label": "officeholder", + "category": "related" + }, + { + "from": 225, + "to": 2301, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 2301, + "to": 225, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 2302, + "to": 2301, + "label": "position held", + "category": "related" + }, + { + "from": 2301, + "to": 2302, + "label": "officeholder", + "category": "related" + }, + { + "from": 2301, + "to": 225, + "label": "office held by head of", + "category": "related" + }, + { + "from": 950, + "to": 1144, + "label": "position held", + "category": "related" + }, + { + "from": 1144, + "to": 950, + "label": "officeholder", + "category": "related" + }, + { + "from": 2303, + "to": 1144, + "label": "position held", + "category": "related" + }, + { + "from": 2304, + "to": 2305, + "label": "connects with", + "category": "related" + }, + { + "from": 2305, + "to": 2304, + "label": "connects with", + "category": "related" + }, + { + "from": 2306, + "to": 2307, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2307, + "to": 2306, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2307, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 2307, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2308, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 13, + "to": 505, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 2305, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2308, + "to": 2309, + "label": "position", + "category": "related" + }, + { + "from": 219, + "to": 2310, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2310, + "to": 219, + "label": "capital", + "category": "related" + }, + { + "from": 2311, + "to": 2310, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2312, + "to": 2310, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2310, + "to": 2310, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2310, + "to": 2311, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2310, + "to": 2311, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 2310, + "to": 2313, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 255, + "to": 2310, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 255, + "to": 219, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2129, + "to": 2314, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2315, + "to": 2314, + "label": "member of sports team", + "category": "related" + }, + { + "from": 1033, + "to": 2314, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2131, + "to": 2314, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2316, + "to": 2314, + "label": "member of sports team", + "category": "related" + }, + { + "from": 2317, + "to": 2318, + "label": "chairperson", + "category": "related" + }, + { + "from": 2318, + "to": 2317, + "label": "employer", + "category": "related" + }, + { + "from": 2318, + "to": 2319, + "label": "employer", + "category": "related" + }, + { + "from": 2319, + "to": 2318, + "label": "chairperson", + "category": "related" + }, + { + "from": 2320, + "to": 2320, + "label": "point in time", + "category": "related" + }, + { + "from": 2321, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2322, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2322, + "to": 2321, + "label": "product or material produced", + "category": "related" + }, + { + "from": 2323, + "to": 2317, + "label": "owned by", + "category": "related" + }, + { + "from": 2323, + "to": 2319, + "label": "owned by", + "category": "related" + }, + { + "from": 2324, + "to": 43, + "label": "participant", + "category": "related" + }, + { + "from": 43, + "to": 2324, + "label": "significant event", + "category": "related" + }, + { + "from": 2325, + "to": 43, + "label": "participant", + "category": "related" + }, + { + "from": 2325, + "to": 2326, + "label": "participant", + "category": "related" + }, + { + "from": 2325, + "to": 2327, + "label": "participant", + "category": "related" + }, + { + "from": 2328, + "to": 2326, + "label": "participant", + "category": "related" + }, + { + "from": 2328, + "to": 2327, + "label": "participant", + "category": "related" + }, + { + "from": 2329, + "to": 2325, + "label": "has effect", + "category": "related" + }, + { + "from": 2329, + "to": 2325, + "label": "has part", + "category": "related" + }, + { + "from": 2329, + "to": 2325, + "label": "significant event", + "category": "related" + }, + { + "from": 981, + "to": 2330, + "label": "has part", + "category": "related" + }, + { + "from": 981, + "to": 2331, + "label": "has part", + "category": "related" + }, + { + "from": 2331, + "to": 981, + "label": "part of", + "category": "related" + }, + { + "from": 1885, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1885, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 284, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 284, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2332, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2332, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2069, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1760, + "to": 2137, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1760, + "to": 2333, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1760, + "to": 2334, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2137, + "to": 1760, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2137, + "to": 2333, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2137, + "to": 2334, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2333, + "to": 1760, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2333, + "to": 2137, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2333, + "to": 2334, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2334, + "to": 1760, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2334, + "to": 2137, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2334, + "to": 2333, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 2334, + "to": 305, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 305, + "to": 2137, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 45, + "to": 544, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 544, + "label": "member of political party", + "category": "related" + }, + { + "from": 2335, + "to": 544, + "label": "member of political party", + "category": "related" + }, + { + "from": 2335, + "to": 2336, + "label": "candidacy in election", + "category": "related" + }, + { + "from": 2336, + "to": 45, + "label": "candidate", + "category": "related" + }, + { + "from": 2336, + "to": 46, + "label": "candidate", + "category": "related" + }, + { + "from": 2336, + "to": 2336, + "label": "follows", + "category": "related" + }, + { + "from": 2336, + "to": 2336, + "label": "followed by", + "category": "related" + }, + { + "from": 2335, + "to": 2336, + "label": "participant in", + "category": "related" + }, + { + "from": 2336, + "to": 45, + "label": "participant", + "category": "related" + }, + { + "from": 2336, + "to": 46, + "label": "participant", + "category": "related" + }, + { + "from": 2336, + "to": 2335, + "label": "participant", + "category": "related" + }, + { + "from": 2337, + "to": 2338, + "label": "subclass of", + "category": "related" + }, + { + "from": 2339, + "to": 2338, + "label": "subclass of", + "category": "related" + }, + { + "from": 2340, + "to": 2338, + "label": "subclass of", + "category": "related" + }, + { + "from": 2341, + "to": 2338, + "label": "facet of", + "category": "related" + }, + { + "from": 2342, + "to": 2338, + "label": "subclass of", + "category": "related" + }, + { + "from": 2343, + "to": 2338, + "label": "subclass of", + "category": "related" + }, + { + "from": 2342, + "to": 2339, + "label": "subclass of", + "category": "related" + }, + { + "from": 2342, + "to": 2339, + "label": "has part", + "category": "related" + }, + { + "from": 56, + "to": 412, + "label": "chairperson", + "category": "related" + }, + { + "from": 412, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 412, + "to": 300, + "label": "member of political party", + "category": "related" + }, + { + "from": 2344, + "to": 2345, + "label": "position held", + "category": "related" + }, + { + "from": 2345, + "to": 2344, + "label": "officeholder", + "category": "related" + }, + { + "from": 2345, + "to": 1038, + "label": "country", + "category": "related" + }, + { + "from": 1038, + "to": 2345, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 1038, + "to": 2344, + "label": "head of state", + "category": "related" + }, + { + "from": 2344, + "to": 2345, + "label": "position", + "category": "related" + }, + { + "from": 1038, + "to": 2346, + "label": "head of state", + "category": "related" + }, + { + "from": 2346, + "to": 2345, + "label": "position held", + "category": "related" + }, + { + "from": 2346, + "to": 1038, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 196, + "to": 197, + "label": "officeholder", + "category": "related" + }, + { + "from": 197, + "to": 196, + "label": "position held", + "category": "related" + }, + { + "from": 2347, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2347, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 2348, + "to": 2349, + "label": "practiced by", + "category": "related" + }, + { + "from": 2349, + "to": 2348, + "label": "field of this occupation", + "category": "related" + }, + { + "from": 2348, + "to": 2349, + "label": "practiced", + "category": "related" + }, + { + "from": 2350, + "to": 755, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2350, + "to": 2351, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 755, + "to": 2351, + "label": "shares border with", + "category": "related" + }, + { + "from": 2351, + "to": 755, + "label": "shares border with", + "category": "related" + }, + { + "from": 2352, + "to": 2351, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2351, + "to": 2352, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2351, + "to": 2352, + "label": "contains settlement", + "category": "related" + }, + { + "from": 2352, + "to": 755, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2353, + "to": 755, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2353, + "to": 2354, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 122, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 124, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 125, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 126, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 127, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 127, + "to": 128, + "label": "place of death", + "category": "related" + }, + { + "from": 129, + "to": 123, + "label": "member of political party", + "category": "related" + }, + { + "from": 129, + "to": 128, + "label": "member of political party", + "category": "related" + }, + { + "from": 2355, + "to": 117, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2356, + "to": 117, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2357, + "to": 117, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2358, + "to": 2355, + "label": "position held", + "category": "related" + }, + { + "from": 2358, + "to": 2356, + "label": "position held", + "category": "related" + }, + { + "from": 2358, + "to": 2357, + "label": "position held", + "category": "related" + }, + { + "from": 117, + "to": 2355, + "label": "authority", + "category": "related" + }, + { + "from": 117, + "to": 2356, + "label": "authority", + "category": "related" + }, + { + "from": 117, + "to": 2357, + "label": "authority", + "category": "related" + }, + { + "from": 2359, + "to": 117, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 117, + "to": 2355, + "label": "legislative body", + "category": "related" + }, + { + "from": 117, + "to": 2356, + "label": "legislative body", + "category": "related" + }, + { + "from": 117, + "to": 2357, + "label": "legislative body", + "category": "related" + }, + { + "from": 2359, + "to": 117, + "label": "located", + "category": "related" + }, + { + "from": 2359, + "to": 2355, + "label": "applies", + "category": "related" + }, + { + "from": 1615, + "to": 2360, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1615, + "to": 2361, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1615, + "to": 2362, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1615, + "to": 344, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1615, + "to": 2363, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2360, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2361, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2362, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 344, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2363, + "to": 1615, + "label": "located in the", + "category": "related" + }, + { + "from": 340, + "to": 1615, + "label": "located in the", + "category": "related" + }, + { + "from": 340, + "to": 1615, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 344, + "to": 1615, + "label": "located in the", + "category": "related" + }, + { + "from": 2364, + "to": 99, + "label": "place of death", + "category": "related" + }, + { + "from": 2364, + "to": 1148, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2365, + "to": 99, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2365, + "to": 1148, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2366, + "to": 99, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2366, + "to": 1148, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2367, + "to": 2368, + "label": "subclass of", + "category": "related" + }, + { + "from": 2367, + "to": 2368, + "label": "instance of", + "category": "related" + }, + { + "from": 2367, + "to": 2369, + "label": "subclass of", + "category": "related" + }, + { + "from": 117, + "to": 130, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 130, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 130, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 131, + "to": 117, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 117, + "to": 130, + "label": "contains settlement", + "category": "related" + }, + { + "from": 131, + "to": 132, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 180, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 180, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 180, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 181, + "to": 179, + "label": "country", + "category": "related" + }, + { + "from": 181, + "to": 182, + "label": "country", + "category": "related" + }, + { + "from": 181, + "to": 179, + "label": "operating area", + "category": "related" + }, + { + "from": 2370, + "to": 2371, + "label": "father", + "category": "related" + }, + { + "from": 2370, + "to": 2372, + "label": "sibling", + "category": "related" + }, + { + "from": 2371, + "to": 2370, + "label": "child", + "category": "related" + }, + { + "from": 2371, + "to": 2372, + "label": "child", + "category": "related" + }, + { + "from": 2372, + "to": 2370, + "label": "sibling", + "category": "related" + }, + { + "from": 2372, + "to": 2371, + "label": "father", + "category": "related" + }, + { + "from": 2373, + "to": 2370, + "label": "participant", + "category": "related" + }, + { + "from": 2373, + "to": 2372, + "label": "participant", + "category": "related" + }, + { + "from": 2372, + "to": 2374, + "label": "father", + "category": "related" + }, + { + "from": 2373, + "to": 2375, + "label": "organizer", + "category": "related" + }, + { + "from": 2373, + "to": 2370, + "label": "main subject", + "category": "related" + }, + { + "from": 2373, + "to": 2372, + "label": "main subject", + "category": "related" + }, + { + "from": 2372, + "to": 2376, + "label": "father", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 183, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 184, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 398, + "to": 399, + "label": "date of death", + "category": "related" + }, + { + "from": 400, + "to": 401, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 402, + "to": 399, + "label": "date of death", + "category": "related" + }, + { + "from": 403, + "to": 401, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 356, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 403, + "to": 400, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 56, + "to": 3, + "label": "chairperson", + "category": "related" + }, + { + "from": 3, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 49, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 49, + "to": 300, + "label": "member of political party", + "category": "related" + }, + { + "from": 2377, + "to": 432, + "label": "place of death", + "category": "related" + }, + { + "from": 2377, + "to": 2378, + "label": "place of death", + "category": "related" + }, + { + "from": 2379, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2379, + "to": 2378, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 2378, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2378, + "to": 432, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 2378, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 432, + "to": 2379, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1572, + "to": 432, + "label": "place of death", + "category": "related" + }, + { + "from": 1572, + "to": 2378, + "label": "place of death", + "category": "related" + }, + { + "from": 432, + "to": 2379, + "label": "located in or next to body of water", + "category": "related" + }, + { + "from": 1572, + "to": 2380, + "label": "place of death", + "category": "related" + }, + { + "from": 2381, + "to": 2382, + "label": "instance of", + "category": "related" + }, + { + "from": 1789, + "to": 2121, + "label": "main subject", + "category": "related" + }, + { + "from": 2121, + "to": 2382, + "label": "instance of", + "category": "related" + }, + { + "from": 2383, + "to": 2384, + "label": "chairperson", + "category": "related" + }, + { + "from": 2383, + "to": 2382, + "label": "field of work", + "category": "related" + }, + { + "from": 2384, + "to": 2383, + "label": "employer", + "category": "related" + }, + { + "from": 2384, + "to": 2382, + "label": "field of work", + "category": "related" + }, + { + "from": 2382, + "to": 2385, + "label": "maintained by", + "category": "related" + }, + { + "from": 2386, + "to": 2387, + "label": "facet of", + "category": "related" + }, + { + "from": 2388, + "to": 2382, + "label": "facet of", + "category": "related" + }, + { + "from": 2386, + "to": 2387, + "label": "subclass of", + "category": "related" + }, + { + "from": 7, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 220, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 2389, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1923, + "to": 2389, + "label": "capital", + "category": "related" + }, + { + "from": 2390, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2391, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2391, + "to": 2392, + "label": "date of death", + "category": "related" + }, + { + "from": 2393, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2393, + "to": 2392, + "label": "date of death", + "category": "related" + }, + { + "from": 2394, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2395, + "to": 1923, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2396, + "to": 2397, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2397, + "to": 2396, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 2398, + "to": 2397, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2397, + "to": 2396, + "label": "contains settlement", + "category": "related" + }, + { + "from": 25, + "to": 26, + "label": "point in time", + "category": "related" + }, + { + "from": 27, + "to": 28, + "label": "subclass of", + "category": "related" + }, + { + "from": 29, + "to": 28, + "label": "subject has role", + "category": "related" + }, + { + "from": 30, + "to": 28, + "label": "subject has role", + "category": "related" + }, + { + "from": 31, + "to": 28, + "label": "subject has role", + "category": "related" + }, + { + "from": 27, + "to": 32, + "label": "point in time", + "category": "related" + }, + { + "from": 27, + "to": 26, + "label": "point in time", + "category": "related" + }, + { + "from": 31, + "to": 28, + "label": "instance of", + "category": "related" + }, + { + "from": 26, + "to": 26, + "label": "point", + "category": "related" + }, + { + "from": 33, + "to": 34, + "label": "operator", + "category": "related" + }, + { + "from": 33, + "to": 35, + "label": "instance of", + "category": "related" + }, + { + "from": 36, + "to": 34, + "label": "operator", + "category": "related" + }, + { + "from": 36, + "to": 35, + "label": "instance of", + "category": "related" + }, + { + "from": 35, + "to": 37, + "label": "owned by", + "category": "related" + }, + { + "from": 35, + "to": 38, + "label": "owned by", + "category": "related" + }, + { + "from": 35, + "to": 39, + "label": "owned by", + "category": "related" + }, + { + "from": 35, + "to": 38, + "label": "owned", + "category": "related" + }, + { + "from": 35, + "to": 39, + "label": "owned", + "category": "related" + }, + { + "from": 40, + "to": 41, + "label": "subclass of", + "category": "related" + }, + { + "from": 41, + "to": 40, + "label": "different from", + "category": "related" + }, + { + "from": 42, + "to": 41, + "label": "product or material produced", + "category": "related" + }, + { + "from": 41, + "to": 42, + "label": "manufacturer", + "category": "related" + }, + { + "from": 41, + "to": 41, + "label": "different from", + "category": "related" + }, + { + "from": 41, + "to": 41, + "label": "different", + "category": "related" + }, + { + "from": 41, + "to": 41, + "label": "subclass", + "category": "related" + }, + { + "from": 43, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 45, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 47, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 47, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 45, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 47, + "label": "chairperson", + "category": "related" + }, + { + "from": 49, + "to": 44, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 49, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 50, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 805, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 805, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 805, + "to": 199, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 199, + "to": 805, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 805, + "to": 453, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 453, + "to": 805, + "label": "shares border with", + "category": "related" + }, + { + "from": 453, + "to": 805, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 0, + "to": 1, + "label": "owned by", + "category": "related" + }, + { + "from": 1, + "to": 0, + "label": "owner of", + "category": "related" + }, + { + "from": 0, + "to": 2, + "label": "owned by", + "category": "related" + }, + { + "from": 2, + "to": 0, + "label": "owner of", + "category": "related" + }, + { + "from": 3, + "to": 4, + "label": "member of political party", + "category": "related" + }, + { + "from": 144, + "to": 145, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 145, + "to": 144, + "label": "part of", + "category": "related" + }, + { + "from": 145, + "to": 146, + "label": "officeholder", + "category": "related" + }, + { + "from": 146, + "to": 145, + "label": "position held", + "category": "related" + }, + { + "from": 146, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 145, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 48, + "to": 146, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 145, + "label": "office held by", + "category": "related" + }, + { + "from": 48, + "to": 147, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 48, + "to": 145, + "label": "office held", + "category": "related" + }, + { + "from": 51, + "to": 52, + "label": "country", + "category": "related" + }, + { + "from": 52, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 52, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 13, + "to": 53, + "label": "member of", + "category": "related" + }, + { + "from": 55, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 55, + "label": "position held", + "category": "related" + }, + { + "from": 54, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 57, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 58, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 58, + "to": 59, + "label": "position held", + "category": "related" + }, + { + "from": 60, + "to": 56, + "label": "member of political party", + "category": "related" + }, + { + "from": 61, + "to": 62, + "label": "point", + "category": "related" + }, + { + "from": 60, + "to": 59, + "label": "position held", + "category": "related" + }, + { + "from": 61, + "to": 62, + "label": "publication", + "category": "related" + }, + { + "from": 2399, + "to": 981, + "label": "part of", + "category": "related" + }, + { + "from": 981, + "to": 2399, + "label": "has part", + "category": "related" + }, + { + "from": 981, + "to": 2400, + "label": "has part", + "category": "related" + }, + { + "from": 981, + "to": 2401, + "label": "has part", + "category": "related" + }, + { + "from": 2400, + "to": 981, + "label": "part of", + "category": "related" + }, + { + "from": 2401, + "to": 981, + "label": "part of", + "category": "related" + }, + { + "from": 2402, + "to": 266, + "label": "point in time", + "category": "related" + }, + { + "from": 2402, + "to": 2402, + "label": "follows", + "category": "related" + }, + { + "from": 2402, + "to": 2402, + "label": "followed by", + "category": "related" + }, + { + "from": 2402, + "to": 929, + "label": "point in time", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 98, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 99, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 97, + "to": 98, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 100, + "to": 97, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 101, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 101, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 101, + "to": 102, + "label": "significant event", + "category": "related" + }, + { + "from": 102, + "to": 102, + "label": "follows", + "category": "related" + }, + { + "from": 102, + "to": 102, + "label": "followed by", + "category": "related" + }, + { + "from": 103, + "to": 97, + "label": "applies", + "category": "related" + } + ] +} \ No newline at end of file diff --git a/graph_show.html b/graph_show.html new file mode 100644 index 0000000..acaf2c2 --- /dev/null +++ b/graph_show.html @@ -0,0 +1,88 @@ + + + + + + + + + +
+ + + + + \ No newline at end of file diff --git a/graph_show.py b/graph_show.py new file mode 100644 index 0000000..60484d5 --- /dev/null +++ b/graph_show.py @@ -0,0 +1,200 @@ +class GraphShow(): + """Create demo page""" + def __init__(self): + self.base = ''' + + + + + + + + +
+ + + + + ''' + + def create_html(self, data_nodes, data_edges): + """Generate html file""" + f = open('graph_show.html', 'w+') + html = self.base.replace('data_nodes', str(data_nodes)).replace('data_edges', str(data_edges)) + f.write(html) + f.close() + + def return_edge(self, events, result_dic): + """Read data and values""" + nodes = [] + # for event in events: + # nodes.append(event[0]) + # nodes.append(event[1]) + # print(f"Node: {event[0]}, Index: {index * 2}") + # print(f"Node: {event[1]}, Index: {index * 2 + 1}") + for index, event in enumerate(events): + nodes.append(event[0]) + nodes.append(event[1]) + # print(f"Node: {event[0]}, Index: {index * 2}") + # print(f"Node: {event[1]}, Index: {index * 2 + 1}") + # print(nodes) + node_dict = {node: index for index, node in enumerate(nodes)} + # print(node_dict) + data_nodes = [] + data_edges = [] + for node, id in node_dict.items(): + data = { + "id": id, + "label": node, + "category": 'frequency' if 'frequency' in node else 'keyword' if 'keyword' in node else 'related' if 'related' in node else 'Organization' if 'Organization' in node else 'Location' if 'Location' in node else 'other', + "ner": "PERSON" if "PERSON" in node else "org", + "value": result_dic.get(node, 0) # Get value from result_dic, default to 0 if not present + } + + data_nodes.append(data) + # print(events) + for edge in events: + data = { + 'from': node_dict.get(edge[0]), + 'label': '', + 'to': node_dict.get(edge[1]), + 'category': 'frequency' if 'frequency' in edge else 'keyword' if 'keyword' in edge else 'related' if 'related' else 'Organization' if 'Organization' in node in edge else 'Location' if 'Location' in node else 'other' + } + + data_edges.append(data) + # print(data_nodes,data_edges) + self.create_html(data_nodes, data_edges) + return data_edges, data_nodes + + def create_page(self, events, result_dic): + """Read data and values, assign edge and node colors based on categories and values""" + nodes = {} + + for event in events: + nodes[event[0]] = event[1] + + node_dict = nodes + + data_nodes = [] + data_edges = [] + for node, id in node_dict.items(): + category = 'frequency' if 'frequency' in id else 'keyword' if 'keyword' in id else 'related' if 'related' in id else 'Organization' if 'Organization' in id else 'Location' if 'Location' in node else 'other' + data = { + "id": id, + "label": node, + "color": {'background': self.get_node_color(category), 'border': 'black'}, + "value": result_dic.get(node, 0) # Get value from result_dic, default to 0 if not present + } + + data_nodes.append(data) + + for edge in events: + category = 'frequency' if 'frequency' in edge else 'keyword' if 'keyword' in edge else 'related' if 'related' in edge else 'other' + data = { + 'from': node_dict.get(edge[0]), + 'label': '', + 'to': node_dict.get(edge[1]), + 'color': {'color': self.get_edge_color(category)} + } + + data_edges.append(data) + + self.create_html(data_nodes, data_edges) + return + + def get_node_color(self, category): + if category == 'frequency': + return 'lightblue' + elif category == 'keyword': + return 'lightgreen' + elif category == 'related': + return 'lightcoral' + elif category=='Organization': + return 'red' + elif category=='Location': + return 'black' + else: + return 'blue' + + def get_edge_color(self, category): + if category == 'frequency': + return 'blue' + elif category == 'keyword': + return 'green' + elif category == 'related': + return 'red' + else: + return 'gray' diff --git a/graph_visualization.html b/graph_visualization.html new file mode 100644 index 0000000..5ee0135 --- /dev/null +++ b/graph_visualization.html @@ -0,0 +1,14 @@ + + + +
+
+ + \ No newline at end of file diff --git a/image_03.jpg b/image_03.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65019edcb9af6ed62caaea5643c538b4bc0ce151 GIT binary patch literal 95558 zcmeFYbyS;OyFM5S6!+rR;_gzM(jtKZ#T|+hAW+<;w78XE1qu`iE-jYg#oax4km4jj zkzzmI@0|0^IcH{mYi9oX-m_+B<$1F5=)L#8<+`tX-_PH#0f<$VfJy)~GynkY;RCo| z1iS>GKl-cvwMBnu7>_ajYS@n-V?M^g#>K_K#=*hGC&I_YBgDhOAs`_jBqAmzA;!fg zB_ky!d-zTK*G$`=0<3>_>U%wdiOhfJY=~=p<i(z@vv}Kf*xA#KgdOI6LU!H~@nLlk}P3i^pVI zmRL+~PlVnl8iHM4cKbMev`AShqSp}%7 zqpPQHU}$7)ZDVU^?*MZ2@bvQb@%8in@G(3hGAcR-lAMy7mi{>-Gryn^T2x$8T2@nA zSKk2p(b&}4)!ozE*FP{gIW;{qJ2$@oUq@_gZf*bC+1*2(oSywYzqq{m^Osy`0Q7$o z>tXwEg8etS9y$T-5ynH8V*Mo-+9RKbFFFYZ<}<;^q%X9vEZxYMgx+I6QAo=B-hsm` ztc@hMa-YDZU=dkoMg1k(KP3BqCRo`2C&~UP*#99H9Dt9G_Aq$pBmgLG2mx$?{07QHthV))4Q=r z8xHWg2M`7-=Q#$`PKsp7(HJ}ZNzF;Nxp0q;gxe6{l1P6Sre+qh_h!t^$^`8HPwIE{ zemMs)O_27OQs&UL7GIuU66?2bIr`X##9pAUwl><218cko^s`LQq3k)}Ec1Vo0;8(o0){{*sIs&H*yD+~0XEXq zgTQY^RwE)R}(1x6Z$jFo-FX=S)VG zKC1h+tfIVyf2=W7hVbuYu!0O)_C9BA8&)Ri~k2}u7~C%ipG7zY=A|J<5byx!VG_gY4&pKy>)UJ z+V1q45^RU8XqlPowlemt1hMibDj{Ais8_d z_Op(o<)GhI*2&c_zplc>4NW=&|j@!QDjlo&cmq*~VZX zx)0e>xFL5G(HBSqSObT+NMSWD1|U}u+=2IiidbDEM(VrWXl2dw5_I?-ZJ;%hzemj{ z1mE#B-@5wgylHW|8}Tlr@mVDEwze|!mvJoGYb6IArYaX!|#?Q&< zy;J7F23$@W+2$Bzf@pv&R-*^*!+j8-j5lrD1nGeS@_aOnTY4o=c+6km~1!nNV>-w#b9WtcG7CvGq~f z1B|P$4EwD7gIg|@ZQPqoo_^%NxweOazBalsZb#aEa9XP-GOcfeR`nixNYaUjg&scB zwDU;H=`hKAI*!$o0(kQ{GV=GWMJIeFH%f$dftUZlmb8nD;RSuv&I@V`25c4v0zgpE zhAY`_E=4fKr9}^O*B^qj3o9)an&OW(bEG)aWy7TniURnhS5Z=PuCMJvC5aY})llZC z1T#fYOE)ldaTjh|;pA4Lvd*5+J1^7$-ntU#OMVK5w2!u&XaHo={!V5U{nTTFd~5ll zCxl8pz>BpzwsNJDL1}=bPnd~+LQ7Bn0PvMi_Ai0Zk1WC%aBHS-B-Z&E?*Y!Hra_5H zYL-Q4wD~nWswGsR3Xk908jdZcW~7v`5aZ^MUH(QiA5)LyJFehQA2A%kB{n8`3-lUm zGCs*cY#J%{PhQa%@t+h(<3dzy^#BZ|YmD@}j3l1eH){FHBHlhc=JOhl26!9gnsV)Y zm{i&&T{<{)H!=ac4*w}6m8HG?mb2a_An-Xm7P^S-u^_a$afe|XDy{I3S6;lq5|32w zh*d5C z^fYY>nxL9by-$ggL%ZH$lYHWM6e>gdw;I_sS9rkB3v;5&%2EqI48zO!qs3sh=XM^~ zTVt=I#p(Qoa?a2;>i};sTbY5=qRZM-ij&|R#K|9=W;(R1Ou+T2%5APJ?Yu)K zIHifStJKJ-3!^C^*NwMuaa72+Ve?-i(u_iS;!dsO!Lm4i8cSf3moIsS)@zEVD) z9_Oj5Cm=Jg%>;UJ@W!`}wCGn|gJDvIiA-T7LbY$jgwT^Z#Q?I#4=|7g7N%CZ(eRNI zVu0QJnPcENH9H_k^9kD7@9Hi_@*Cy=egYtZ-u;)#Ol3iHQ$#OqbW5YzSGBW`9q&mN z@ZAc&kNvT!_`&gFtC)JKQd>KCzt&vSt{vmnMCQOOkWZMWQ@a4qp!krPo83=o?_F|` z*%rr@lHk(0W+=?nYdtot5k-D@JMW|=3O!MypNTekZoRq7(>NELS(vNu#u2$}#RAdhwqW=wBJ+qC(&W9e?bj zT5v!WjwInUqB}wwe7uM7=XN^Ow}%}hN?|&#%#cCVZe0Ohc}8~gKuXj!4f%x?V_T}|Qki>#2-NpHg)VJ4jViFmG$$h+Pr zXVMLtYdGg$iAwIUf=B)3I*aaBXZfsVq?LBwXvDk{EAy|AKLPHThPwR(kbNSu`A2f# z)RjJvX2NTidDfGgRx03HU^LA+OiHbWcJ!ohURDp{3G<_R%<~NQg}&EYBK|rQdpA+I zkA5a@QJFc`_3I|D+i4%2y?lclsponN%T}qg)OL-T;1!g9L@?stn9HRIxN?vB!vP~o^zRt*^WN;dxAFkkAO<<$~9-+9X< z%0kB%hXY3sO0>;LcILEKW7p+x?9&IF=}ixtoCj*&ZfpX5V9Q zvH(iz{;npiW2&$>+0;ixYVv`{rupm22ktKqlRuj`(Cq7r{6HmSleE5nMB_TqVSp1A zYip}=0*582$Z7Fg%>aLT8E7$eBM~i~HZkKH`h1JjwS3^yX<14~Inuf@D&FIW8{v0w zjbb0LwTJLaFESP|RW!3uzmFuCqk>MdCQTa$u-ozs#n`p-{Kt=m3D4svCNgC>bo&hC zGa@NZzYxUxxso>i#s$)=d?n2PH=m1pF-zf}+6-U$S<}0-&(!%?%|1_XhETG9#?nW z0}^O7lI(5Qk4Y2*q-!1hv*QfD?f&xm-R-0ERvCk{$RFuSQI5S@q*!cz!V4huK z!&g{YAii$Uyf37DOJF62I$dE_%>xtp! z^z{)4lU35O_1OLcux&!;%Ko*GnG%SpiAkl{VTCgKs}VY9Ml?dO5fUW+cglsK{k-u( z>er))*2SZw+1G1byi7jlFn6V}j7(lPA7GRhMPKQAXYc=h|g-FT7NFubFdC<<} zI&s>bK4gzvH>5P956QX{G4A+fsZNqoK53H_&|iNRU?0)`@gj`yCBQ%YpD+z=*tc)} zJbc5?`PWQbIcp~HvG(&qqsl_x977gh(s)4~F+`pa-`a^^0)Sej1EOfx8!Ge6@a7kl zkvHWIR#Ox_S7W%dHWQ;zqVhT?~=P1eDIQ78-XA`2JVDZ#G}q9=jQm$6<5+G@%jSY||R z`NEz7i8*ds0A&_r!;|b$E}3WBi-#FqJ7WLE@#o+If3SrzU;( z3PlY{sdR%@M(Ua+wrAQkd`hLp%x}>gGxLw19tOwi-gKkhvrviDTS%a?$9f{sWr)dT zwS55l#}?6IUlSEi4ePNF z+h{zUHOAO&IQBfKnEdKIw=_Ijo=Wh~${yPzI)wi(~ULDzD8&Fw6 zY_fD2sdVC8C0FNMF>CUpOPS*bVYQbRRdi)vGAWP&{Yc(|2ko$(sH%!TkR;!1Y0+5T zwkEnDVRBn7>Z3`BPc%yco0SeoBHoY1DpZo@Kj6qe9!1Ln;u3MsZxZO@#t-8_?`&hg zR8vGA71-K8ZY}|#_G2vD%Cm|_sacS96zsYOZioK?h(J6*DqbPw{B*~JQ$!JrHrk}Uadf4|Xkw3CJp+$T{ z%_*Rra9Puhyr*V4QE1lCh}qehuZF9JVzcC_3vRa!x;*_q_y(;073Nvizh<~*%prYu zrtM0BR{^L-tl6UwK2Wr)1y0RGO#3A;_%wSax);r)F1jg_Z*EQg>2aK|ia+U_lnfd* zkbAMgWih|tZT9K#xz72Ffn(|+OXi)!r0&GNT8Ar|Oms}uS0dkM%w_0!F#PWR_kiw1!pnee|B%RI{)+i!RodZL-Tw#64CunQ_%hMJVvK$T%$(f*!W_5aWeulfl8Pc;1?Xf!E4ehSp-GMJ>I9uQ~B*RBPwAP zJu*@U7(CG!?|!Ks8{o_PRdMCRGg}4IWZQ3@+q1duKSQ7ave72J zuN=+v`T8V1xOI-Fjo3CqV)D-c4Ds>|eyELJcx0F??dr(-O?y;*BlCD2_WLei$uc7! zT}Wf{vwMJ@ShbvR_YgsZOKu;(w;aNszd0o7_YFa^)@W^+ThDG}VYcyDK2+U9^&Wtj z6IOFMT@1KCJz2olPZ7T#I$$6~k-32as#7?-Vx?H!lfhk~JC8k8voW;dfPf zS_+^#--Kg>$z3nyg!>Wr+c4to&v8>ED81y=X0|i)Bz?63h72Uh?_D2Q$01TqYjSh+x*=f-cX8p{;Yh@#7mQG#MWcN=~4VEiy z?w>B63n_=zXu_{ZtOQdCVgP@bI;RdO#Lnd$GB*xTEauL~O+c|wafzcoYWCSsp1+CS zpd})1MI2YCrqAvH-+1?d&Re`W2Jv=Yv`N&TB5(}>ZquX^yYdV&*HY#oc8>n-k%wpT zWI!-*V^*%#xorqU=Y13@+=E#+_ejZVc0IdLy}!RlH%W-_Lmmy`K z8qoQl4;Bli8I@b9bGC(UX_?NihWIEi9H_CmStbI99ta1iYpF}m0sD}R#l9G$V>OWe zq+-zHuko&6W;W|qL*`6h7$>fs{aZ2#%y@v89C;*jv(&b-d8y*WIQ3HfP37buR}@2kC0%JI@9ykVL6HC+HpCy`l!x>vP1 z_5xX-MKiEiq4Dz_a7rngQ&K8F?=7p#UI&`_4H}!TsG;n~?3ZLdU%GbbbXf16Alz!V zl8s9ypdj~CUVd$`Saq-=ccq3-CyjmFL5oyL;49QCAGj?n#!E3rYN~8$cVeKC%{$E? z%+NHCg~xI`L5#1D=au8CLa<~IEs{((X1~kF*hXBu77yo}`pnJTNIK7A%kDrrp&(Pi zdKxE_^w9{wKM3H<*nJP69;&?2sYfbSG{A#qBbit%9GTYnM)o>z{Tlen_;^`v9PH=yo-%zM@RDr}Yx3XLg|^{7Hp zFD!S3266vq_w@1oG$K^i3KdbwA0N!DS>lkxp0j7dJ#fII#cP`Y7Cu-n{LIoYVfxZ@ zcs5xzEnVO$ezV}w$6iD91!;biM~69cYt2+$vIlt@bX&Q=kyN47zO?04wAK6f{Ykjb z1)Bpz~w92MoVUZqo<#L$l_--tM(p2NAS8?u&7wo zaYU}8YQ!aTM))^oo0x+Ic`&Z8TAw%E$uBd$>tzs#qP*0wG7j0h>cGnyQ+oxBUkK#u z)t6o~*l%=^lt`d?9`$?KJ1C^8?`pC4hTG(W$KaK^ffuFk(AC%9vA-J<>ynj=1L>QS zT7(%=YAc70-5~5~YF9@t%vmEryY0YCM#U( zrFz@dY{ev7G6UeI@0$eXNSF_jzVt>x`1(NP7TAX4n5!R~BH9tIgfFXn8>UCxFeVj? zm(7hj2zH|YRkp;b6em8wOLB5{2{WKqiZ$csDrutDjZ*Ly;7`v`(~ zPCf~Qv&1j)uomiLFS^My%I>-Ey8F5_68c73)J$*A{HjlQ+@5(@`4rY`-rV6NQk76FAc8-7_8w4E8J`;+%zo+9O;c#jn_;Xxbyyh&UslSv2LQF? zAQy3kM>!;lfo1p_ zt$E2N&YOMgIlmR;8$4g3{$5JG!dinWRZ}-GOY)94VyrgqxMA34t{Ly0f z0FpcQ9Up(ah*B`rXh)@?+7GwTN3n{H*Ue>cxTf>xQ^I150>T+&i(Zr$Dk(NLCZ?fm z*}S~zRIcpi(ZKH37YY3e$ElLN>FpNQ5!(SgB?DkDaQR2QXJ(LQrqedjQs+Z{^7`eu z6cXV(wB{P^d1%s|sgzU%Vqm2VQ#UmW%E)n&W1YUD^zLI-p{vCw75fq<_i}AlJff80 z%WB?@*BPWhLt=%n<}#ZtH$MxuJysb^+?Kmu?n>6-QSBR|W5)V6b9-MYLf24d$WOXB zK`mpG5KZV8Ui;|sX{|){H@Pnw#`L%wi1co$j6lV&rZ23^=eq(NFMLRF)~4VBxUVKe zX6Mpso?D2`dYM(T-2+y_D!wvY+1uI|8+8=#o_~VF7nQzsUK5U zQ7GHrs`l}u8cy^=GBSL9CL$NAPVnJd`;Qs^mhu26G3un73~F$3U>VodmF|)W!Jq(^ zGBVNxdDM=4n7l2>4vX(SxbTg!`qWcmY`pqXK^I$HXFgedbIPxPgOYzwR6J_PE7|>{ z_@ybKJjB%&1Q@PeQvKfh;rWm-F%}D<1N!!A)Svp}Zp|pk$VmGzKWAs#gcW)j7qkpg z3ik_l!xg1((%QoO>F?r3y`M(Ud`SUJ3xyd3 zf_CuA$Mt8 zkXA<*-php%hURX86HXL%PD`dgiTteLeC#UD9}d40A4&P@=&X2L#M|-nH*VrI8%!rqS}}9UBXn@m{jd=?B|>EXYO$gZ%mQoQ4e8 zxs8X6RKd_EkeP;t=ZTA0>&1y}&n^{+;u_>|H;`5FUo$Awj1;QMeK3w}Am`iI5&iO? zAa81)3pI-gTF`eJI_t|qdaq>-`_$xOmf<_;POD~`yF`yqD-u7VYSt60%4VF}TpY@^ z^hjYWEC;_h`Ri>d2UA=YP-cO^TiGXooehW)1xHf$Qn;QL1h@k@R_ES{PDvq4$%e=& z2QvhswO)E%i-IKiV1)%vO%>^X67n!kUQpMk9d(*`V%l9#D$*)>=MnsnOrWm))B7Sc z%_1z0t&-F6E=X48A&{0fMZirhx@QEbjLhR%N;}RRd10(uoMKaZ73L3t7$#J(i0(QzIgFfEezH*BEu- zpI>xt;iBWGO|hWbM{(DrRW+0Z2mpStpCKf^s&I9k4u67~+jAFaOHDh;kQ>Oyl19-L zEn(N%P*$ZNT#R#+9LU%6IW&OaKRl>kVsCB~-0uB)r9s!ZPU|ex2jl@3@fKPf@UWqo z1bz4nO+s_!P?)Wlrb)w-Y}9fUzCHYKGx zK;A8QrPe;A{wX~^j<*RIZTFPnxOC6o7D@&807r5`O~|{^0CZ0OG%c~M)9vnE^}@J{}G8WB*QL3LzF*XdBy;1Er) z)yHBZ*?eNPHw%684Y{4{y)xj})^H|s#4vO+?BzEk-hGWL5Sv_QS}bL<6n5#CeK!T< z^#bN3t}%XCp+maW&s1BPnOHm(PmK5rJS97_x4zU!I|rnv-H z+~{eN%7yEw0jo?@W+CiJ`BWrIHZY%fd!H+Lh5oJa_Y|u9UB3dw72+ijJ8DV1#sPuN z7Ws3VAv%}V8~RS45y%_4%r{=Y#0qGVyfe*ArzTCyjeyUa+2F1^!)&*S!CZ!Bmkf(0 zZOFUNZL*mhB6B&Ydw>sfr!5|bE~^QZDgMnc;5P$azo3?93fz1O99UhIJ0)ir8Jj`i z?|ZdwtzA4l<)O;03mx)>v1GP2EiS8HG1Ma2*V4o9NN+5i63OG0&1P;0s)xvTYp3Ez z@?c;Yb873T>dz-EwIcBk#c*L%V`=Erlq&;5#-48OUi80I&01%_c-HPr`CNggZ;~G{ zBiZ+iM54(A(#!}(dez-isJ>9V2@uHcgQFnb#M1i9Ps%-4_r`0suA1~xxC@^6Q0OLm z-lf%I_x`Y(lF>;EKX)&q;^=M{1M)pgKxw^S&OL;O#Tq_6$yY8~n7;QUuv*#)^u!mo6ir52?T+HW{`v!J z{Gkl$uZq-n?G%C5h-&nm?@q=P$xa^D+dSfP+T0^-ISeY(ra{@NSy3~u!;{P`qy&?G ze1sdX&WRv#$h;AbtQ{ktV9m8>P-hm_C# z()RY0ymH*j?Q(?+wXB~jXIv|L!i~jYgXe8cbzTU^YYyorruI}C>KcNzsRz}=h$6(a zE7btES)1;nY}JH_x^P#fDUDd7^V>Su@^@pUq-Z;y;nB_7T47;fK^6#*C3AXR*6}jF za^K>~jWTQB`?|xxo_D1MW%9`#PpUCDuiNG)lunG)>AoxSkipU{SByR+v5*sLW+-vb z4c&~EyovmtY7B9@@@z_0Hxm!>9$2*xYFauAA-6CJ9+t!WeGi~oD9pSDabk=%r5@;O zed8r>;)HNW|6o$=80`6pvB6etozZ6R?Uz=1?WoL}8zUm+O0etSP+)EE%8*;?%iOJO zHdV#%5?d$+a_6<~L8OvWNf*f);Wv*B7+N{%LV<%Re$WYU$R+(vq9$9XrQrOYr`zw= zc#7NIg`rfI#Tp=t-AU04Yz8eIdZ^&MBM;<6b<6Uh_)5VQX6lbCE6wXuC~5Qypk^kD zxE6grR{NB2{Aj6B8WqdFRGzX>fyD~HMgy^5n6~P=ko?8)?TI}2lNHva(N0HSr4CFHCkO+mu-K^jF~)i^q>8H z{pv;p<&qnMNF)o2;jUCbs4I9+9=P&vhFg9Z6atbgh!*aPF7eb9?YkpQn1+Y*(wFn1 zp>*Q2voTIt!IiwCQ~fv9BK@bh3q$>^e$!n8lj@3frJdR>nKAA_vyo;Q+Py^G={Ctr z`<`G96lHiI5#pF^2W}r(wSin+SexMgt$7$3Gt0RdLqZ4kVA)(+Dy%W-r`KPw`Sc@G zDCo&iRiNp{5IgNkpCz*SJo?gly`MkV3}x2jDUnT6-90U1dD*WyKyv zsZ&LvzGQFl(`YM?a1*M0v9}W8bHW4ERu(Sr-k}{zVjhkbd1oBGMEh~_$&p0XfXRm3%0jYb}IT>_(_V-OpC6n)y1+jbsMhWb91lmHeh&I zO7jc7!XH_mY;XpeG(Rup{83K<Av$glwM+Y`$x&XaB0pm zGuGRlgGV?AVD)iV?xB|GSA16DvVmN<|{cR>h+db{Zl?A<)Z;DvA3mjqim9)+iLml-vF;Z?Vm&E8YKtH#y zoh%}?aLm=uH!TgW-og)ElJ@SO;}uBCmq_U4-K~$9^%UxVk@54{x7&1CHm5Xy*B(tg zCx6qXhJq3h%s6PP(Boxh-3K?xREb9T;JYg&OYSDaV=7}j{8bSHuUqCd;XBUm zUm1m`pOxolv%o)ql|D_^Y7NJ)61B%e>?|ny9zs=PR6_d3bW=_HG;g3Xc)gm~;e4*i z`D78qUo5Obp=Ma6t!Lu5F4RXj2m9Dx5p20gRl-VD&JsA{I3q~Ts$cO1%C-nzZukv` zm4lCl?g8lScDGiVxPcl-^U~iLb12KhqSnB% zZaiPP%BF;6TfR43)2FuP+}^zcQXE)&k3V+1e1mcJFQ3u>uP=zU6+(Bz?p38+us7RA z`3)rur#_@qnHC8-tGWtOO6+ZcVmgu#xP)Tp-(=o35W=_v8;>c_sSe$Msrrm^!{ECFgx zpeh#%aZ>V>9$cv?)RV#in8WVoOUhxqt-!^kTdhjg<$sjt}7YS3xNni$T6p%0?weT zXI+eUvw^pPftcr2px!#(2=jVXMzv#ue`-~#b5frZJv1-Q6cf>)|dKYI*gMnOh_DW|6`1RHBmYG z!q=mV#QZYzWTP9>Q)Q+m@T0l4?#D~MY*$)!X8B}nvjU~m{6*)(tyIe|4&(87C#(7^ zm8}-ln#|+F9+FpCMf)7p_ShZny@D6k^;g=>0gY0yrGe=xuK+w5PHB@6*26zWCW|{4 z@R_+(|9yM!)2tozct}vuBmyIYIv;adVY8e*Q^T#OvFISdRE(xUD8C>wHYNK2((G;E zZ638JOByI%gUT+-E!{U~n9iGUKH#l9aN*-u7!c9Fv+l1QTv2Tje6twg<@@}%} zkDB@2NVZw$#~GS+5SJw#eS#7~I`CdCUIVEQt!-_hta zm3KAc|E@5F=W6D-%xQ3TaYXF*;rF9CS+3kSm&%pCky_(xQ|5hYjcF?4U4HgV%7jSd z(6a>2HQNpYtC$y84R7DuOLX3i1+z~bx2RQjCSL}>3?TSSNh6k5L~EZBJpPIa4@ei? zQt!jpou=~h>Q!K9z<*!U^{>HLqG=k;ic}Nr`WUY?mYNuX&b375#0`X^5YbrrcG75C z+J&5oqb>t33lkqZtptCsM|5_K7A_Z1l{c)uO8eEDOL`AjgPPM$Rzs&A7L#$AxjY|T zJ>*rj2ID0yKLa##{0f0g{db?%+Y8df$$XGLub%o*s`n!^lV5G) zDxPC#(@FDdC<~Lc?Rn=>%KYCZ#ZC8s_uC;dsN%?lu}27U>0ZiW{)j@ak1f>`_W-Yj z^QP&uKWAf+{})snq3{Mp7GEiH(KLpN#v1cSlfxvLNFv>92E_!yZV1&(C-bB5!3a!u z4)h*ba^Dt^`P0d?2Rcb*s^XCE*VIv+8mF_KWu0%w_3Q73lrWgAjaENK{I(q^nZ?gZ zo>B7+R-`Yi%Uq`Q^1V~3lYeSzYHRk{T$=GrQ`;@qPv-a6zv7=pi7^4+dbr#3nEI*4 zSOZ2b^EQZZ25j1Bk?}pf8BTeQKHMCWXXkoqD6~exa0Q}Is(kak!{#E{s$v_4(?xr# ze1F&jd?s#Z?F&BiD&r`$(3zyFl$5f~@wZYOgISL z*_0X}u!$BvPP0Y*^8A>vx)W}NupfvnmZ`N#sfP0L8{DeCFV4Qg=OJx#v#Z_aO!kxE z15U?G`+U8!BuP@Qi33wh?Foc&+(bjuL!kL_ielTv#yCrQNZv;H$aM z$yy%{U0JGSmh@wBvR4Tdhc{iVUNGncl!bJfA%uNUj=yxmR#oa?umoCO z@;CgE@iiWgw+C&pWl#nhbAQhMuOC#SHi?Ow+=m|940osE^0bJ&({{ z)<=6}bin9^)Pl19a_Z)xPrf*hESF4syeBVipVEW%u}k7r`voJmjaunnAvBQR(8RoE@k(-F?T7QY=cWhVMsL(?&5k%-Vc1RxQ(>fX1ix?lReY zyt`tt_^s6l+(={RR9Y(gbGu@%K@-n47(AQ*K?`gqK0IZ9lqFU*V?AUgV*>b zBOZSzPPo?Ni~>I!Rm{$0{QZVg?pR_-oCVF02R)BHs_Lq2$Y+9Y;-Fn-A(ss0?4c?! zD3lr8g$7)Ca(t{|ae7jIt;e`be$>~DT3w{=6L4Z6KoNx<9(_a^_IbUVhdHDcsu@_Y zU#wd-&-ViHUOt1c#cM(W8QHRpW=W&VZ!TIPZzslpvCmt4y~(ef8zjp;P;b z9ND|YI%LXh8~sE*uRM?pK1Pw`LC}y#M}SuXnSgQ0@1TPva=zjE&V+-SFXYMo_2>n(tHlS}jP!E3%<)brajhuP8@VgV@^0C2 zF#f%l4^uR={%^yHl=ojKJd#p%EOJnGwp^)gP^_cgktX?3@y#-x}N;tqXgh)CB;TpjpFcs*!&V61#?YZ#k!Edr^ zZbbK?nDN78h$=nT1@+$P6__X2TFfNUMhVeTl5Wko4|mc{Z&z;T0{KQ{bmZ&?W8l2mvWr%F+rwj<2^?}?xk)J+(HhhWOpZ^Mv zsn$wfUZ-)3d~xHjJEeggXc2t_vs_PEtdE1m`Ym`IU&9g)Ee5T+2jre1X zP_NTK3#3f_@-1{^`378UCi*2#WHFioNGd0!$!|rvPqWsHRxgB3tPXJ5Z4*G|)Rw9j zINY&My4K_QcGtic&HGp;@^D`YakAh`dL$w&wB#wyDlIf-56v%Bn@ple5r~QG7XUSk zYW(uC3!C`4sRSX3uXri{1S06HF`Nir_IQ>AMUI^{a$9B$V*d~F4A06hd)2kabdc$B zfii^-cLdX!zZ7dt1cg@=xo{d%A@^Al8~8=$!vey!dAI*yo{cgrmFCeM`4SmIKoI?kM9vMO17qCVdL zWZ84yjrA;l^qH5v#I-JpB`PVrIlMqnji%pfNbFcpOyA=RqN*T7Ex2LN+w$9`|H)Ri zEdjqDr}4$&vbKMvEBGvEj3cr)hZGq<9ZZE%*f(eN?VqX~EpO_5E<48C$=x9Uw0373s-egTbT zEc4k?Yu7n8w|hZp<+fvHJdG*in8$BeZ3FV!;)6U2SJWOS`uUc+T;!W5HtD`}25%(5 z*I24vQZqv&=un5-*>3mtVS}19H53rh=Jj53#nFrEA=Ka34u`Q7he8+URfw`-et}5|U zE29HvtGQWkjr#+EWd(SVUWdV}W6J>X#a?C#>1ty9p!UDkkX z{H0=q#iC)uo>VQv7O7+P807WaFEY9t>yP>MWRT63Z%$!uW;(>yd4og2Kzcd{a zMU34Vt83V8&T>Ctu87U1tMlhzp)%;*gu3XK*VR(R>dsop@EF!kXbj{i)>h z;EO--=ks=k_BxoNA)>XX%BQoSE~*5a(Y%icXX$K_qiI%KZMmiFh5#A9hKXE(KpT`s zt&dD!=UBKo14^R^bNMKqU~jkBtEaWuL|H^Eo?@3RakxItPRUNC+wDu5cgUwv57o~l zEesS{%`S)h(S6E8PB(YTXPOa9IAQ%|T~Vh?rcW$2__8I`gSSOpMam>N_L46=RWF=u zT`T2mdATmu=RV#j%XLf1FpX)|C9$EfqFr1z)k`#3sk`4s+&!X`nStxqzW z4+1G+^yJhtXB-O0Su;dWDGOx_W-EyuEeqPp&bm?*c`#>vMFd% z&`)0UE^g}$gW*SIXTo=dXOCgh1<9!5o?NU;27*_6I!nuDpoYmM8R!@Mqk~U%+vFZm zHygMjVNB}_O7cvh(&>G&5~yBS_0q0*lND>B_pUQsKPT52R0ysSgf(MV-=$m1ENOky z#Stw4^hvxWNW{Lx>ixqQ9Z1*|y9cStDlrRjqRmiWGO)0pDz1;z0mdfdX|P2B(cQ<= zaK%(k00Ged;LiUw0Nh`mfH5(oK2H2y@I;%e+QfBNxm03G_0a-(a`iQ)-|=ia(-@gi zyo<}PKkVzKyJH{RFVtM^(nrK{H#`QM2IS-)U=8|N`MLH((w6!Xb{>LEj0yzhS*-3E zj4utb9Xj4U_YNwvWSG~sjaN=1%a8m0OQL#GNV=H70!;(z(6D?rUD@1_-ms#KvWPK% z`pZv~Vne{s*0A#no%Zbv+wsB1h~IMwIsfY+^}6|sZ00qe&O^cpXOUxkaGlBui7W5# z;R!$2Y*dOLZi*F-2-p$%;y)Qy3l_7cM9!dAv4ubPlYd_ z9wjN}{%*v+HP>Lhy&rJ7mHci)+~PJ@nxL|d5|=Gv8;75TbnJ=vVCS9=&uUX6kQvJj z(@2+?+HTCE)pmk*^sEHhLN$o~a9pGiTF`}$6b%gFm0mqQD z_D#&9ea4!j;{LsFi}X{k8Lg13t&-{f#QFH9w%e&mc80lC&9E{ol}b(0WE~c}Utev?HZf>)scCROQSa2^wEFU}C z-{wgRT8b6B$yU4#x2%m>Fmu@oH{S-$M4uedC>z>@&1_pgeaZOwRRQm-WtH+C3+1h9 z&Hb<6kexG`@qW+QIm)3U4pOI5=HgCjtS(?LWAZ?9RC-?~!AwJJrEwpR&XQW0s+To+ zIf^>Q?|yqyHCkXBE^| z8~=GIZE1@ZcPLUEic_?d;_eQ`3GQx1i?8;w5;n;t3jxyqo`j<>Jh9PJYi^yO_{Ddz`fK$5E$xZ}ubGB)9rt~cqpeP^;Tl|gF%j-;kg@G8 zXZQ5yO(6kw0$gN}m*P+p<)(<_5@SGeLyQ+eLFLtcX8=Hu-QHZ#_zN8pKi@g#g0{7U z9Cupxi4X6B4T=WK4prA#n~}8hOJZvI6>U^99^j2W9IjD-&_L9Xug3GDugp0&sq3bU z_Z1whV@q63fz(@T4jQmuZRwIn;5Cz)#l;Yf*Ygr;NR7TQ>PI?%`vGJ89P7e$RKwWv zS=SJ=SY+uPb@=&+>GNcjl?Z))Qq^iqCQ@WeZa-gfa`DGNnNe=y8z}mD2rQUwWyMCA z+xN9*Iz@M?sxLPYJrd|yeeGjFUT}xUAIi8i(=@m&k zZzW6A4EUoyJJ{9_>huql8gR*hmv$mNA*|!nBAoIshe9tiR#tDV2i6&oWIuNNgY=Pa z%c~6ksIfq!{Jcg+pSYKgCrzLBzUXEfdWY?Zs}*zXyE=%seji zZ&`n=ean~k38;QzJ`3Q4th6_@w+A-9YDp=1g>f88=KpuQhmHd>&tj60#G&$4z1W_# zCw!VpYE$2=+A=j@g#(k(wy9w!`;vdv`KR7|Yj#3IMqX`qU4dOn%C;-zkAY>~12N4! ze|F`xT-|g>qZNf>wbMNKr7J%)<(Jz_Kt2Z&JBD5kAsu;Q{i{S4qbYt-+(|FVP6f<} z)2PIoW3{_O3`(4qP+kE|U|o%o{P@U`!3JXotkhjTXk7FQ4qG)E&ra}NwI1oF?RDNl zv>F4A7k%SRJfSuCGuQNwvv_790N4 za2jHN*&+UQCMSUvfScVk>u)YIKQ%9>&;%CfLMva=by_ip)BqkahkYS(#naEe>Ru_Q zk4mH8#jTg@*Maaq7%+YEK%wN!IR#6+g^9%mMec?8w&AFI@`_f7oU!rZap#j#2C{8UjAGCE`*nPwEX9J7M}X z>rG8SMTgL8QftU>#)Lu)fqQ#9-s&ZU6c@ z$y-j&&!GXimz&;{B;0ROKn4 zBZh9MRz$+^HI-hv=Q8(RIO5RPK)A>|<8As%WPn3&QPKrje+Fh&Urm75grjDf-k(v0 zV)OH6KNo}5kahCNcUd(rG&m^ z*+MXr^^b#-O-Y%}wpgQCt_g$JrlUjwlU}bi&kF>6_ZXD%J?XohQrFnv%Zkb zBQ@8~P^XCp#+2~oeCb&B?Fw^>g~>@}HP17MlAX|Q+Fouq?b`Ry4)bPq9@bWwTY8>0R+{ZnFXs@7?+3SVP zHXZRnevE*a@u*d8`n3rxd0HI$WVq>iBK<-o=cEwlKNy@AbyuzE6apwVE182=e1c^( zx>DV{Gsk$LTzviEhoAS23*hu@3vIRxPRHfH^%Lt(g6hYk+g~-CxhpGYJ{-qy5}ZFb z0865GXy`b1zctF|B#iV}qpYtv|IYVyeE(adF9bH*ryete7m1Bbfm5!CTc7Ly_)wH^P zC*Ta=HcAjd;EEj!Xe2Fdbh;+CTJ=2#k|i2C{Z+`!p`=Z6VXn3~c<)-}>nze$@V1GZ zhFQQArWy@j2P(?4!5nRQ^n9J<6Y8WC&uafV*R}s@Mm(AB31w86zYLMOK2+mbpZ%p2 z5K!hwX!4!^b27X0E@aBQsE!2Bz$)p`gN>p;X-tZv=?r(uZ{>c3E9}0xr@c~zZuA4q1dXg z68+B8*p}Bl)O?k0av?fN{P;3;GstNkG$2h3MLRO@9bCAIpuX4ZlW(QZvbW27AtZI$ zV5d=*NBddpP+&l*vbv}Qo~TMkDSKTjTd4hf0iG0zKh_q0BszX@hTe1H_m;w13B)UT zh5ElFosSGO=C_RYOkrTf{|%z!-Om-4}#l&}dUp6CNKBYPYC>b653m&Q`E-1THvU)Ej z2{mdIE2NkNV|9cP8kruoHDy#ecsNEpZYu||OJqs=1aw4aDt+LU9PCJ0WOpQF{_ z;{#;H^z>TaU~$~6lh85tHyRoI_y{pU|AyFeWZT{EPb`W|iIU@2~A9 zOgyR9ZAU-<7&I47$jn`_2!dUo`+gedsypGFD+N@EczOVaGn8brq#?N_)eEP2*J3%{ z$)T?!jtx!Zyu3VxVrI&c=xAW0aZPHX_^N#3AM|j-r;L2Tc1;o&Q$BSGfhmJ2I5K5P z=;67a>UlR2XrabB2wY*Ay{;c4gEP?ZCV9(cVdoR@-RuyNwhBLn&l24WB=#UJQ=hrO zeC$0_;LWu+woY><(GYb@Y5d+xQcsZpgLgkMGS)~3dQ#iM#cM?R%!wkVwGr@@6-Tl( zM}9{?GIAMKMb>N!2>rK|bV?Ov%s&%~C*gQ`2HMRtm*btrCw2~8g+Xyo-$5Ek<+wf; zJ(>DV!}c_-hXiv=N&pXyOkc>9wGRT3I)#xxovl$d!YoJAQUAGede9$Ytd zyWT>b5l=AU0TA4+-!!oJ85{S=cDQ8zZXuMxQ6mg2T;=s8)MRuAO7&U5r2d zgmzVMP0kAmOe89qD4DSsEH>E;o(ao(piB>W!?A-B^T(Akd8VGN6|VzqFt7Iu*)Ral zucPHrdr7}*b(Bl3|1|o+A`((_TwhgkM~1{xY&E2>Xb?>>WGlo?q%gk|An{~M?a}!* zbE!FQL0}0sh*sbhG~v8~J`k`9Z!4nu^K6&ZnXq4pRHT;`2(Hp0wLR3BTl1jpO^ZvL zL3c-!+JCoo=3UL=7-tCCRc9AUF`Pbo#jX!a%T6F1*-?MyW|GI+hAal;E@p_l2*TCnXZfzV9VsIO> zMnK*hMtI;MrH5Nit@BVD(Nt&D3!vnwDYcbqz9|?8ez4#VT_?f(gU%z~V}eoLLu4Y0 z**=}~V%~dj&LCi)_}%y7fNcnMz(l^1Dxy7)q#=t~>QN>`5!$`?bZttVKs90Mcwab5@k1b<&~abh}ocn}Fz zViAel`ddSAH@|(5@Vhoe#g#dvtp&3#-0KwQcpiCe70Lqob`)o`Y6S08;;7&%Y{Cr5 zz8FevABtaQWBfHnXTJX%sp{XjNEso>Peit*i4L=06;K6>F4YOSk(;4HFM8V~qeg20 ziyr7=%R_^b)EduIkG@7l^EHx627X{G#wD%6btNjK7$x1mF4Q^`ti+NMCm|95Pf+{; zjow!=0aX7;r43#UD22XIuF8DMdHzDPhinIRTRsZUW9>_G2%L(o?2adhh2lv)4&h{} zpAentBmq@|%0B6CSQ-U9VKhn+zb5}W^wjoOWiQ4xJx1`SpUA&Q?s7$rZEwrBI#mzEYO^Y< zr5&1bd-3{gdYS9RIz$LZs+0Q(B4cn1v8w;G0lgi{e&p9hgLtTgwE2|%D3hu9klk4` z_JnRxb%=(z@5P?KtsTP`8c&a0Ld@-a>NInt&w8eJH=dEBn0!XL4EJ@xRw0b!8o0)_ zZW~$f-u?Pwp!OFeVX)Uu4LRI_1)h_(Z}m}AJTezrA~pV$_JFNKfa}1VEuKnu9%{h| z7j&?RwsZ!!p90Lkl+8$$BUJjYH(=yT&3}Uf9puX@U(SF&6Kfb$){1Q)u?<^bZ5`PQVLIR~z~(k`i;`L-wSL ztYq60=~k_lFE|ypOn)X?m#sKkIp$L$%NoIl>-eomp7Od0mn&L+pXT|A8aM7)fG}{J z`{%dx6sJRhss>jzQLhijPWtV?1OvdjdUo1%%SY!%r^(;KGcwdY z>mq)9)jrV9hFJKFY<1iFz=o-j<6C8^Whk6sDdJAl5t4d9tj*z<5`Jop<7-pc+9X%< z^++WRW@3!W$LBA4Ioo$bgFAe6v@AJbkiA>;q_P6@4Ud}+b~rv+IpOD!GP9WeLA~gG zb)rOg&hFYI*y+qnQpmVudh+jm$K%m|7+#Gik&?sgr9pb!{30ruE?q>j?@>4lw+JaT9gGqn6S z)$Y>Z8HMSJKc*DxpV?r+x$S1eb)$W$Want41KA(o8h871eM?Gv#&;s3zjNe6FX$sD zJPZr$r|)9h^wrm(>i=LY#-7{1MDjl0c`q$>QSLXI*T6l$ zKQ*P@(_LK(tHTGcbJ@m;5Z-xg=bTV-hrs`i;TZc>X8-}rc0E5VaeXUkOSK6o<>RpuN;sU zz&8(eQGwoW3+tZdAV?^x@y~RGG{GZ@Qz&7Cq68l=8d9{;-wbnsZRzi;=UcGvHOas0 z*i_kzd#7|EYcI;QFWF(2t%iP(N~OjX*{v3zC9=(5Ct~cf+}xOp`g(XB>laEyG~Km9Hf+SMzxdMnLQd z0W;^OiT_?(eUws_$@Ym@c%vN$<#75=xXm+JXK7B37SX3awGGs$vMfD8Yc|M^t}PD=10QPr24n|kRz4Y60@k|nFz~wA9XL?|?PA~jQrzm1 zblcn*_>QKUFwU7}KZh(>(aD$FGHc-eRDCW>Q8JKPQlah8AHHr{p&^L5ik=1N#r}lR z-|K88q{0aj{>J11$_~9Oeh>dJJ`fnJ`0c1Uj?q;A#VoNc5jf15#;g?(pbCD*#6Z`G zWF5?BL@b4$25W64i7VfI(t5cIGVgHWRFm2O0C;#_XzyBMy%nNPQB5wy0--RG)|#j< zC1wtfoB`Nhz329;8x9)Kv{G2McVZvjM^3;8hb>3?f~_LN9z1S1VDa(qIN)WvYnc5i@j zK$To4RSCD0JYpWijy?1CFNAzbNE#2F74Iml{OW?&y@L^dcCCsSDy9?SjWZW(%{dn1 z$$xus%xD{{G;h`Y^F=+3L*6>`Ev1~1HB6uPY{08nb*4}ixW$n-Pl3Nx;2zEXTARqQUifIg%_<&sukp)DLtK_40|Qsa23Da)!_K zL;NBB=tCYPEsW+MoU#FxrX|WshTl@V>|agp4t1K1==UY7vtdnNrND@{u9^z0y|zx| zC0)05vMHQ5qvKzy{+t%H;nOzcUr~)5$5%~gq@2Q#D7NTAKF{(gg8d0RhN(gC2v7=; z2U#76nucmV;`3N`FuLXOC_8q*n)e=)%xr9UpMjdZ8`md^e`smQTqtHvz6sjV*3k(Z zGEBO+aPCy;?OeI>49UD=^#96p&hUyjfSmz*KpJAvtCE6;>NZC5MhMcXqI^w;vsFAw z*M=X`Syq_YIhBa2vY1k7t(g_WGkh>OrT3PvWpr?~;O}NSMQT9HXod9FM;h9}iuA)S z*ka$MT#&;xC5lha%g}|WiCo{6BPFeaARYW&x(}E6Lt_`(9g*sDC$_C^Z5eN3DAF58 znFy<@u$h4$u;v%!d0gZ08xeNMkkjv= zvua0QWBghcC^@^6rH}WUx6Hl&U?|5M&fGWQs;D`@g+KU(#`P^bzq{Q1nhB)_)a^DM zEp?AP3M2QEJdC=8Gu1vyv?x~0C)W9xWCb;-_07XztY! zka~Zw0kS1chi{*{?RiT#ssTREH_Z(&SgoC+{fE-xXp({C9d>%-FiE;$ME5p*p9`9k z`mr7ru$kn0?P4{jvuN8L=VEIj*F4X|U59&-5W&odEXVxJ52jQZZhiSVTSI$WTT7k& z&t)j6doK>c3;PFStNbhD{F}MU8Y?yZ$;*+=+0QL=wWn@2^Q=H>hi#{z);CELsfx6A zz_*D!`>#6Y7?9HO(p2|4h;}$y7j?nvGk^CBaz={skWi{v;f@9$QrQ)kn};N$!w7rl zJfDM1#kqKfw5Zy|!lycPe?ATqi>1PR-4+0-x{<%Zp`MKrDL4@|Zh#oCL<<9Tx9rIc zb0hQdqO^nNw)-c@sXSzwHc~pV?xaI9q!OiLX!c~>c;>_=nx}?&&bjvSVr1%Y=(uU9 z@5dVqFZw)Izy&rGZQ#&x-^rCV`iMk(e}5{x7?}U#8YgH(NWd*{>70GpIkmHNfGdSa ztz`s*T7mORJJrILY=+uO)-w8LDqc1mgGsYFX8UEcv?D9IwIRexoqmnL8OO692U3_b zwU_iS4*vQUW61^Ut0eR+;fM=O%nCLNh!t@PC>{?xa_r<4;=cNQp&s!s?cYQ-;=;(i zHDWgGeuhvREnT($DaoHxoaM&7=-}I)$XbbtXBio9$DDe;{pADo;!-yDfCV<}5XMso zGS+XlCp|3)qEY^Bpv5duG**JG16}e&^w@aBW86~ryZ9ku;p+wT1N6j>#^!lw+{fyb;C7g+t^q1=z>_lIW98Tqmgj49)j7$M~(^%_JPPve+9*}T0O!0ePy zU!&O!AsE4TceODsiH3qU1du&uC*niCi(N#@|l+;p`%60O0krrvXH?1 zUmIcm+YVlWdNAyDD9ZuWY5SHTkL%!RJZK3Pyx67z18E1mQY$x}s7SPq`?YFvrdd4= zc(Y!P*~5(<4X``RDvaKyRSo|Dz^TjI+viIRx^qlCkD2atS*^B5Q#*RhA{Fbek|mQd zmr?ec<^5-PfXu%p2lOjAZloQ`f16f-a&69E;$QFH#?k#AXb>6mbCej z;2Ayu=-8GEXUo`*3svwuAAyT*>&e;K+1qN8DlsQweW0_ixi>(v?Du!#42R;+>bd!} zl+AVZ28Vgsf=PUmalSxpn9cgHr6}KBJke``VKn_E>qN5lk;CjNgKvi33!V}AD_G2P zS;-r4r1kC%Qxy`Bj2s?TmGm=KGB*-omKF!UM(p^CIh!*pp4raf?JpCp3i7Qec)5e< zvQ|j}6lIwo znOQ!9aGI z$+Clz+LL|1b7_}x=|xj3cvU)|9(hBhkixoeVllg}NAxME?FU%~1f(`yC^-G}o`K3| zIvUE{G84>OQwIvFge}+R*t#Fjs79vD0eiuvb zG*9|i_qd|7R};o7dr7m;-iM?kdawTypv^z<*&?mIF3PRLrew2C$mtI4SrBab^%Xot zRiTa5P&5ELL3j2F)gj-k-+avn=%VjvHHx12rd0W(Sxdstjk%s7-Bs7UzRSF;`W~|^ zFYC`b)KSm z8sJpV&9!Mq6Pa#`JHhWG!X-GjWAB;w;rNksY1M;ey^_VfcvHod>wrZ~4K5LPTb3A+ z7^CrN*CU!}`gaPu_3OLD?A+9?r&^pPia;jQU~LCs|B?{vFUiRuZaylR}CK zCA{B13tKT8sku%FQaQ@`TJ375_c?W~8n;G}k^!Q?u_7-sh~Zy;oQ5RUAr}e5y^_S- ziXPl+w)Jn|VC=I`eit#zcArC$&|czu#Fd=%w6}+e>px_3Iw`XL?F3E&5}4s32(}Tk z*_NUXohympj0M1m=qStIaPKK`Z~Ej&bCksEEi6-DS#J)3w$VikG>{I@|4jCm_u#B` z%$#zpLTC1#Xtg$r;#TUeo_*?*6Z; z5Rqlw+>&AX;k@vCIfl~DKB6O7O5j=C_>qJZe{SWZ8zn1Qr%t1oHQS^)&!5}!&5h(u zln0#RIibOxyj4TBTE^p>bJ%WdO?B`yE_MUUkOW zVA6eVZl9EE-(s3wAY>mPS=1c1gVwh4GdA5`r%<3c`yY7-OJq%FPlR~6sXfc{UX6wa zeQ8J6!@(g|i5&l6@N1kINYb!`)mR=ZJvx-%fO9hHfBoO6`~Mq{0GDup1u&q<;-hQ- zN`&<3x0jdCa_DuAK9E9PEYyA-Cl`awN^5>*vZ>bP{n$yh{t&`{S}gh8)BSxRzR3VR zSqDq;#9!O!OXIS->y~P(`WU^B7m|G|+Y`=j=Q9?V8Gwl&Q#&&hvD1T9QD3&*NRB|# z_>j15h=>yQso)||O+h_($R@%!$j{!txU>1))J$QL7FuK@!zX$27>m#tSZ7?S>rjEW zP%BbF2bxFuI^&=wPv%%A-lgK&u^Z!jFX9{JT6)14{n|?HB%HtuQ5SJJ{R*(8PdM!r zy0moe2+}d(9;yP>DS9tmPkS@>GSlR3`Nx1*RKNu-K)A7P0Z7#>|(5SQ|^A~hO z7LeZuV3IiZG?QUA5ic2^r`P8n#00;Ia}s2P3rXPth#cD{Gs?26hb;*rcz5%~m0YT= zI)XUIwQ}qt#+~1-KvMR3bd}oBD@?nG9#jCqPw?%gm(cRg)TfHx{Rbn#NBleFyoRjR z0l1;U84!&yRFd!=~$?dqkd zK*DZJ|DL}yt-Z2$MTd$q$t{O&yJr~AZbD+k+)fJ5C)yaGC$WUg z*Gd>w^pgRbzHznb{si0{Jq5el+*xF~TQxad=j4Z3nmMfVT9CG_@#vst?Z1HMtf}ZC zhLi6J=#sWM@zh5@$4{-*>cjeWO{@gJ!TpOb%t{y($Gh1+><^ynWDn>@7mFP4hb}qt zhe>so1g=We8+J&XJJY>UuBGE7jqzC1RVD_j^9G%-wH)s&3AJ~(99?Jc$6TJsZq+vb z02pUBZ?VyFfyVyK#2_KKXM_43g9?~ zV+wv`?zTqqdhx&p-f>1?2{@Tj(XzKr6D1pkYToXYTG5>CpeF%=Qq3G+I@K7$jG1!4 z0dG9HpMqXq``WKj2Du-Je;O!!j~Ol$N`WE-P=)@eKFYkYa9t{C0dSq+s&jMOw6)~9 z^vLwQ-CFCHi1o@?9|K3tI!;um>+Y0e+d)P|;tycgYDZUP5??JWN_bZGF>omQ~41CX8q<`k>ke37Ymy4M0a z{>$^DGZ;K>CN}dlJLU(|&)2ury~+e;C0MhM#KCs6kBka#Kg^8P0C2FHq${*jN)+aB zIg0a)P(zG2gXZ`}7(?^-Vqb&Zx8V|v+kvRYo^E1GRAd-f-G%4MOwggRtlg&z$01X| zt8@iG$bM%#IHw@GE{oClMEREC+bat?X_wYeoO?VvsijcrLpnNSOskhrY^;Q2jbe<_ zGO3E0a(&ZojARdgUbTs1WGsP25z47Y2z4j)x6xHJ&^JSgdp1a3ycXc(^atoVwHW+; zLc4En@9X_iKje$Q-a0FnNxQ+XT9*$uh${^J+w$PgWoez>D$ z=_K}}!XLf5!EWsPkooFR-h15U#e4CJ1I<-ObB4@oxCog6S1RQjs7MM+UiL@6mL@=dF&*#8rSWpVB{7z&J3x6-93VPs&YzNIQk#5mm=cDatu-{CNAb3l+Wf(7 zrM2f?7G=*nn1XMz9xOcjc}a+yV_t>g7x4UKPrUHX+cRK<(%LDZ-^1B+Yx_=X{lf=o zaky#eHhZ-kX~3`w5BL##*K1$2n=#W;&gv(!Q}MtC3Us^NnB8BdZ@_Ov8cWBLbv;2f zZqjOe>_QAegnh}=`YK6xfjqxKkprm}ue|1;N#rf8e48KS68jNf2H!3US<=Xsq@x5U z8Op^B&3d>iy}foSpLBT;Sa({L`u1;F=>NlypF+|_mivSI|AJzm{xB78{aF+7Xq}kz z9qpRP-*?8IzohwJ*fmV{DD$;OT*>Nn<^2}-tKI1q0s#u=hw z;=+H;8UtUa=zFO*XHCYGX;t`SU}w|o0}XkUYbb?3^#IWy5C0VX1tGMrmV=XU^oQBX zHm_J5XOPHbQ)GFYt9aKgn&vFk45KGF7V?hF5_Vy|76 zOa}b5u^C?yIx`X6uChN;a3)|_w;LJuUWxbD1AgosE5>5>dKbs*t0WF>(7qOpeqNCS z6+!$xcL{gWJXL2`H{NahA+-s{xe?iGF*PrS&hE+X+;$|#v(zkY#wSazoOrk&6U)n) zv@Lj1+gfx|VdKv*;#)0> zlbVwgmigMGlbWB&K|@N+I86vCrj!Z27C{?!ufUYp3D$xL`IwCv3_1#baz9b6 zrAPW?zQ1HForqxEr%9ENpL}k@>_pVx7oP7pWMve;Ki~cGC~uW;MxU1M9Tp|U2t|fW zE_QBnPMUmd$zRg;;ib`DTQ`Qtudc~6a!f=}q~u_s+rwHm$?AsTflv(p$NaFZ*AEpw zCa=$pgFhlB#NyLt>Mjo?Kv=8263qW#EJ>FJ5Izjqvt3q_JbKKXJDo~@szV=0xr(P; zd(mr!>nmDp{?8-S{+}mR?2jyauc$3Ua$)2LdPbD?->~I6_(EOOsdtMHnBww5puYexTWvkdU1+o?ZBK8n zBM7=_APt~0a44q8&^)s$!8$CUusA}WqqesY%)aH{p#biM{5BF=^&LCidE+Ip!&ucQ zK#1dlOTx!MNHCDHQU~W9sH462?f8kx^Y4b4(?Vhf0ElHJr|0=*pQdpE4C|YMxvDAw zg`AbYwG8eGdbp}Gv7_E3#NU9YJl*d3-Bo5hHx?TAyo_3{-UsobSf{S;Ecc?(Y45-2 z&F#~;rOn0KN9KEGi8@?vx2WhW?ribp8y6Fc6NUZG=WL>fj=c$kDp%%O7oKTnYv*q=(kaj~KfOS{qAyP!D z#@?FZb%V@x-kD%^K*P7^DfrBfYF$l|<44v9VKJf74XBJQ#b6bHL#FHO=(EA1^ zUD+|p&vtRiuhO7jDTh4q`0|807oae~%;wjsaZCe~)G?Uo=r2$_=IQI-5ghyK-fLyq zGm=4)I+sqm{q!hE2Zb`yUI0j?P>58hSbZRUa*%HA6@{Ag!J*QE)|4^_8FVq zEW1H?#ruI9W+tmiVn=rzv+vz%BGfS2Q_WS{BO_fHOPlToKJK_uhrH)3crEWp-aT%X zxA<4Qj>Ud2NP3{)^(o4>^5}0!l)0|Q@Lp4;C7+>-4O`>n&J*B>_Dg0}UtWn2T<6JZFqy zP@9aJpyMEduMBBD8q)vf85Gsv9aT3Jv*BX5dDVU_O=yLV%MvmJrbJNYEdQ(gz zw49SQkHaa^ZjAqaTX0>=ohq6jP@T(S!4tUH(`;PeC-1^BW3C0_*0_JM8_X!7 zwTYhQo7z}m(NUQoR;76#C2k>Z86md4tY;k!qXIH6jz($YNsI#3E~3ZM!2o>^bLbxYs9ejxNs+)6gs{Z{~`p=$z#{DPsTqEi(IrnC2IZd>CH*0Nmcz*xC8;%~SKxHq&Z1akNG6!RO7Jl)%SLSCpL?7ZX-t1 z`#K!=NmrKXcdc^brN$PdHU6BfqZUE({I_7&kY|BoN$k2I(gOP%zk?oMVY?yxG?A<^ zUGLW&|7OO)L$t0cu0$D$M{UCdh&|8W$_jeYR{Pq3+25$2D_kkW=M$*J0k)8)(iD9) z6dbO2%gV3K;TpDVhtLK97&=x5|LjFzwd#0$bz1-q#Yd*ZbTRnbYal_9P=_l?YP~28 zdq1j%>iYbs=a{kTn+C`|`%L(Guqi_HkEdQFB&{iB*XM>_=H*a{ZgHb9II8g9wgdmW zEBFt_wt7nGI!aF{PkvaX;EvJq9q>lR%&18I*07(tjoH)Q^1^~6p5o__BF07ca{hus zoX<(%;>}5>aT&wH%KCVgYj$hD9|4tN|4Y zwBIS#HVu&2N%Z9nbWrsha@cxc6R4*y?7-m;beAF-7$UBA<9%09h29r0U}NTbZ?#) z1R?GQ46enlGu*Z+g`A%2)z4I4o=C0l7R77Q5(U)Kf7TFFyW8yNu;ZV52IK~-gj{uY z*9e<;s&_lAzIk6dmX^{!R&o<~b*I1Qq<30&>)aW$-M3^x+HJqJIsNuF<`ItuYxa#cNWNjs@$1_iyrfXr~;k4>{*F zGE2g;b3t6&uFVO)7mX6lgOB{NLxI?lkDO}GnFN);2i#oUcq4|(9KWgTj{U4z7w|J=}Fe)6oh)5bH2Wyv<9x-#`TlxWF{8BPJYQihUIZ0Wja$x!0}M- z;!-Dtclb-CLeAP9BrKxuHIm%R8ga-ze;@vhkC#c`GDdW`d%Th9ViU>|jlGeIt+Mt<&>33A|mxB|*Hv5=u#y!f%-4t@Um#?e1*gFKl)SO7JfO zQfj|XWd$-MkJvno9%ah4X2#H4>XJkmFDHSbFRIqFq8kE!uJ+@M*u1Vt$|MgsAMhd) z+pINoQ|qBw%tICo!=T_pV{3n@Q|4q?Si_)wHRN2*-NrEc9k<^Ijw~CC^_$=(yhP#; z)G*c)?5&`Y6Zsa#*{sdvbNCj_uklVW)4%}0EO5*4{@jIf8Qq9hdJ3}O3iss?mP6#y zQMDpn78XvL^6bS-)Lp&DE9{f?z2$UVk#P;ipN2=#g*&eg6xmDYjUNEPe~==1ve_1~ z@HrC(U!cuC#0iKPXAYu-3nU>UjFcOGYExs72@xcAVb7fzr~{xzwd;=?8id0oW>2OC zPhO3b7C%vpERJL()A};XRTwSdaAyUi< zX|bU#W?RnlCq0Dtpnh}!NWzSEKAUuY_90$3-aC8N$xq&4QBIsi&#F4PngW*w;V*~@ z{XZO#F)#L$!tBFHR#6bMdp@KIO8u9KsR~`aSC~f#Pb$|OB}=S&z17bT4g8freLHcA zp|9W%^sK>Ji1L&$C-h+}D<~86@pja`8!zvl{Wv6t`6bkqLFSFm5z^n1g8W_@T7M&K z-+U^}^jSsVCHYO)^KGuQe$$xundA?})Nut|TYjYKxl}HW&@}B?ea92nA)dIQ zyQPL_q@JQmk>XqVsenQhIrLvpm@m*qMB%5#iz{}APzQ~Z*?p>E`y<@d)1(5!2aO7v*su$`$S-O}f9lQ7!l zyp&xLMkU;AUiH|9SW$`rr9)d|=}k|Nk=2m6g^svJw7x*WI%z>m>R%{ks((VS-RkFD zX{jL#S~uZEzKRFCJ+C0M-BheD)A2sdYYj=ajgrsf*@0}B!`w&ee7{$H`;b;!c>dpF zurZ&iX*7#j#QmHa+isy-k=`r^DKW}Bc`53JoM3BTcv(pv!N;;Flou#8$%uSp))S00 z?r(;-|Ifg{Kl(`}J=pP8JJW@H%ks8iH@xOkVJbapssp`)NK_y<1~KYJCnhgz<%50c ztv)BT)D=RF{klKjwee)JTW46t29}HIps)}O0;P^jQ`_hJC;x>qGJ#kq z8di@~jWN_1I+Mn?x=tw?WA`k?-oC934us4vlS~9lTLnmVqC}VhRP5J6Bdh4n4y>G1 ze{}O&*>%jd94M9F+RcKiMmXO}LLh7kt{&rLY4pKb#%lltqa&E2NDcUK?)1_);}Nri ztEUK|v7wAi$NL;2ENBGKK3D_>9i1G)!(V6ifwmx)o7K*A`o(t0A08%ps$~W-=kYfQx~VtO)K*>7 zrB1KY`tRb7 z7L7}1mJE%G|J=sz_-Q0p_JB1@gOrh~@7s&8Go|v>sG{htNPPg(i>&yRlc&ADSx;b4 zELLG;wdF*}mU#ug=>oxrj&0Qpbs8XJyjQy>gwM)NP=VAnaG!dz!<{-P{ z*7qd4AsjPntc5mQ=+bi3Me2BD{e|L&>S`K?QOHfz+PpmR=5KoFi)u2TSMZxC`+BO3 z(^rs&l!f}Pw$@r`3VMiAzKKoSQ5*1${hP8)zmfi8JLfn&d;`Q6(pb+z4`=P^Q&;v* zLXS`lO5aSK_XVVUb&7V3&4Z!dia-0yG;5T9|1uRWK||tKuh${Caw^lZiPUW~aks$xP^{jpT7wyY&h^19a|IbKsh`Cj61~@_fSbsmC zP>usYoyMO)NFhHYJ46!4i=q~JjV!s~h8B*yu};TgeLX5opP--Ej#*U z1m>3!$HWBkpXlS5e`qQ8{OI7~k-WYpyPqaq5y8`QWUrtw%xtPiOT%~uFjbk{`8V2u zLDQxH1!m;by=FOUe^oNt%WX|IpynF0Fv4xXyX3AiEFQlb2kUpLr00AcfVRDWsxo}- z3@^&5;A{nN0R4n#(goWluSLfum$8$$`R8vGrCu1qNKI<_bmJ;=3Av7r*S052;Vlra z^L=cvy*(f|9k*^2J@C(f)A6?5g)}P}mb7`kx<-|Ra27_lmwTxF6+m_flA5T+xATRa zRqOnVu8ti_zZRICu4#mE)*p&~)P>qJQE*gFX+->LlO0e7_KDQf z+nlFBb*6ER(;_--dEpQ8KPV2HAq)wDZh)lMd{ht zQKPxz(u>{x#Z~ORC-T^y>UDdpKh|VI1$P~#B9vwyH@Zxt=oXZ`OeMyuciSd`Y9mKq%{OwZowFDLyR_#QDa@W=Y#lrm2uG z_g2Ei`R+*Hrc;F_Y^-Reuxbhky)!qbe-kJaC_JkkmB&oM&SNT|n3>5`F&ixwbf6$E zfwXyejd$ecy_9`IpiY*bz z*fH({U1eK66#?@>Aitk3zf0<9=Rf4zkIrAu{8mxfR6T@!vRBLad{8S8LF=h~*u%DR zeT2iM9UbgKch-XHGkBJV)z&(Q;JaJzI?!u(fz||PGaHHm{h#*2 z|A~_PFCXU9bw+da@E(yW)(kj_7wwCGnt^5LwvZ~5>e(|kMbKsY_8~p@6J??c4=IZ7aRS>zI_&;ub9NBMdoaRa-J8^oH1$5nGe z%=)e-`xpAG%`Asz%hl#(`i#|P^%K`z(dp)=$jwkt^}rVc!%)%lAlNle!D?`mG}!J-g$0SkzWi>Ilpu2%j91EE43%`yp=;#t#fwJdig zyVHu=BFO3}rz(B%_tp7GeuSaAqvcu^{YQhi&{+71MJORs0m#I13vmej0CY>@Pf2UZ_Q8rdR$*d1#iR zh4LDC2)w)Q)Jv=!9=Y<#%xo#&KYAQba`O_klf0LL++}BQg;ZV&LmN7vZIlt?j9YG{ z1l)2~!P&azQi*Q8`7A>WQLhz!Mi1GI@AfQTlukK0x_dEC*?a0Q?9Cz1AH)a3>Ymrn zj#d1j$BSB~JF;u_)6ovSRfySPmr)X5{xM!R zLe7xbYyCo%81+aTr_;t;RR8WZ?S@LSeNkGN^mHY*C)Pmm_b3I)rwIn<-)Kw$VyO|j z#oxNBp<98E`%P*s!q{G@uUDTlk?v_{X@z$H-=7JW=o zEiRIou6S~e^aAwrqQ%HjcX6i1|`PRn#Dpy zpQ44*`ww7konbjTtKNW$u>8g|?eHQ7QUZuZK?iNUWmFn|qT>$TPl*?5$=I(WgMzPi zD#tM*%C^99+Mztj$}jj@lP#amfDca&sragw1wkwB`qvYQs;VTa zfQD3O&Zaj&d#2B+1f;dzPO^q+8Fp)a7o_U44vrdnYiou2SY+4U-qow>hJ=dOM-?;2 zu1@a>e|_YxMpsRPEiU=DY5e1jW8#8pNO?~2DqKO7OdpES*aTYYrL0E}gyDXBwv{8$ zXGdM$aQZ#4js?f-SR_+tYD=@U8myn(Y(CsDr>3)LYqUIGv);m!P#%_NPI2zTS3j-8 zTlr(=cyj5E>N*r|l)<3wPh1UUaYeN8TDn_0<|`E!PBulrd#HeD3UrLn!5U|W_3pl% zZO7j?<0VvZuFc}02c>mk5LNl1A@|CZdTfsn!;Mft#=T(z4_1w$1SmW;DX!Zrsx~1( zC^G=x`fnQg{}9IpZJ^VtHQG`hb{YFhPd-SczRA=pYSy9O+(5yev9AxdK~6ltmJ*#J zaUreYNJVLhIqE%hJ$Hg6K(T+>dW>o|NQ|7FQ`ZLH^5*kB(Hsbg_nrnjdANU??u7bJ zfTU-N8$;yt-QNZKv&lyA#@RSXhvnf(qC7*%NBiY^->!lUiDp-;X_lTkv8UC{1~q6< z4m%mF;Nd5ncskuZQQS`gc={jqs5ftxIj1BqpDK1fpQx3#E- z0T|muBq78T9^KxjEZsh(0U@x}S1OU7DCfuY6jnd`J{>3WR#n=JHS<5uS8>x&JUBkO zc2g>A(O(35Wsh%WWZ;JxV=$gkGS!pxCq8fa<~V3F>+a{HHcWI9__3PQnG;VdE?}=K z9;mrdOh#76-7}X>Spk`9AWsX7l01d^b0#j9youz`%`q*G2K1vMy=xtR1?L8e9(`?7v=E{4@iw zgw}kxl@{#^k0{a8nv5aNBz6pDC`E}tIk%rjN;#Y6e3UFp4m4_N8XKbYiV6~?h$v1Z z0d@dD`igo@-nJthkDZwM`z*F>n8<3ranMutu7x-jTx*#OQqYiOQLpfz2D>|GjBGP1 zO%gHQ)SU9;Ks5HI>x43%5ii(m9=mq0-ZaZzH!FUX2ytLuT7g$`?lC?SUj>+4TLnZeQK#iS`KsN+IEN0zr;_- zBgTZk=!$LqI`CScYI8gMZ=Mm6*y~J0sOK7fNFpxXcJB05X-JMe8y^h=o4x|^^;_8q zxi?Mpg(yC+6qp&d(*NNJgJ0`!8XKn5@)t^oD?ZvmDlSLM%NQj-=al;oTQ+y}c%qqj zfdO1TW{+hq_%D!bQ#k+pRi&*$jKW0=Z2D%9_K@7)RR#6Hi7yT>{~FR9sfGB0AI>z5 zeqC9)YG`zDk%FGS_gm*V9uYx>1Pcmk6rL5@%->x2|K!8{?R#buJP*KcfW(<06EAq1ZOXi!DB{8)EFpM#xTK zTbW>mk&1KS=st&ez30h}y14bD^^rt8uG!;0;J2LV1h?@P?a7i&(Ru5+9lYwpi3l7l z9_>BG`S^h+hnb)8HGKjry%>{g^6cnaN{4i{_T{-{(_Mj3#$HRFb;T?h@?v*azjTn& zlQ`T@3Xz7COCa%#HZ}2YKJGsTzj%}CGv7}v4P?Ij;ujM-?IiRH^NpWvRF}>#O_%ci zakyX9L+HEV8bNa%IU*|YuG`}2t;4u=QRcPSU$kMguiF$zW7mOv@|TFMXMdq+r(xFD zsc+37FR8Xqq*>ZRfV_R7^rjNFj%vxA+W>}@@ zG({6=>rsQ`r9W?DD9l>wLX2@bNIZg$#PQll+&BHhLsc&rLUwM3f_hp!q76X2GeZn+ zq?7%_4UCfXoZSaX_PO}^B5yac=m%&>U?S$ZiswiMT@wFw%${15dan6zQ9R6CT(AG6 zpV2?xe0cr?UerQJ(BRY-q}tq`{rujrfG@Ft4A+rtoIFBjgPFk=Kfck;NoWEi^J)BC z4kA{Q3(@!Os}8F$7!|FbL9X^2-Vf1hU}hSqI{bxlV7hc(8_H6sg@Rei&Q7LwA!dgp zprsA@=;Y{6`mrxR{&=mSRoAWrkj1p61eFJ$)9?pk0=}s}*KMkgyRB2ej9Y41Pv>=2 zO%}84=<8XS4k{*H(rLG~-8pVp>==-|7ee&(tQ{C(*YGFuG&&jXrz)=6MR;RYR+>a9 zxY`xXn1_FqFx6qcQB-j1TNL6hXXdi5v@A}aG9Eb|v07vO81!q}*(uPKNPD}~lbK{$ zPo{WxRpu8WUm_7%c?haqh}&K3l}g?ODpXfT{L%ez`b@xOTgp0;q<50xhA8n|u}MBn z8|wXMJ;I<$;h^2^zT?rWoTe4ddC}FlLfJ9FgB=OFC~gk9R)zjqBD>H>u5U@Jy41`( zr|=W>%!cLNh1KFW#kinC{$Z{_vHtU0D#f;YhN}2g2tWVzwgjIY9Lj2gO_KOK&~VXA zI6+|6#JNuWsk6w&WIS#qbvpMN0cNJl(G7l-3=G>;jdi%uxyyaXi1Ej-{Vr+`EigUOG9c z8{6UCWmh>+Mu)48HE<4v!qE;@KJjI|+)(iFLMPnGCbxzNI{EmEP^Dg77JD9b!tQ zy}ce*4@D}Qi}G-{d*3oQl1+K8N%7WCwY=r0X8#xgV)ib_5dI9))J#Nv(Us%Q>5HZm z=M;1GEJeGFqI_UqYty}eY=-LC+1%LfEXlNo1J_u7 zYED)DWNXSycjfarj`YZopElOO>+6dFV$@Uk(*RP${3BXzeb(a3%*y@qN4FB%LKOE- zd_NKosr7IC+D`<2r97UT@n zmAJ2#8miTx<4v*I0*aCO5VjoknO*Q7c3b==R&#xn+c_8Xk^?j2s zM~5;BZq|oq0-Z1XMpp4%@E1r|yR+ZH$AhmB+i=(Z3i=@Fd&VCljgzvNUkg(Obm%!o z<2?7%Z%>aZ2uG5|&6+)_>Y<(7I$}EaM4T~prQYP{_k72;TqDWHd*c<*QFi4?jxVrF zTcO$Rv1PX&dk9t^F=VeK7ey?vBj#1KzVY{$KXQS@;@L^=3756%xz# zr3XI;JaKbQq}7({p%JScWZbIGAA-+E)PG|-Qac8qKW04vtXssxs(s#WX31%`HO+9Y z)i>5@Lw;W}e_AKJ+hfyTTv85s19*c~_JyOSG_DfGSAnFLh)mZaMv7u#UH5e{Mc04| zrg$`p!oNHy|3MHB^`d94MAXy7T3|X#r%u68(O?p&a0&HHpVDsJ zyN`|4=k1#d1&BzRzlez~SbAy4GO^3T)Dur$2uecM#WL1#Oep+fSl>ayW^M)S-Q zEJcT4pb!#gbimKOFyH_O7p^N|wiR#>d$WFN^|5MJ&scUliI&7!540IYj+>Qua|1$2 z)rHpQjbT)(4K?1+A&V>&8x~CrU9_pTR4SAbg93O%s&vnYII-t0C6A|}=1@Ot ziJySVo$$RtueuT6{tc zkS9xS=|E_11eO@0q>}FD3LrsRu($ian7>c?qDUS~^#1$2TzWR{SUGSWgbx%bJ{0H| zcAY=s>dE4loEBr<7qUw(+`qo@5-W7R{!@8XNu_qr;Pw{^_|>gF^^X&7hV|}* zz;_t1ZmdjA`r3&HIg+r_sA>@z9Zz7hxb_K>=y0Hz|4%y@LI2l25|eGXMdPl{qV=Q4 zZ7*)_c?{_cmB19Ey*08B)#`*sz=sSvM!WoOs)cjJTa^Bdan%xc9cWr0C36hDHzI2y&_fV)4C20Np##djCcgLb*i%JdqT534DmT)@})O-u0 zSx1g$7kmPJC|<7rW;z9u_2Pn1EqZt}wb;Kx-86gR0stXxulnK!ohkuc4PZOdmX>LA z1x`}&_jIZN#q#&zQr(5=0V0t|GGxT=W8S4lo78$vxYtZ^FW{NdHL~s45RQJaL$#Gv zd0YjoaOe9-WdW^`GZxL7F{ApvMv5|j))@EzDSGgG%)X2b6XQNpM1&el7QlSuIFmQp zKTaLLFWM!b02GE1V)eC8aDCrz+nP&bn(v`&6+zYRXo?>FBee;9@EN5>+?bO(9M6pBKV{7B+S78MDGI7{i&T zM1y8a{&C}rnLd_7m+{Vzp}wXHXH2b-l6^^A5w1e3x&C2|X`}T(gB1fkS+f*jpEUhv zzhaY<4ZnYW)*jo#MdeYge6Jn-y7k26-`6gm>3Z#v;V)~XZVJhFSt-lc;d*mv+E23s+I?S2N@RiK2`|sP>|olHawkf^uX7gMR>TSX#?$A* zpnrV!dBSW(fELJJ%sfRn(D9VANvwD7g(sd5&Q@bIG6o``^+|39VHlz7$J(Qo0fjiL z`6ZjIb)H+~l!=_Kr!+zeR}owT{D6W*aLX{`PrWutOYrWBDnr@%;-bw3r;#9Y0_iG; z6L*oa)9*4!BZl#zu7~zXi~AuW=R>cj((gJOS%WFX%yfg<)|fN91qf+&#>#HngW+sq zPY#xkd9|?Vy|`p&6ZMt(*Wa}24&s!VzN)6dr5aG|l$@u%(DBL`=sw1hwT|VEPv$o8L0ofdH9~V1Od4~@lORhJ@n%1shE3q`dmAV3|P zlz1(J440uhy9sV%x4KE+zJ&i+0#sP1I1e+Ne{Y+3EB$c_pW_3m#4j74IJKXdNm}zR z`zp{R)}qC|dNG2>d}Oe=_eT3k^O@B8a!i9|$_cw}Uw;`VeN$7)vYpBK@jOL-gvSzt z8Stq&p=Wv;~+cIcngLVrirgHK*V0kGkdN$byn!{o34oiTb|gYkzd}eIGvC!mhmvEU|6c#@ z`c}L3oH||5oYO0(H|5Dl>FQ)W@yxV0z0LW%uQBFA7tB81cI^5(!N}iSG=IJUX}T6I z_S%DMgCu?4qqFCFAu#uGDGCcncAvnC(<$NLz0-bi{$Z%_G3tp(!FjhTZ$n^8{6PC0 zkdqeHc!=EpQT_7A6r*|I!(|Q@5hW&5X=P|lPS;yQ8Z>Q zGjQFNn_;}dX4$j*Sn@GnLu_VBq7;>k-YGOkq5 zLQ;Z$PYbO7QH{xisWqK@YLtknPtw)lMxBL5f1pS&SAY`*0|ejQ{6WU-`RsQDP8SD-uTRY#4An0S_75LPSOl^nqKYm4B3 z1@(VC`u{@9_+J19|1T3Hb#?De!fKa(%#W7J?QdQ_7ANlYoiV@LSYEn%hswTZ;vN|c zMfDI3!wA^(YN%gZcRf=A!gIpx%;6)FuKx9W`ND>KA5>u6QjR|HN^aLDb{07B5VnsM zt$sQe?}rbn4=19RTv9W=_Gc>RM($&XbFR0oo+9nN(4U%REO@7s`$BCQ%%V7rjPtgcf}TQ^iC2{KHh^Agvt5dW|Q} z&tzjxreHaiV(+ocxz5+nYp1~UR-N4(t!lxIXtviM`pH^wXB$#kS@^22S+DfABdl^? zK2vbD`9YGdhTAe|^I3yk2<2R;tWooEcepV-XKu}dm>SGweGIVKxNT@SE(iN%&b2HI zRQd2txf&BcyqodC-2gB>b;E>T@?fSMOumWGrDVdIWXT5eg%!qdGuY0D!C#tV)${5n zmA0otPPqX6;~f2y{Zbpn0)t+C#dowH9&nmEQ`bl%>dGWWT}!RfD-r-uaclFY3(^Jf zXyxcg#ju04gCxxcUEJv>_TKgM7*8Klz{bLZ{asFp$L6=<&`qp*tHqQG)=|&{oA^EW zc$KUkbo%OPM4@PDWzhga^P%nM#1^ToTZ6v>1j@lf$!P_ z(`}>j>)x*0_Nb9Mz)FTGKH)#I`+8ENK+L3+EXeIr%3MWxEibmqB z)PUOaO^QkHT$P`jn+wXPXJ(cZI{^Yf|4p(`D6Z^{OsevS{ZQV(5#BhpJac5^j?mgq`O75xBEw13RENMvs{G(iFA8x7u`v}u*- zVhXW}V7Uk!Xx(;}AiJcUKUJTuSKC0+%7J;QBY}&`-$j}}JQkrl4VlC!xm(6MVGzBv z!^!xzsEPLHQWYEF-4oBD&lC#**WgIzN4@xC&@sB~7Gm+%3ug_9QfdbX#*#kB!BYd* zGY{?xm=4gxqcfcbc4_&vB1BHjHE~Yzooh?B5}qZXh#2c5CO0cpRhk;%qmQHYy*Ew< zVCRnSuM6t4n7oYz7@UF#fwr!;_sJIDBh?e%e3zG8{5a54{gravmrHZ{M>9NA|1(!{ zfsW&N$zt>=1Ll2#ykz6O%yARL5M#u4T0=WSWU}m~zQ3y9{o=%42O}ul69Qo9d1~q=RmOa0u&37$7Ia%Q}29h#xy%1TKZrXxt6sW$?>3Z z#@tUM&;)}*+v{NUIT-cHOR&fi+qBAR+lsY@=5NEER^McZs|tr-d^tyv8TMZg@1Ils z0e=5L-qJYhdP-aza;&4)+&N`qE(<&5dYYo1^YYPXQmqkD>9iyV#DM~S5r8|PsWJ7f z%R+PV2&F=9i0y{iRQ6^cJ_WN(8y_q!pw6B{DS8n4TUO$;;AhkqdH06%NMHbSw!8?z zS`7tSkN2dy*9|y3-3Yl~Bh9wi>7>AnEyP5!TdK~euFRk9QyreepI|H8EkA?QY7kQB z6EnMKqA{Tm{4i`oqZO-j1J>}Vqb?JoNCm}r?r)NC+EP$x!r_}6{b^@P8Z!m(%I{6^ zlN@m2uzkhLb53N)N$`BI$>Mp~@lKuZeGIV6fOF(0hWo#X6k_BY_@jtn9cI%vpIJ1+ z$0eq(gd4emfaBaIStm)0^PKk~jG75#3;`-g^YAW@;@)hU2|p18xB}|=CaAl?$-}3| zzE)tyKD+mA%)564I1LA=W?X5{t#|m)A_~cs$W+R`3fb9RV0V}M2c9!l8Yx1_7OUJ* z3EGoIo4#(^Q?t7rbKt$;f9h5+$Tqox7x*J&W|p%?`x8r-+uIV5(SzIr;>irQ4OR)# zgc!Q&Og81;pMdKgx%e#hFA>9QF*zjE7O=$X44P8=eT~pysI2nstG+npuVGk+ zP4w(#0nW%cJ+5OWAAFH)Y&gRNurj!Bd%dSH{Ao=i4rW^AVI;sDfO<~aydmn}I~V%t z46ok1)F44M%~e=lRz;pd1piAPiXMDC>Op61c%~EH7{&!1Ob*JSQz!WSbmu!qGlH3m z4;8l@UwAU7XYxVj*@v{(YgyTRYRMd3#Q3B^Ps3F|VNb-XP4{9om)-*>;!30RPwm?Y zWBZVpo<3g_QELrtwW`z$Ir*7eRq6R4F!fD~eV7=fz6wudQ=X?bkY1_LJE*ctNVL8i z1fCpp-r|7QG2EbHcX5qSZ)hyX^oSU~RF8xr#b7I^J>^K*TY}E9_kHL*_#K?+Qos@7?vfc>iR|SS*yiW1>4XaPC zC4vBJrDRv|qCMA#YkcB!KQ9Ru^mspcf-MF+qKy%ydO ziyWwP2wXDa*Oxi5O+Y@VlUP!_cJW&Bo`$k(4x?|-80NG=QC;2w>pw44&S%&gaWfn~!ev#(V&(Se#~YH=aXp`5CEVat z&XWCu++m8Wwi@#{GM5vHt;-RPJvsIlZM%1QP-$c9 z(WuCNuh2bq0AMv5Tc~GfKQxv*Sy?!6_u~ImZukXhu}*h(Qe0-ObGQ9ns4wgCU>v7g zGkaFRBFHkOA%WuINAr&QVl8ph-Y1vD-NeLJcVDhaPtVtBMGzdH%`2~0`RJHEDP%Xz zt~-ggE4HTqVLf`73m5J_4Rt-=f*GNC)>Z;|$8$G%x$%QYj8YBr^co7vFBH6>-@Ghn z%za2_>`rV%oqUi6?DS)JiaHa7WQ?7rL2QLMoJ7(S>4<3-Co z#nxmxUb0oLi%RWMdhH!epeaj0>h~!F#nU&W7sKRo77|o%rBEcEx7c?Zhb~B`yDYee zJ`}@L%526LcI{aXG;VL&4Nfi?Zkxwe!l8~5)H8EOU2w&dZc#Q>EF(EnlI$E4K<=C? zrU|P_Sc(&|!Y}Z;?&eDe$uuA6+w*)BszG>0cRDa6vx8{L_VQ7#=Y}#nFK@|^w{KcI zb#BL^DQ)v2zDV0UT;by;>d(S=m?(+s%sl|+b=t4TA`}I`6O+<6uFtnWzlw}(4cFHz zAPAHOxBr%Y{!K>uc`z~R{C|HR{a@oH##kqD==Et|FN~ueyPX%XQxo!ZElvWtHpK;0 zpTO8Xf^&Tvv9LJuY8-0c$EK8mFPIwMmO3+Kr{_riS&%872mO(_Xw#l#V3``bkk^tx zX-gnH`9obt*n6(P%qx>P@y}x{Dmv1)3K3?k*X8ggnK?{}+@DiRP{-i%vlqedTzo-9 zDLlX1>pIPQLl7B3sk;bL<^G0i>r4{ev)o5qL;Wmc#o(AtJ~@c+9ShpU_0G=D^$uuw zIGnkuDZVgWkIMP?k<-XPGed%EX)fj-N-kdL`b~IM+v`nVqTU9lTG8MmbulVC#EpqG z^JH9Yj)@i8<43vCAp6geJyf6+LsVD{DQ^<>*L zunXiy`m=YvbYowLS3CBu@m>Auf7UeqUAgBRiOYx(UE_yiIYJ^wWUwz|6l`&6{pgyxp+4^1a&}k zZuIC5+nLut`lq>1-$xx}T5Z?Y#k^KJ5Ga?eWJ=1y3cq0Co0+z+WQ&-K-UMi=I*r zBXEkvt~Rc>H@%$cwM#td$@-wSp1dS$xMHYTI4DPoDnxfgWKSGg`DE;P_V7MSbA4nJ zH+^a)X}Vo!!T9>Td;m<6qdXb4YZ3)_;hh{I9=Fl;)nH#mUy!`C>~ z?NLAb9uIesF*bdt<<69xw8zp-ZD$;DwAoV03$};&NRU2I@h=pCVtY+rt+i1haUw*} z69Ir;t#0N@VBNgo9!&~c_hX*ha%A|9cd=O<&!kGqA$h`%Z}mM~Zf|83J3OJNkU|tT zS--n|;7`_8E;h)b**6xg&$GNg1XLtQzI14m;x2pc$qO;o^0h)?VzLi(3*MU0hY5NuN?K`LXqT(fr$nw%+%jfiDpwmNpmc^LCIU zYZkTypiD!xC8XTYxCO}9IO8r@QcoN47Ydc#v50t;NQ##|cIATARC~o8I9XY}?}I(Y zXoz7Y`EOyT%1u! zri^cD#dLb-9}vwiTMK#00i0%!gPxnW6-?7d2l91~&5lAh-PX$3KnjJv3Qmd&{H2%Z zxh)`F?I-zyW`dHm^^alWvER!Q0c;vZdi@8wTpzZ z5_rL0emtnR!KKK6df9x}LhDyher*lWw#lDe3Iq{9#XsVrXd@w8{x*#D)@m}ulni_( zlSyux%OpI&aM5%*)kKs8?fvzO0CAwzKM@%InbG-gOm+g};S1l4Xkke6e#`Y}dd=C& z6Vuu$rs)D*I%vZB3_s8P>mS;mgSKfu*l0wZpkVaSl8v7+cfCIp8cQVpxa&jsCi)@r z8ymNl`KLuclPJtL+ydwUI1*x(XXeGhyaM%H7)u^9ZE{GgqoSp#yg)JK_c5K#cN#J`8B@3^slW*R43!}`o=BWxpy{5a^$wo zt!xv|QI(rgO-2z>820Vw_Z%mk)w-6g^mF?YuMd|`RKIKHW$8j+nROl$XM#RGS(OZK zyt~kTVlY`$cyKU)1NZ8vHb!H6e9&uqi+*R>>$zWEn$RUp-dz*am3s9PA zmI1o#M{1Wd)mH=$5rUm(GRx=s1qAnoOxd$|A)nL67aqdinQB>JFQ_}wQ4wCa! zlJ#S$pqiz;8*ErqZ*<;?3*X#S?HNb+F*vh~auFvxXkkb{kb}Ia14J5$&D${FYr=Zx zIaTtm6>hh}76k_}x`*owTJgW@^zy;7Dvs_B0d3#kd?c|?g2duA*wG95t|m8|>#8@2}bFVm!$#vs#WB_Fezm(rb* z=nfPFeT?oCcIKoL+~luCjW_+Hsw$3nLS`<3+&d?}Gy+)!9h0Rpo|VJkoyCMTy23VA zcE96`T~mSpTyN%`BAsu3>>fc{lYmRWM*t)hdq=qz{oJnuMx=xAYJS^+_?8-uJY-bh(+ z)R+0dJd5Xe96$pTpYPU?S(V`v9ecP~KEp5gQQq-In*q%D{3KZn+TGp|3>@YKRkiHTrScTS1aUZ`!$uGAkk-`&f8g?McWDGR?E^`j-S zN|=`vY)nPxw3mT4_**Bx>o(@=m!GU%q?la&!pY}CBeOVhwP)7o%4&C(9CmB=mi(i5 zXw3J^TC0F+F-X?z!6;S-*FJfZB-z3mVdvV1D)52g$KFB|_x%F;P6oxs#>T$6Q}FqxXa6!h z{mX?riNC6!hE7%ah?KyWto03-8g3E|2hFV#@_UFK23@H*;{FfP-aDwtf87@iq9D?w zS3&8$_o^Z_(mSDu2nZn{JwPZTy%U;%fJ*ODLr1!R^d_Mhklqq%sNVe6opbLwGi%T6 zv-Y3K%sa{CP4a!7PaPD<;3+ZOys)h1!vkC_^tALfmR6|~M5CH3ymBmo?qyC{!O?FT zI#*m*9QYLu#i)GXR^OkA-%SC(N{``6#sA!j4X(u6T+y87*o*=d6%UGY4<>{wR;R1! zyP)F_Z7DPypoLySBf{Athy*DToLIXP>5Hp&trsR!VTovIKd5teBFIBE7f-)HTWpWl zsSCu!ENetO>sT2)s$DiYf7L_y2V2$7Xv9w22|YWq3ep98U$BlVt6!Ik{SZYZYxggdUZR^DDbI66DlYlffQ9)Po>b+$P(hgwcl{#XrLneL^|C77CwMk;$UTzK{u4L@i1)F_%8#pq2Uvjf!bsLxh#!#huc{tY zqa)Sk+PEwF{Jf4-3g$uc%aU-jg~pjMO{#{Gk=}6%_HQq^jAPXJA6o|-T>b?#_B`)k zS-xEy9X|4PUSP+HqVvvNy<>*z65n=I`wH9ZA~g#pwYhmp`n5Dm2j{u!Aq9TEiML$W zn%Kb4eF3X0Q6}kG^`*XNid+jldIA|TouUHk2Pg-lw_&wkj=o-Kh2Z%}u5HNdVCg+q zMTw;AZE1XuGo*5Tl+}Na(hfCMQ=PhG^Q3O~A-!uP9pCPj{VCi_No&wI2o#!}@yR2; zR#pzbW-8cfIcedywv>vSLh5=m*H|l+R#?rqrH|m>8+tJ%E+gD*PW8vEOR3TLeJ)v; zv8FV?bA7|X!Zqkxo;441NR7f~h*v6b()Yu&|75iPT+M&r-oA2V7?D14thk_<(u>AE zpBtFi@~6%5Eq9jo+=h^qDo5c(YsG7A4*I0anhvRe>*!x=BTMGjEB$>;>XhhmNgT287iG?c-DZn?!PT#iE$4YvS>&V4qIUg1n_^ARRmVw_B zQrW8Di<4$Cb?&K!K_JdRm-InDKdRt2P&HC1iD_7H+1r*`IF)XbetzrNz4(TLPN$>` zaxQv{UA(rvaLqRcdKByBjR^6Lb3e!p_}1}7F6nd-DR>H+r#o{k?(P1hEs)pEo3(~> zT5OEst;5kieIK>Rg+4ojg(NS5@iRR4ie0swZI1QL!mHitKmM{_9y{0u=5B*x)#U>s z?EziiC0A+9!$Yge2AO!%J`t>8Uk0P(W&-3|;K(_v@N{KfcwE)V-M!3>YIJp#J~KZQ z2+br)E$4`_eM=5W{Pw3tfYCOwXSBG^ z(6l|hb$jH3>2;I3OgD;F3hGzFBRkkspYNQIqO+@3kT$z5k3{D9WMT+cmEzq4iY=W@ z;Xhj%hMi_xazDL9W@cD4hnV*o8#=2vF;lwYeG|e@SuaBFE4@WHVei^jRvQ{SxvK(K^sKx~E@hOU>?{a*U}e5lW` zA$*w`xUNCD1CBHW(2+h2DNzjB()@9E7RUVvC5>wc!Dv=R{YXsd#1>SkWi_6JbHSfa z4$@z|c(1X;{1ES+c?f69St$A^<>Ih={!X;h-QzAIpifpn&!fJyCg|%pDWhRnY=nJ~ z()LAT2o52QZIfNacWqHBrx{)XG5r`PFg;Sau+P-E7xd1Q1aIiu03m?sKNE8N|3@ya zs%dP6YIgXRwj;&Qsbu?iSLJ-=qT#kd6EK|CaRWMo*pPj!HWQ*sin>-x`HJ=GDy9r4P zzF%C60qo)SoBKk00&Z(Z)fK;+bq_}9-7gpcp*w4;=;bu;QtL7M!tF+p_L-U9ilk?E zHCl7k?ZSu5LPZ|@lu0E87}?zI+)X$p`+G~qFG1_e-Mw74y6hi~FWs`VYai8A ztq(KfC8vx4d?|;SMcbw{Y6ck7eeFU%dvlyo<9&kZqP~1tfa3h6FBv6QpK&(kpEcc% zi0K$T9~ANtNou+K__}Y7;m2oEx&Mwg53Rg_KQNa|kCrSBuOIwr%EFPnmYIqQueSxh zPsomC%hPYtBkcRv&0+=L4%$#M*5N2hjT)(W7t=Tm#POzpDQYt(???%&b4h}9KTaW7Hu z0RZzCu+?t?*nqiVdaNfp>#V1GQn1d%9}hYF+JFupM&VShl*^pJRHi@Xg|B?YSC_hb z|HJ@#J8wQK*gIC(ECf4j9lF_<4AcC4@?fNBL8a1SzHYJkV>l&9TcB%+&6udkFNz@q z|1-7^BW(h=QqiiL>d%DuXZ{5|bM&hOS+&J)LyHVM{0@ zx(tJb0g1^+u1t`sok#gcXQE8R)Pu6}V()Z#?rdIjuF#X~erU8wjK*n0)+7LV=yced zeRP2KHOwIII`JvtHD?|J;q}Cgz>R`YC+-R6;@-~0Wf80@>I7q&a7&}&Sdbmo81T`% z=Ut6FJ_4GsSR1M)9{1+`qA8d3BXvAo{!_A2?mu!eqB^?9E>O%K zqEpY;E&2Gwd3Wkq;irRD)G&rdFMoj)LBQ3mn+Y2)4n>l6y+5*6t-Ce zei9MP&HYl?5IPHT2uMuk5G%8pAA-}4PQ$r!rHR(%s%?*phl3k-ok=mdCp(7bW8xO7 zkDD4aW*p;(6+~1{Dhz zJbk`fowU$GSl87*bp)&`Fg7LeX(a-jruS~<>)FcF29bM4n%t_9@^(o{Dr`W{C#O$U znE7I^;?kj|>jnvwyrbeioxnn$?8(cz3%A~%QqRKIE{#1eYm39np9>YUI}Mg<^9+gV zxRR>ztF|mz>_)U>sW5UI+;hV4S+h@WS?h=R)XMXldQS$H=^L$j*Ia{M9$bJ&%X`cV z{aVrl7IyvwMiBQO;18iO-LIOz=rHp1r)Uau-uUJDUDIQ1A|zHKQx>jGCJP%d3Gt-k zGvU)2V-Rl++Gy|gbqFS!Wo0-m3D$Ertoyyq=ik=szf@nR6(JBd;upj*`6&Xk6}3do zwgrbY98>Y<39SqHJC%X1{tcDq-_f|O#X>Cy<=ZrM(D$(c5rL$Qu=NpSwG9kO&9#bj zT51l_vzh@_TudN>9%3n0%Zau5sK@OQEz*oHh>L8Zg2qSQZVQmSa^FZMxGr}D5d02# zdqcN5a6fl;XTzze=}iRE?2ox^L(Ge#&6pR){B~}~JY)}QNTj8niou-F z;@urG5Ve(_mZgr=x&n-|6#6NG;-<_^$VN8h-2$&wNXlT$b2^9pX}l3=%9#U(pwvx) zHb`=EL(lPw(Pmp%z@5mOKVainzsUZhUwVzJUP+a24TGJzNnEjx{s&WVS<6L!t6;S{ zaaB~Z7YYj+zZ9Hu&LZhxnd1`k+mTq9c)NAMy>4#8 z@$#W)eTW!tBDh#)5BI#UIhq~U{-~3b@@j1FQ{KQRMW22G69Z$aamB^jK20U$&8I?P zsWso(O{d?iv8?nkf?6o|8W=j)W19D>`HJSc!+Wqf6H*v%#c0ag<`;7V*FzgpGqz^QUD|X zyoLXI;r#E;IIQw8orW1mkR)iu>5R4;m{?N=NY^GEH-GFc&GpLOfFoR!XX4>EP}*^( zkAPB;J*4F}!eevOvau0yxb8N6$yG7_e=1=vJb$}&>qZx&$h&hu0~XVwQlA>i7Z6fJhA7=xG6A@O}oF;Mj z5HxHH?RZkd_{lo(Ppw9{OL4|exFiArmrN?7iSGvZk5+$$IZkzOEnf4Z(^g_YJ>9Fy z48OpL41{MF^TS^s>D1syY69yG_bU$=r9G^P>t*FT*ukEaiEXQ4^~>@Llm`aNLI*yo%i3;OnU1w zLhH<$(N(SZ+EwPx;1cT`4zs8&M|#U*X1Aw=kKXT)?<@RXd}0AW)=x<+kO_EQfnmX8 zJZZ{FpNS>@KM3WXppEKe!o`2XZ%iM+3P%t;02Eg2 z%x2MMD^-`sBuq{d32{2U&|tgkmNx(6K~%GkEXwFqL60yTy1OcID=@P;AyC=CHCa`~ zs-E7nH|3WoAx@icBuh(KBi07Wq*Y5@=*)f3$jp#xC+WnWHCbs$F63|E?&G{YKVOtJ zm9JgAB$Ysp5}lIlj7M}5E10yTI5U!EdB^U8YZzmB;2M?|Kpsc)d|+mHU&l|0`wJ!x zWLq6x;*7?kWB2YIs#{ItxtjAmZ9I1y2~Bg zPQhl_L`>1-sKzQfIJW+at#`qS4zf*rz?Vdr!q|!3$mH0XInrxU$*>zCkefCZqYtt9 zavT|t3ws8>z$N95QH}XYRZC_@Xmi<6nlC;qJ99AT=Mw#Zu zDl&@35(Nmy1XiWBgBGT6anZ?LxAYFzrq3Km<;*|}d2mAyUqti$@}V(xuC;rW8x^DE zpqsDOr*@2aeK$hg(~7xQ!4I~4O-&oSmu*B9q7TzK7R~ZR5wPDL_6$qMr!w)=v)-wu zZ&eZJqr+%rn=Yt0GrNAzdTpifX760Q4EM_X_-3|lUCz~+!or$w&n_u{4+|q^Iq__b ztoT8nyWmalh#-oGQNF+&72fMXA;P3r^w4%OeIOfWiP%d}i|8 zV3gxH;4(OrQKWV5WH@rV${}l;tyR+warHc^%6#c%G?fbe0`M_k#VgHdlCnN!6I7dA z&pNtp*3=bwxV>(NrRuLh7D4)DA|maLq8Oyn#ti}F0B z3eMAgd@lWJDY)i|3ryUj_a8~Cy)oY>Gi!Y5No1FN{>(+aB}mU(YL@lENxTGBeN}O` zvv4{N z&}Fez8q(XW{^zB#Prvd$pu+{`79h}@eOHehfUIPT&a{^%rSeV=vfdo2Tj|4);;;<2 zkE_y0zuO+r`5n9JFYo~$5_giq)G-~;6mIz@il-gkGy)f7GxnYjp^z%#&p6U23To8u zR8ee@+z|=Vd_|_-ZNnVIzTL+XCRaU4undIlF(&vqTpZz{z!aea{WNV6VDbR znnw5ofS=nw4Mx2$NYo0yM~MxAs81i75I%g>7{8XdZ%7i3`~#;{xCgsN4ck5g0H6*3 z`a{E&2kItX^E#ooVbbN!mr@xe>Sco@6hH+Lp#K|+v{wZY$wyt{q3=q>zXR|WP7;~0 zK=iPcD}f&;ry+;?C1u~TY++xZ*YGrwqKj*#rAuDczO-(ED ziMZ66)q`lKxc~F0|G$2Ox)r?^ug8}Ej;$sIvOR;w3AqT-GpoM)ye4x?NzA+3LlyV_ zDQg}JCwjCMMe4BGbIU&EP}9)>sa1VEFp+vl3`kXwc}Xlmb0zVpJ&pUh`hqZKk+*@g@})t10}Ix>hj8>&R%wSdbLrSxLz z*JbEE8CNGc{j#0n$|?8tbt`Ib59E0eVza8vca4A6Pe?(#B$K1{%JWBEt;RY115O7^ zaT#M(5}oH?@w!VMd4#5DpC~ZOWTjH)6Pq7;k#dgcxMxvGo zNKJmn1A8~M;C})7MlNqk(;+o*|CTTO@TaF}O!GYwq?K&i0%`AHxyu4KAvTTA*jO4U(kXBnafI9 z4`O=JQ7apE^o#3RG)vp7PkfdPF;?oo0Q-IQ9#cwdtf@XC_kN{yz_9f3M+1(-F%$WyyIG^?f#kKhBE80lf zmAbh;4eqxMq?EIRCcuwb<_%09F|+42^T3>hUcSYb(M|E~W{=8#;#j6pM{Y-*m9vvz zwXycM|_Fm~s=dJer>fTfGa8|+!1yT&bc~36i^0MsI8lrXL^P8pwUb}QI z7O(qk$A93mXF|p*VS);vpDIfIz|`?>yBuavyV-nSU`El-Rl}vt)NwEs?AZu3GMslq zL6MM|)RE8o4X!qupwOPdqcNYM+&Q}?gWq`@xWzvffwR7!<{0W?9K#jNR>)5wK)sp_ z?a6&%oPGR7vkK|{iMHtS%ZObu{>T8&za|@hMTA4BMVqxzUO^!msoxFC|j^XALr~)gYR@zH@uJWlk zkXMR#o z#Iln6LG~eS{mfRvd5;nRYlvZ6F`mOUWYM}&X_qpXTy8CbfC6s(Aipok?7F-$=6x)a z<>5d2{HaBa-1Rr|IXTxa&y-Z8e$)xXl;vmYrSU2@r)XAf?{jWstA&s4ofj{HDRu~Z z#VVUR!Ts+A&%{1>b9R?$u<{sXzpEfnpYPfUvKr%AKh>RI=w11BPCM%>CsgQj4)k;t z${P;lHY*0Sxw*+{b=Xg@+3G#-Shx2!d`hYth6|>w2Umj3CIz$POEN%BF~pBFD_5rv z4&ESWkCJNpeK|zGv4G=b+%kQMc<|FO5_uE~(ti>k?PU1de;TVW+g>y5G_LsPxRZu)bsbqUraPnBzyA5}^VYtf}u|b>zGEsq(sR6u@$vwm3ZN(k) z&qCC3O+2X}Ukp>ku+&w7srr0NhV3P2!NoOx5P`#2eqmy=FOmx!6U1mbeUC&(fAio^ zu4Ba=Q8%VN9?&U0^z3JW>w5Uli#+Ex1fpSjq7V^o=g0Z6BY(s1tr-2g-tZrUU#@9t z<|H}^%$;u)W_)-3+k9%|MtE5))E^AowFMotmSyJnM{_56Q0ozXp0}}ZmYP_ax8xWf zie(eaE&DE_G=G=1KZN^VyVL*mVgA1^z(1l|3-0NB2=zQm!q9bhlC}3b8qK}5fYiGV z#Xq`YAE3t%ZGuZGwaRYWq&UcErFt@;oKDkYuR%ePsQE^MN)lwzgS4CNw{67^8LJsT zZtT$+5hu8)FDOU@ou1lMH&OBG+lM&H55QsjXd&}1atb;9OoXN%}RCO9CpGpXCJewi%c$s5goy0CEz#IXmKJ~+KVGKv*|mHzGnu|u(vTR7EpuDngn>)vI! zRzy8g*6En$$a$5pJlNI`>Q-4KT2p0hGb8%M^%o#!oZ!~_tpNb5#-#K~3l^!OQmG19 zzy+^YUpS${-z=Xw4yPN547?*&Q$aAj4$hqoQHc0QQ+;Q-y+j9RsB%K(F++z|22ysv zz3pHaKLJOr0;>_4lpWhvYa#<190Ac8!z6lpi$4dxkD_PXEmOBl-etGLeRLKO5U;-g zLGsx)kuec-%HGvu%a&YrVlo>iSye6fjh47qMHj5%+6`}z|I}p)e-Dn$upzO!u)%lVpJywN!#i&O#(`ZTh)yG+#WvYZ5HEQOCIQH642%ytzyfETkp&u z&*#)qCaMM|p#!}aT(%KCzs2I1-wr{Hv)79XR)43-%Xy?)q=JHJX5dcFzSj7dzzW1N zcMCSTWLwTBjqZb5>z5_aFQ=8)Ee)wmPJ>VY=gXJLe&*Iv&VYA6SPBq;DfPMWl|?4 ztBvX+kd<;QWM5(az%_i>QlM~MbN|5NewOM(Rv}GFuDFeN?M}OPo1aYCa!w)J=imj< zEeY0ljj&&r5ZcpUY>2L(McQXXmdP*InExN5%AiprPiwQV15YJjS&lq9I7)z9W5GjM)q>c=@^)57p-Xz9WLcm>bNbX zn0OdqJ5pKiN$OHL3A=rMS|(}K3=uZrWoTpsZy`)*%eW%cQ7wIN)$1ZQnXr&VIDe-LFv7 zuXJH)u(WdesE;!^SG(a)L-pk#kei|Wy;1Dw+KX{1*Z{}QJs^tHq1?NI}Ff8?bV zS4v~6&Fq}kTr<+yS{{o)Ra1bVE;c)tHB(izLzlRa`ds;NuXJ7cb03h&Q-JIGhL}aP`h<_qG{pMp?)pVl+H&1WA37LiIpto+uJx1|C6PeeJCKNhp)!v=bf0|$f zY;9|}sNfhe@O;72YE^Y$esSCBy2X61DaO|t6TFXyYJ%ZcT5ZeOCzJ^Y%`zzx0MEk@ zgzSN8po}a9sTsB8bje?Es;fSM^39EAZ=9$)Xxk;}l%xp##0>x*=W#UBGL z3U>K%A*A$2!$1!{om;2DqDgRC{`WSbD;}(!@vPTwH3f7*FXeel-PEClOoh^j$6%mL z=$KFhik(t+P1Z9G0yt!qRr&B25O9S=B!c+muMZOEk97-zukihX?sc~!gylCPg-tH} z-YiXNzHLEF+{k-7UMX8$b2g&6LzI}ndMYK)+yaVkBD(1hEqs?B;{s~a6%T&P7^n4U z6jN-*1sd~7)FLfEI_nHKRNbCsU*x@Cs}l%jvNPe9`^i?wby~VFYx^gacSuyX-ngZ1 zgMXh%Z|ZAkK*?{>#b=L(G~Il0QWMMYZdNfuuRjBiQHeY~HC0&6A>IbZ`Gu2~Yu(h| z$?yl0#X8RJIz##!niqwf4CWUF*D=OwgcYzyH@PqnM(&n)>G|xYCVET0s3Tdbeu$hO zV0%n8~b){{SJ0AGRYh*I(R%d(BaiRH^s?)GPw_~?`^`VfLYG$`bM0?SsY(mzrKIe(t!8@rJ zz5iOnI48`Rn(p<_ccO4zj;ky{;6Fgie*l5t5EMLhvpESHa&xKtYUf#h@3Kz}2b*R| ztlB?u4Zi;bL(3nA1+m|JyQaasgx0-G(VXX0f&F-;#x|Y?{Q89;$eaC4o4X_#LIRmt7v?s>IhEk;py3wQK z=jPQaQ$5=ak}rlcAn#9dkqYqr!1Pc73N>A|0RjK^Ua>G?s8%z2wfTDoe=jhpO}f5L z-|#E}{c1lEb}=XYG)9^KV?2$HLaQd^7WS?L&Y8&^;&+?<^+N98J+qu(f1zXH3qc_X z>`9WVV>Gd@qa$=eYrZYQ7B2zS*3?$qlUcluLfK!_o1M5I$7A;Y|?p^ru7vS}fwuekZi$whXbrTk_4Tv|E=$M_2Qyj&Au@e`jNw0 z6Uenu3_-Hjl)A!fU5oh==XB#YD-|})yOV6L+L5009r{P<#zWO35N#UsGFN!YIz*~P zs@lw|aiTJtbs4D?RfxcaL?^~4KlZoJhG}qJ-7a2h0;(F_m#zGb@V%<#XraRwZHcUC)4ddoWA8G{ILw$ZO2Wwz z?fS*t4T9GKU%i)B1u_T)zn2hZPUf?!w;#(4+1cTqXKVq^512Ud2D;Yj$5+3BU!|Yl z=yd)b+e2Nc?E2`#UZR)tKW{fGaZj8&PM+-^fA?CScD%Jn3h)jR)$g znwGKxvc|MN^Sjs4>RU7*wrsKAsQD)5*RTuay19A2?=kHQhSw{$HR^4D3);-lY`k+N#6Q9PV~0ZQf0xUw5x21y9@ z_R)ONA>dVa1C8Qha&61a?qF}hNa_xh=|b(v2(RxHkXVaL0OX1Na;{Locp zA-HZlLlpeLZRvKeGh^Z=ujyR;{y?Hfro(i`HIMDr_7>1=LA`OtIqGZql7+u>qHnd! z_4kCgkDKCGo5DHOaYZg)KJf0`SA2Hz`GGEKg?!lWCZ8+3SaIbe=P`1IB)jXb)Slzx zvQIen4JYyv!>M^z!X#N0IVfx8R(QDowsg-bOcNiC)SE z&&4aYr0OJ*dZ{11ZaPwjFg82ODWP1ljSKThp7M~I5@>aAqIvTv5oeWLf|4CRpKRkt zHJ|>HR5a-y8fD_KP~L0hCqiD1I3{oOs8jd9doxsH8tv2icx5oET24GPj5#$Yr^Ro# zu(O(dOAJ;{nrZ89%)iR6X7sg?B>?F^-^EjOkuznY{r1q_Pw->M9bMGE^z$hNWt@cz zgw!mK{oz{07Mm^e0HjkZa4*|V9g@lp3-^ zcdDYsb%}pOvjdL57YB96a-cfwp3>%{Hxowc4Y%lSIj006eG4jXo)Sp^g-6322_?x3 zFDONlIws@71{Iu{J^>u(cdWT0dkwHb!@Y80hE=WZ&~c(u65ljif2mY z&KDX7gB_8L5c%M{Fh5MrOkaCd4JzQqTHoWH!k+)+U$|Ce#@4kCl8IkLNddM=r zqx*_zlN#^hbZsRHN7W}+DmAa>XdZBIM7=V2A+>w+Yf47{`?;bfcNSoy1iu&?jA81t zA@%-o+DYO}PC=q@<-^hA5po00dS-T_9OLO5H=$}&y%PRwAV}9%HO-V^QrNqqG5LWTKG zAt&{^U~(a!VYPuoY59;gNBVv{rGmT~0+Z3V!mwl7NM&9wH$XF5ZpZ%Yu4q9Be}Bas zDI}0OeQV6cr}C$=<8dS8D9NctO+Uup>My`%7GaV13@ZG+gAq-eBb9@yx5v(d*KXynhttK56 z%>rbbtmNgbT(0Mm6JLH%QJD~yyu#Qzpj8{CbDa)2DSF%<@H%lOk3ER_T%+_M?&LH1 zR~Rws*IxbA7%`TOI98T)qIO0&Xv$M|wzyWB=d63_4dSg@A}wzQ+&qy2+(2xKi!x$~7gn?P$&Y{p~Mc%;Hnf zMIR|vv?%!XH7i;PZt7Hr-pD2?uDts&cXZ(gRwk@M4scIPs;%w?iCpd{bv+Iu zzV~qlW{ET#I-Ucsw%1C9msN1x58SM|o${=n5#6XJP_*bL;l#WvTJFV-C7z+F9-IOl z!4&IuVL7oqH>*U5Jw$iC{)9^=%;lY0%jGs~R5is*o<6QMa-mqV3M`*Wed_=PDcVZj zz~+9BMSii7_zlAhDQ&QmOJ!{#CyJNFOmz#sUXS|zUWr#wp*j144p`Nm%UL5Q?yXh# zSDUEZj`QgW`f#=Al1j3l#1iz1KTo*V$N;JUy!nIc8jC8I@vaflRid zq{WYJ;*Be|m4zF$x1nAWxuw=$(2+4gv+R~`cd+I#v02`7=|q^AKo(XOVV+P()}O@1 zki<-hclUi<+#dk+Cav6Rhm{2O#ItPWEi3hY2e$?cQX&$uaS0wk&o(rk(WZ+tA%`DO zxWGDvBv`D!PvE8kYw|c7CIOgi5pIJdqHd`?j2CKH!Fy{uRzFrAT*cw<;a__XP(f$ z*L3$^VEQsYL@5RHI~`f-@Hn;zE5Af(HiHxd;^^rng1vI~BS+--^pi8)osle%02BTOZGRPgd z7HKy91#Z%q1~7Hfr&NQ6E|d@Q_tQv)kY)F@boL69Y)vGR;aXvLI-wLK(GkXwRqdndQ1fmAtI6?m5sqzBe<;IL6X_U@OhkS#_=v`6mylG3kn7C_zg>BR&3-zipp9~S zq!jMBrYU*j*rSH3s91w{_ac!Xix7VYgCq9THwlOit4t2K*{vDi=qWBj;+o-Q8#1{Ib z#hfWze&$K0R*!Z`7kAnc%vv!L8wj*lth%YQ>izccXY#0O+eM1V zL4sAQXS0-%U7$6NF(g+a)rACluaPrk-*B7UPQcCge^0+|Mzncaj!s&uleuIEOD<)jxWJIgHbZ*PbbQ`CpEXC^E;^bQ0v>bI|wjMsU ziWP6sKCaVW7j?HZZV~H&%0I_XnjL4jquJm+M$NgitDs-O6JO)wMAh$d5T^6KoNUx% zuZZVktJOXv#Cn=y5@V@)EOfFIr1`8Ymr6nM(699oD`VlDW~u83k6WHWWK8YT9J757 zio-q=P6j=|I-$t%zIXoem;AbXKaLaznc5e;&;Eu>Px|AU@e5TB6#KK3xN$-nAHuj! zrzl96`b8&FT%yGw{x4vE+v$S)JnyRkjtvPS zC{-*@sL0>d3f=HIEtSFXmrCKC$n-NHF5hxMoBVP(hjULa*ss_=jJ$U+vA3UiA5SD}6WW+x`;T@|rxLc_bUotfaCiW1;dMiyP*>kM3M75QJl z>ddvlOb4azRV86>=UWVSxOn%A^}68K?Gb~_Ix&Pq;<%#sT)LY`8Uc2!y`RcofNSF5 zPFr5G?D@4l0}adLgoZ7TiC$ml*?i-_fEfPy!On(z*ZpJt!I76^(E{~{j8M{51ZE(N z6TC!gDsQl@(K{>7f_eGD=?~;peDVj7gN*rX99VC%LNYNA+R2UUJUxcWEA`mVIIm|` zu7~y(GM2j0o$(D^O)r1k_B^cK2%yvzKb+f9fXLpFcO@!;~;#|isS{<)CV;kG}B zq;*1pt_)gxNgIa^U6n+T$i98Dh@bfSU~T0s&i^d=p98r6?!EmB4Q8i9NuhLIPaJChG$ zo*_QTb<+NcRnpkIDtaN`w4<@EuAxDOoM0K6{e4+vuA!4c6QxTj6p4}7KzlWA>f}^A zHn-M)Gc4<$w3Jiv(cbp$b@XztjnI#;f8~BFaMKy|MAz1jJRBzd*?IP#nga#x;vKpc zc@;;3T;b0R@qhFKIWqJ$Ton)wKsze-^th0n=vEr~V;Zk@jA=xNh|LnrxdRyMcN!2t z3Sj~NFrbOV`PH#a;a@%uHgZp~A7#dcuZd`E2|bR{7&Q(!Wh|8>)K>PcM{Xh8b6U$= zeOeDpI;UZN<=|zu51>h}cA+2Jt=sP1W|y;Q0bGb4c?c@mh2y& zN5LiIYRO+sDv4Y_!-5JexLOOLrk1t188W(Ih44pnTN#$BJo=4u2DV1AB~|MuP`OP&|eSLRsgfN^WNRoaaI6TS_dionDKkH3iV{ z8w{w-TkSItdAmreac&^ z8?<8`1BcbTgl-Odreqz1ar$Zp?p=PYF{8mz`jB;^ek z0ykzkThjiTql7S-GJX0B@TT)P@C>&ahKupw_jd>s_b!1}6%k?efeybdmNcD$ZHej@ zoFk;gI6_gc1M8kimi-u7Pd93!*fTasvmX`paWiy=`Zv7Zq`xZno$&A6IT&;v(?%2a z#4C5X>jrwAonOwJ_Khsf9D)3Js^9&X;-EG@s$z_pxcMoE^kRM1h z>+)jbVgFGObZ8s^FFBjo!J- z5q14OwX;dS;TLK9o8V6Id7*2D-&Z%lD~GG@EXDpWn}P$#^_u97V-q65oJ8+)EtS4xp!)>H%Nrgp0yWI^KLkm$r}d?ep} z0MdpCYV6A1YD2Qk25lgm$xk&`Zx_zx3O{((|6+tXks;-f+Q;CX#%J=pAjNATtQD$Z zQt(6ZTsg;6?IW# z-D7vmpt?`nn$Zy%-X#UY)v*ivLi$iihS$d6qANR1Pnv;rN-=8{wlV>~2Vb7nt7LDa zI1*i{63e?$ZTSwCbxYF!Kka>YSd;s@We^2XkRrXRgx;igVxbr!ARxUd9YU3sP!;K& z&;*1?moB}70s-klC=xnIClGp+vM2lAxpVfJIk!A#?#!Kip81my9=`8a-}hbXT}x;e zXw%@ARBU1_8ez-pv|C<;5ZZ6Dy|qi$sd^Sc4*q@;PrBKck2g_AkNybaA5$CwCdtdE z42U`msDmxF_Q+h|Yj0R+iP%uB3~pek*9{2y*U>(fk2YSM1X=1}c^wC^(TU}i1cq|K zR{e;x$ISyo_ja(D;={%GkL6oqp)ffwI`n9^J~3Owfavr6MzG9y;dt(pYS!o~fpK^a z`3R$DL56VLmei)$3wK#Y*RmO3KBU>Mr@7+n-{3?hO#LuU*|h!{yN_+7*px9MmA-B! zEXrbtJ>%3we7g}N8>m#kN}$2H$GC(0J(COy^n$2g?dEX*Ts*0PLJUusk4D1&CJpfK z|M2U+MYIBFG4_@#4J_~38GY8(Pmh7~x_xzP>33tC9~iEIseRqwzXxalpx^%03+3-7 zVf-G$vr6}HP{E?R<|&*ZT@Jt(W~ynwl2r^hrCQTkMd@4>IqyQc??1J{4aB^ryt%J3 zoIlU@317NmLAx*~mAP)j_1+!zYD#XPk0x54HzZIGTf3X6L4ag#elDA-xyK_c&OlDb zqwjkJcA1$Lk@9Pm?ZRhs4RXHjl4M)uQ{=p^W~8Z=Z&?=vtg|O*xCK$pES6 z{lihdu~AB;esFJFGvQ8JcC(DZ_2gIsPlVkm!quB6=G7u@H#k+C&ecK4WRteN|Gb>eTkHooL&t1MY0~xvWd)>*8P9mqG(MP@r0gY+jssk)3sty-#!O zc=g6%@4DdVW+Fc|%ycKFzlQeEYF>x-mF-m(xmz)czIDZN6)f9y69f;Ep-VO`4w-&8 zS(leuB4PJ-rD7dS=0Y`X3-h2&JvaKdmmL~6M)Pn*OCjy|+gkVcVl2a!Dt3!zWbWA? z^DYcVtpXBcQaim2xuZQ?AJ&T=D2FyT>H643Vpp&G$vCu^`uLeiPdIpHPuUfnKi=mG z?-B_=m5Z%4xc}Ih#`wX>r}FO9X%>1*gjl#?_#THxK)0n9?F__2MmGy`z`av}9rX!R zi>vEEjl_}&P*|ENVH82Shr-U5&k`}nny<8Mi|UgNQfR5^G;tM9)h>?KIHs8Q*`=Du zsmI3S#baPTbK^td$fD80@g(E9Kz-MFe}<*5B`pdgd(D%I$r80+LM1bu(Mi=Z-#nEy zsw%*iAEoJ?lE7S5F-3ec>GK%>7MA3`f7%R`*YMlLcxZRKByNF#vM=Q@$h8p!Lmin* zzZVXk4R= zv->RFe&?ml(uHh6hP<q%ao=iGirO*KJ~yYJ4JnwJ=2r}CfsUUVZz#MVAfyV=72k%gJvzL_3N|;Tew5?v zX7`!e!e~Xl_F99-3H-e2J}5N5l7j%`+mvdt*T=Vr;MzM*wrkEtM)7=QzX6D%m*kLi zdRTk7K_RlaW1Aq;5xfhbxOpP5v6ZGu50#Tw0*#vz~v){(&-jO^n}EiO~)H0LG(eFzz*lKK~idzz*MW2USUBXdD)e-Dv zP;=C*rBQ#>JiZ!aPkGDG!8Zm(wO1olF!yoPi!1eT$L)(fXOo>>lW-|>^T55U?w^L8 zO+0PH&^k!@n4~)7IfWm=fu``gsWHLHhVLQxd2F5f)(}{xJ~O)6pstby)gnID&Vna2 z0Kzm!%$w`aB)jKrHwJYcnb8|OS)*3J8i6Pwqm>zEeC3;UOWttnZ&p|T?hlEFJM2Zs z@NWsw#f>@+3cQ8ZnM#)I z3))Rz;U*kr)1TUTpPhrY7h2qxC;05UbeKq)wL#q{zAGIwPq|j2?v)ACMav#Wy(SFz zXA3fDAPL@`BlH+6V+gh@-|iWnuvUBGxhV;464aKWDG8pyc78aE4!x_M0$>mS&rE5E zxieT`*~`n%qj-~BT0ZIN5d#sv0QoUzF7M}e`4P{8TYQ1dNMsNPXz_#Z#07RF?2;0r zV#QY0Ak}Mjri_5^r`Z_Yi3!n8zA=+!SZsUqo4mi21L~EI=O=j)0=H4+S4ZPz=^`la zg6UhFd{pLIYDtV)Sw{y~`FZX{bKh2c#t{eR_6jJppow5tNaZCYVGdq5Rdb|~DNF+} zvEOfD`uglc4P)U%Ey*bIOA5Sd;* zJ5V)<9g^XcEs8w}9ByN>NOhkYGFIQ(+D;cJ-9T5_ElusrteEjUAq-q-r%zsoj7oz))F<-K~qqMUVD&f8BNVw$v7Zr##>C+&M# zjghpsv4+@p+H-Wf~st(@`XZdl*&T;pS^%2t@>tkA?!^+TevocuAic`n*uk0MCtDl$z z=QFuv!Nf;j*53%t6I=H>1scK%e>^#$F#(hoo{#3mK6wZ(Om1Iy9q#?sT#?(XndM%r zSTHd*Q+P;G#%=W8m;aXG*)4~3B*!a9&(Z&S&ntR zqf0_D@xeAE1Z1n*G=O;6vNMv$OZ9t5x6mEHsW){_QMQpG_-w!nOm`{+tcLNMRM$`1EYE1xc%K&k6iM37-4P`L5wP=v*cZ*g1HbHXrr0S* zEuTDJV0F5*kLo8lfj#iYaR45>xm;Q>&7WT+$)U@Ej{py40oOBezpicu#4ANKLu*%K92KLRx44s$@NXzEhAwlR>k5gBGj7ywHx9*^*Xsg?(4&*W$ zj1is(gDb|sNXn_T@RJR~%H(heB=Fi9+kurKb)fJ|8k}u>h55!6lTr;U&!Yc z^LyHxzOfiKO#X*#O!-C4Qb(7Nxi@uI5}dNlF`T~TND$TN7dpR_UCV0b*1wnnt~1(5{N zBC@6;%i$v|T6esT?XK1M(YVf7`AHEo6Njhm!PYSyS^~~-ob@toyz_dCP6QnpH2IKV0*KMMPwTZP@n&E>5Ryq+C zdujYqB{iZlH@aVY%2IM)WJqMmVvmJhICvP%VMJ>TFXy~~Ze_tz*3@RbZ2k3LovRO3 zZ}Rsx+z>TFM@2cC7zBXI&xc!W946dDX4}4gEa34o(NB#|m3IDk)V}92yZt!fpMo_d zIKH?bJ`73axyQVTah^5SzOgmBMZ&8zcKGBF1w^;pd}4OluPpVoTvXh~2E!>X>?|8- zJKmP0qvz`9S6_c>vQSW2Up~!N88u~qFIb!rGWndr5Gu*HCs-kb>Zy@LwPrYtRGHqP zUo*c^-Ktq7%9~TwA1b4oZ^~7}&Om2y%~*0nUR|zeW{(TcQ8D8FvH~V`VHHfM3d_Ag zSCnTva5v3wuLtCUt%-+j!?P{F(h&{#=P@!p>+WnVy1uczgFZta1yHI<^oh#qu_|$w z>J*u?;*!nK29Dak0_sA>kh}wj^dROa*h-gFyYmrMK-3AB1D$QW;JsA6NOnj_ z1msnR?Q?Ez&o2H)&AVg1HT^NGEcrXx@#p}Jk>HHI2+4)(-}~TKbvE@UOQFz@1F&i{ z^MTv6iSs~*tGqW-h}Ph+dk@NP+0t?9D}3`YS8Xig@~1OUyG=?~Di4;}8H1`-6c@G> zd5rQ8yZzma&VRLp`*(-k|7+ibOeKfE_SpFqmpkK5c85LLQzwY0%H9n`98Ucwl1$shY8Us0_GP*CJLnA|cxRb?Y9Sk^chw4rpy7ZR7p?&KCF)KlVg6e!580zE!+<%SV68 zb_<%{aHcWlC<+#YFs8XC1#$Lg+BCkW9|p?$`%g$*(qgUhmb+n3J-Z=_UB+Hh zc${NqC_LUI3O;cNp&9@RfBpK@(i+x9YiC-W7$$qwnsy9P^S#-NN8PbN+JVP&k`SRN zNH4my6~oj}Zg`L}bbt+{6aBURlhj5%&XGetS^TNW#CYh7tgFS$#?B2l85se}td$Z0Tz0uJ%3O-ACLg4SPU(~&DGxO9}B$_jb z0q@UFFFO!2?wq!HH||B=hxE4XUPA9;)rwu{nfU3-_DR};-62SIq+^A1sZ5xll}Iq) zG--*__?AiFSUxYVKXq5DHux0i_PPdZ-wN+n>JQo{mU!kU`j(=TSHxM4ZM45>mytY9jErfmaUaiX%LsqD<@D<$fa&Nx zSNHb{s$t$WyoL>FiJ!U%SmjrFi@Z|!4=ofjgk6TvZC8BGx8lr)UDeU38@uAXcW?M= zm6DQ;QkL2yqU8>*-WLL^6K4Edb4azd_#>WBScAX{>s9xkHjv6XhW&@X0R+?3@QP^r z<Rt5L~+;$J4aZJN`iGz3}Y0EgaZ+M*XNrD$b4a9$ExBJ(v{2QB{O9EDoB@&$8 zzX8g%7(mOc4Po~QO7H3=Su&?{?NI{W3pU$zBa`vdD~np;mqf5D3ti0iQR{k5GfGt- zL%PgnUmT6xljwVH-o>*ge*0ICUfN^9E`HI8-36Zu`}o7X_{IV1UfGGK!zHWXU7DbQ zYt_fTP4EV1LEl(kHPj#Hmo(KMKC#Q7j&5b4TT4#B*IAFrzja^F+0$ww$> zyQ~{hW*Dk|_~`vI%h;`)RMT;@6r}34D4KGxqo-g?Z(7IKr!Jzw#o&32R&CA-?@AtD z!70Vkmpi7SQI1vl5XN{X{wLwDNM2N~UKRY1z?g9B+H=bsI>wzC=wxwZDgT7oD)&sl zjF0P{3@HBe)s~$y-oLLqtdn4LB{ zkH-NFoYh5VjO2Q|63l-!*E`L*aL68!aBs}&dq_YoJ`Ar!6=DYGaQSp&=+$gjhU zQn9UD9?FonK#R^xN5BylK~No0QuoojyUN}EbpfN)d8mP_$lSM5Zh(8ahBF64ORD0t zq2zEMoZTm=cfy60u~924pBlrpJstlAq5O8}fk0RD(Z0;DCK5hOs@$#A7JeihlW$3+ z2v~f4M`Y(1!s4u@)dXMDn*r@clsk{=4fSuloAtnxEi}>MP zR{E?UBA&~>Sa`_vNNjeBEy=*Jthu)MxrHN*dtjOwhhEJVT>KKnQFApd$k{d2d->_Q ztDD{dHZ(LiV{B{k3%AQ_fK%O^uRDmQYSPE!K ztIQ%uXY4&?y%9lvA4Lmh_lUe_dP~DKUFZFC_hh|wts>Y(!LLdQxIbN7*Hnr*+n~)r zI10nB<>-}$D}e(S1W#IldsRFrP_(g6csoT0N{FR%Xaz(;&?R;Ep{QM!lJo2fdv~P> zMwIsI{YwaqDq4#rE>@6ZGKU=|S>BOyOpqv%u?iKiWmT;f)CekB=H$-(QPEarp4jX- zG=0$KvV-tZ8{nue!s;&n2B1BEgm=erYShKeba~(WI0JE40=Bf)hfS_Qo_xRf-fjQs zZ3FP#uh;5R13%K|9Pv>yjHM4fM5GYTA_5Ml94&0!ahX@^FS= zqGNygjc@HIe5S*7poOWI2?cOZy8MB{Y;vmtv2 zgL@O@n!%Wle9)8JJ{kUd{I)ij{&Tw*fGQkhB^-r}Y(9zqxNUy57TwCV%v;CjY;9K? zwmd#FK;T^l2{xz&BPgpsTfGt!eZcYHk9+WA#<)@l&w3pR^0x#={TU~MEm zvb%|k>$bg4alp1eIQ?;KVg0)x6QnAekW?SXFXVH!PF$IAI zLnq+lm~p`VV=(g$tCnDsRhZWn&cb3FOP!sek@qlWYozd@#diz;gV5Zjk*<6 zsKR9Ef?sVDaBsgy1j{ati~sy9=rzd6f_T%{HFRaHoC7>=X{1B;LfllSwdXm^#?C&A znCPuwL1JFO54krhx?glZuP5iIBL(4RbuPc;_oj}je(8%uR=w9-askoBqnals3_Xe% zd#8(JUKI?qnr}`+2g?f<79>y94h{dfnEoG3NM2=&;5BfS%M?4z$oN1eyl!_xY8B(1 z#)%^+wC`R_7K*MwmA`47IOZF%!4gBK=eTACl3W4Uux7|3{aB^`Hq(olA4(UQ4Qf?V ztgGG?qHi8BbSzom$qkJ+AAgY}{a)tT@D1zSQSn(RlNf$~?ambrJ~1Wj z*Tic0phXbn!hg8BY#>KmMVDbGOa!H1J-mheL)e!chk>G)^OsfvUOm3XYm1)JOcPcm0A@3`p#tU&pdyHCn z3sey5ftYTc&}-~=+R|LEymbuq4gMu_t~n>t-AJ~E*O!d*um+>L)cGTmFIQ%aQnDYy z-TG+M=&`wvfC*MIq^ygcr~5JmAzf#VrS;J*V*_h}V1)JUW!7n%cg#^ES;c)uykBHx z!BCt2iqm>bItN7{8?3bR@{Zhkq!+}mj|B|jwrNBJLD-zjpOCl)pk}-f-HybMOkqa^;u2V1X;yLqu*s?LSIZSu& zE0CSymDT-(p0Sfxqq`Y%k~M1I+@`24VRo!lo;1nE?(ey9<00+5U@wh;;UUL(!r^Vd z7nf*nLBWmp+YjzM8CY%zCxrYG@^gIVye@N0t>v0z$(3ohOZr$NuDcEP1GYLuGi=+t zD0ke|Cl=AsCQ4)GTF<8j(5ITji(Hwu3mBuT~i5#H{UEPPD zNHge5nwG8j894{Ax9kLByDn+nMkp5rY>qbN63cQ+Jo?%L)rMG5#{6RwM%*n~Bf%Xm zBN(1egDL`btAvAkx|C83tydTOHV&V7U#jhy8J_{5t`}A9mh<^qZ8!mBihQ93-~O_D7{7|frG|-#U0`8?psa}{>8%wqkbZo* z5|9$FsU(FbU266}F=wZNEf| z9~^?XJ>@|Db2EH=>A4X;x&n4;l#-#Lxtei(wupQ;? zk&OYs;ts*;ZYIN_yN9l1K-ZqWFn(=*gzAF#? z;@R`4R*r?dJ^Cr#6PFGv(9oy9qz3=d+4`>xV2Q{8G@5`ddy0|xcG;jWkNrg!%XL<| zKsO}(f@sY#RdLRmaP{w;F~OWS51$fU-qF*-rLsQ1U>oH(|EXs|z?#ZX?fU za&M1EGCP-fU7f}sfo*was{wa6&;et<9HN^X^&_Y`mSy(3eX%KZT+P<6t<>EaA1CIif?6BWENM!t&lD_rv=u}qc@%2l+ zcZFk4PX)2g5@UN!M+`f4XQp@&RL5<94ZnRs;qYZ7vzE=Zsb}|2N(90;eDQuF1u9{x+klvcFe^-T-IgT z`>DSQ-pY^{+fo0r!e?ny%f%EhB#v9&!Yuc%naF?4;9K;LQhwRr{GKY{3mrZtcNyb{ z++yQTD8HtY*=pPzfc_qp_~F^LIff@4`y@3lKWw_CS9%G&E5qh-^a{pNGwcIzG<&Y< zJHGdE8CdhM67~GV==iRA_gfJIpHe?R_TuZsNbFVjvX}2diC*;rSH`moJKWTJe>(FF z&agcQ{#`cm?>JcgOO`6}surFX)FT90BBW6eN@7^x#>^JGIKtkATlMZrRfNdxmzf?wve$Je^1@;@yhc9bDR;0Tw_#s1-y56mm<<4l2@20oU`s(AJYJ$Bv zcdIPj@~sZ%fnV3v^Q+zwtgozFlqyH}egwV53oNHHuml%$!P``rkH%v86pPps+xxZ6 zx3re^>*n_Mv;5sJ?$8pQa_oqo@j;;#)8|lpeExtH)KURU(z$wLK%(2fL9-}Dg_M_4 z@Vg7(TKhs+wd`S;%UvUpP|(PE`{7T&o(0-Zl{b}``bzlvef8d(jhVeb>R(ROs_)OW z1e{vHg1AHfrK!y_8F_Ge@eAT*}^@a?^ED5R)`U`Lt(N@_*zt(qMx@)XS`0Se~qA}o|%p%v<7q| z1m6yNCOJB@=iuzx{%Yy}tG%Ot*&YAYUm=YSoaDGd*^3N4*uWS?fv6m4E;^nd9*4rO zB;cxcszsPK81E_&n@hn{gB+INocq0cmlmJ{5aD)<1C2ZFTSDiSwuIFqJq?->htX3* zW^bJ?xPL-l|9SS{K3I`5$6u6RhIF5QJBAF&9Vn`) zDL2+;<)r8x%ReW`^xP2>=VSUIO8WKzJ7~XQ#RnzC^QD9CXvq9vq$^Q6tkp7`t{Gjn zep`zxC3Y}j#I@w1=YDx-8TlT0!b~3vXQ;@ki`%W@4tonGwf%5a+$^&T626GFLQSz# zKys|_rU-xdl;NO0e41@tmSj>b7A?w7*4NYrC^IYv-#wZ>bKb_+C~lNf7-Sm0`n z=M}ke6#LykME7lPSi=1ok@K1_*SLlsklF^>$1`%oFpGp^JqK=9l57VGH{$$#EG((| z)1H0TP$;m2j)>`lKUmw)TPoa+jI?-1OdzCk&;)YgeLiD% z$L=)&Be%8i+{iB~ZHE@9c?qaXE=Qel*htGyHn|hh`BsZ#(6ymJxXDCN;xFhgHFxo% z{!d4;EeGT0ZAIG$iVI5?pMye!NQBHe05F~T{x$1q#iNiRAF&^-5|ybl3AaW=ziyiE z-W2Ry-TDqQI-R>%Up3Y4l|5w~f=G4CqU1k{c;6gSF|rt%`6SXnP zZHBSqA>k42n#9EU`Q2+7+}3Uz>YwhUc~j^s z?0bcL#*Z?ibCmhJSJh*v-#nmK>)Im{ekY-aQ++LQJa+4~5J@H_LZZ4wBXy`HaQFdn zf6pMfATqK7x#$UmYx&^l4s?8CKj;2Zc2Ln`u) z5Oxl{fCqsIK_)p8GS8HzZDiTr6tXdSx~xX1nD~wGPu#78Rq=P{!=bEIg2Gz_&zNt< zN|AXmAI)er+-0Ioq2U8V6x7Zop^M2@a7G)TooZ|KrVn`f;b!fB_096f81UbJ7XKPT zCWDFZtq;1nG$pBZ9fQw4RKfes%TFGY)v2H{_Bwv~Fv~D`yT`%l=K1^ zv)L{x?V>xC023AdeD0;j+r}KB!pG5*ZK-}Ue0A|$w};P!v+G|b561cT*4`o$?IxMH z!=d%QW3i#pTlOCeaI{jOI=dRHe2h^bj!5vt2- zPBWc*lAq+F97je&aH30E-D5!pi;mYBa|EW#(y`-eRYC2FKD1ty~-X8a>>lhpz`A_uTFSCh(-VVt)Y&S_hlL zUAtwDo3WN_sua1qjW+~icU5Khh^rcC!mleIs_;fChu^q)AK?0Vgvkt_+4=0T=(r@c ztKeuwp15Gix7|ULT?VSzC(oBMzV|V5veb+dqyIE{=6@g`CQ5ot(XHj`P6MGW(H@EGA)eUp%;~bX1+%G^4;;D`9 zI>Z$DitUkyBvyTv4y1x%&o!3tf|A;PC);;Ye*-u*zgddbwhTRV8WVJNqXSUzMpAzl z=f%JPNBn=DV#U8dVMS#Q`o3#v9{CGBmDk2?rTPU{6d6gcfl04gQzyuLpd`hq7Te*_ z%c#BZa}8H1q(}J^%Nl9SMB89B1{jktuim59n9z6kMozbTH}GKep`a=8hWbC!0Pzxk z4U~kbbxrCY!nRJfEJSz9bRd+X6Rw7`k$Dze%3&!vh5?pI`-F#^_)L z+Qd&yp!dJ7ldJgxR%_!!kdzXoEHeza!nBV;4yGesaLMBsnt@kirftL1EHCDZf#EM? zF?7C(8GsCe1bEOJms&;0gKAt)N}-8kAFGe;fJVJ8FPK?*ww#4?Y3@6T4v{w}LId!M zgG8d77!^oXorcP$9j)*pxU@M+*E8rs3Lm%2cQ*uQwHkAuBfjnCTM>D;EWh*P^f`FVKu?Ie47Rn4G z@j;(CD4g%!dCROJ zdPDa32BY8o50p>;TyWFhyd8;ufM)Da47#xRhd9S4os*M;TROZh>_%*Prtx})Gwfp= z#(zt=2?w-(-5)KZ2Kx=n2s_rvmSTE|3e>ONIPzMY*_{$lpPV(Ho7ipR?bguxR6 zz@|{hxOp*rmFKsGr=Ayd9G=W(t>FWVvJ{-|YmF-i09){nZ=@KDYXlRY-vBKBvZH(F z3c0*H*xXOqQ!$tU8vb{9Yz&>^c=6{AfPBV3zzwUUa8a+I=;gXXaT6s#eI~T~-YGhC z5kea?i`1!(32F}DC0_gW`+HInRHLo;!j#xs@m@TU3c5=g{FecbpC#_BwpGR18B*&h z>3abwwt2MF0l(NsG|@+^*61A}tlqHUW10_EdxYI#^bfEu0UvG|EL(I9F)Rm#RJ00} zUkQE+adyiSag}>puX5b;gtHOoPS~Vhf~ec6@C!?EIYJE)66wZ+vW8xa&+2NsswmHS zE>gdIxW)fk@$r)M=L=|WAorNl`9rpz==`mlg8NzuPvhaN^5l^uYC_>0qKg#0S^3XM z7nn6uiZ*<03S$e53)-?`_*}1oN2yf-=b-?Te~3~29Yl1BK;)_L3*-ftm5C8DC|aUS z(olav${qW!aT%Q|X=-$fdx6Z7d*%8i?6$bTOPx zF}Z3@BJ+Wwduu80edIrpf*L!Z=Xcwn=6$C(+>c`X@Zup^6G z^w#oE^HqU~84@pm2jlmhgaKT5)N%)d<2o39PI0E;kg*Wz@86z-9%Js)OWuK6CIs?w%G@r^IK4i5V*wDo0$0=#pG8Pl^XT*C(hIW zl^=J)Sk*r9F~$1gM56$E{~)%tCVNYsM4cn;FLh j7Ez6ROK*t1AAG$Efd1JqwZB;?{Qn>Rr%fZrZ`1z`eQwDY literal 0 HcmV?d00001 diff --git a/image_05.jpg b/image_05.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06a464f785b37f7a9127a9b58c9e73c4310e5687 GIT binary patch literal 125081 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 literal 0 HcmV?d00001 diff --git a/json_form.py b/json_form.py new file mode 100644 index 0000000..d2b4f37 --- /dev/null +++ b/json_form.py @@ -0,0 +1,24 @@ +import json + +def format_json_file(file_path): + try: + with open(file_path, 'r') as file: + json_data = json.load(file) + formatted_json = json.dumps(json_data, indent=2) + with open(file_path, 'w') as output_file: + output_file.write(formatted_json) + + return formatted_json + except FileNotFoundError: + return f"File not found: {file_path}" + except json.JSONDecodeError: + return f"Invalid JSON format in file: {file_path}" + +file_path = 'graph_data.json' +formatted_data = format_json_file(file_path) + +# if formatted_data: +# print(formatted_data) +# print(f"Formatted JSON data has been written to: {file_path}") +# else: +# print("Error occurred while processing the JSON file.") diff --git a/main.py b/main.py new file mode 100644 index 0000000..6f83edf --- /dev/null +++ b/main.py @@ -0,0 +1,86 @@ +from news_graph import NewsMining +test_str_1="Pakistan was founded by Quaid-e-Azam Muhammad Ali Jinnah in 1947." +test_string_one="Quaid-e-Azam Muhammad Ali Jinnah was good man" +long_sen="The government has already achieved a Rs60 per litre petroleum levy — the maximum permissible limit under the law — on both petrol and HSD. The government had set a budget target to collect Rs869 billion as a petroleum levy during the current fiscal year under the commitments made with the International Monetary Fund (IMF) but was hoping the collection to go beyond Rs950bn by the end of June." +# test_fail="The bank is on the river, and the bank approved my loan application." +ten_ner="In 2022, John Smith, the CEO of XYZ Corporation, attended the United Nations General Assembly in New York City, where he discussed climate change with Angela Merkel, the Chancellor of Germany.He highlighted the company's partnership with SpaceX to Angela Merkel, headed by Elon Musk, to develop innovative sustainable energy solutions for the future.Quaid-e-Azam Muhammad Ali Jinnah was good man.He was born in Karachi.He founded abc with elon musk.he was good friend of Elon Musk" +test_str=''' +Iranian President Ebrahim Raisi arrived in Lahore on Tuesday morning and visited Allama Iqbal’s mausoleum. + +Punjab Chief Minister Maryam Nawaz received Raisi and his delegation at the Allama Iqbal International Airport on the second day of his three-day official visit. His visit to Pakistan is the first of its kind by any head of state after the February 8 general elections. + + +According to PTV News, Punjab Chief Secretary Zahid Akthar Zaman, Inspector General of Police Dr Usman Anwar and Iranian consul general in Lahore Mehran Movahhedfar were among those receiving him. + +Senior provincial minister Marriyum Aurangzeb, Senator Pervaiz Rasheed and provincial ministers Uzma Bukhari, Mujtuba Shujaur Rehman, Khawaja Sulaiman Rafiq, Bilal Yasin, and Chaudhry Shafay Hussain were also present on the occasion. + +The Iranian president then paid a visit to Allama Iqbal’s mausoleum, where he laid a floral wreath and offered fateha. + +Raisi visits Allama Iqbal mausoleum in Lahore. — DawnNewsTV +Speaking on the occasion, Raisi said he did not “feel like a stranger at all”, adding that there were “special emotions and connections” with Pakistani people that kept the two nations connected. + +“I wanted that a public rally be held so I could address the public but due to some reasons, the conditionalities were such that it could not be made possible,” he said. + +“On behalf of the supreme leader of the Islamic Republic of Iran, I say my greetings to the people of Pakistan and Lahore,” Raisi said, appreciating the “revolutionary spirit” present in the people here. + +The Iranian president highlighted that Allama Iqbal was an extremely important personality for Iran as he was a very inspirational person. + +The Foreign Office (FO) had stated earlier that Raisi would visit Lahore and Karachi and meet with the provincial leadership. + +The Punjab government and Sindh governments have announced local holidays today (Tuesday) in the Lahore district and Karachi division, respectively, to “avoid the consequent inconvenience to the general public” ahead of the visit of foreign dignitaries, including Raisi. The Sindh government has also imposed a complete ban on drones in Karachi division from April 22 to April 28.''' +# import threading +# import pickle +# def execute_mining(data): +# Miner = NewsMining() +# Miner.main(data) + +# # Open the pickle file in read-binary mode +# with open('news_list.pkl', 'rb') as file: +# data = pickle.load(file) +# sub_list=data +# mining_thread = threading.Thread(target=execute_mining, args=(sub_list,)) + +# # Start the thread +# mining_thread.start() + +# mining_thread.join() +import threading +import pickle +tmp_event=[] +# Define the function to execute mining +# def execute_mining(data): +# Miner = NewsMining() +# events=Miner.main(data) +# tmp_event.append(events) +# # print(events) +# with open('news_list.pkl', 'rb') as file: +# data = pickle.load(file) +# data=data[0:500] +# batch_size = 100 +# num_batches = (len(data) + batch_size - 1) // batch_size +# batches = [data[i * batch_size:(i + 1) * batch_size] for i in range(num_batches)] +# threads = [] +# for batch in batches: +# mining_thread = threading.Thread(target=execute_mining, args=(batch,)) +# threads.append(mining_thread) +# mining_thread.start() +# for thread in threads: +# thread.join() +# with open('data.pkl', 'wb') as file: +# pickle.dump(tmp_event, file) +def execute_mining(data): + Miner = NewsMining() + Miner.main(data) + +# Open the pickle file in read-binary mode +with open('news_list.pkl', 'rb') as file: + data = pickle.load(file) +data=data[100:700] +# data=[] +# data.append(ten_ner) +sub_list=data +mining_thread = threading.Thread(target=execute_mining, args=(sub_list,)) + +mining_thread.start() + +mining_thread.join() \ No newline at end of file diff --git a/main_kg.py b/main_kg.py new file mode 100644 index 0000000..861d8f6 --- /dev/null +++ b/main_kg.py @@ -0,0 +1,172 @@ +from transformers import AutoModelForSeq2SeqLM, AutoTokenizer +import matplotlib.pyplot as plt +import networkx as nx +import json +import pickle +tokenizer = AutoTokenizer.from_pretrained("Babelscape/rebel-large") +model = AutoModelForSeq2SeqLM.from_pretrained("Babelscape/rebel-large") +ten_ner="In 2022, John Smith, the CEO of XYZ Corporation, attended the United Nations General Assembly in New York City, where he discussed climate change with Angela Merkel, the Chancellor of Germany.He highlighted the company's partnership with SpaceX to Angela Merkel, headed by Elon Musk, to develop innovative sustainable energy solutions for the future.Quaid-e-Azam Muhammad Ali Jinnah was good man.He was born in Karachi.He founded abc with elon musk.he was good friend of Elon Musk" +long_sen="The government has already achieved a Rs60 per litre petroleum levy — the maximum permissible limit under the law — on both petrol and HSD. The government had set a budget target to collect Rs869 billion as a petroleum levy during the current fiscal year under the commitments made with the International Monetary Fund (IMF) but was hoping the collection to go beyond Rs950bn by the end of June." +test_str=''' +Iranian President Ebrahim Raisi arrived in Lahore on Tuesday morning and visited Allama Iqbal’s mausoleum. + +Punjab Chief Minister Maryam Nawaz received Raisi and his delegation at the Allama Iqbal International Airport on the second day of his three-day official visit. His visit to Pakistan is the first of its kind by any head of state after the February 8 general elections. + + +According to PTV News, Punjab Chief Secretary Zahid Akthar Zaman, Inspector General of Police Dr Usman Anwar and Iranian consul general in Lahore Mehran Movahhedfar were among those receiving him. + +Senior provincial minister Marriyum Aurangzeb, Senator Pervaiz Rasheed and provincial ministers Uzma Bukhari, Mujtuba Shujaur Rehman, Khawaja Sulaiman Rafiq, Bilal Yasin, and Chaudhry Shafay Hussain were also present on the occasion. + +The Iranian president then paid a visit to Allama Iqbal’s mausoleum, where he laid a floral wreath and offered fateha. + +Raisi visits Allama Iqbal mausoleum in Lahore. — DawnNewsTV +Speaking on the occasion, Raisi said he did not “feel like a stranger at all”, adding that there were “special emotions and connections” with Pakistani people that kept the two nations connected. + +“I wanted that a public rally be held so I could address the public but due to some reasons, the conditionalities were such that it could not be made possible,” he said. + +“On behalf of the supreme leader of the Islamic Republic of Iran, I say my greetings to the people of Pakistan and Lahore,” Raisi said, appreciating the “revolutionary spirit” present in the people here. + +The Iranian president highlighted that Allama Iqbal was an extremely important personality for Iran as he was a very inspirational person. + +The Foreign Office (FO) had stated earlier that Raisi would visit Lahore and Karachi and meet with the provincial leadership. + +The Punjab government and Sindh governments have announced local holidays today (Tuesday) in the Lahore district and Karachi division, respectively, to “avoid the consequent inconvenience to the general public” ahead of the visit of foreign dignitaries, including Raisi. The Sindh government has also imposed a complete ban on drones in Karachi division from April 22 to April 28.''' +def extract_relations_from_model_output(text): + relations = [] + relation, subject, relation, object_ = '', '', '', '' + text = text.strip() + current = 'x' + text_replaced = text.replace("", "").replace("", "").replace("", "") + for token in text_replaced.split(): + if token == "": + current = 't' + if relation != '': + relations.append({ + 'head': subject.strip(), + 'type': relation.strip(), + 'tail': object_.strip() + }) + relation = '' + subject = '' + elif token == "": + current = 's' + if relation != '': + relations.append({ + 'head': subject.strip(), + 'type': relation.strip(), + 'tail': object_.strip() + }) + object_ = '' + elif token == "": + current = 'o' + relation = '' + else: + if current == 't': + subject += ' ' + token + elif current == 's': + object_ += ' ' + token + elif current == 'o': + relation += ' ' + token + if subject != '' and relation != '' and object_ != '': + relations.append({ + 'head': subject.strip(), + 'type': relation.strip(), + 'tail': object_.strip() + }) + return relations + +# knowledge base class +class KB(): + def __init__(self): + self.relations = [] + + def are_relations_equal(self, r1, r2): + return all(r1[attr] == r2[attr] for attr in ["head", "type", "tail"]) + + def exists_relation(self, r1): + return any(self.are_relations_equal(r1, r2) for r2 in self.relations) + + def add_relation(self, r): + if not self.exists_relation(r): + self.relations.append(r) + def print(self): + re_list=[] + for r in self.relations: + # print(f" {r}") + re_list.append(r) + return re_list +def from_small_text_to_kb(text, verbose=False): + kb = KB() + model_inputs = tokenizer(text, padding=True, truncation=True, + return_tensors='pt') + if verbose: + print(model_inputs) + gen_kwargs = { + "max_length": 520, + "length_penalty": 11, + "num_return_sequences": 3 + } + generated_tokens = model.generate( + **model_inputs, + **gen_kwargs, + ) + decoded_preds = tokenizer.batch_decode(generated_tokens, skip_special_tokens=False) + for sentence_pred in decoded_preds: + relations = extract_relations_from_model_output(sentence_pred) + for r in relations: + kb.add_relation(r) + + return kb + +tmp_event=[] +with open('news_list.pkl', 'rb') as file: + data = pickle.load(file) +# test_data=data[0:50] +# test_data.append(ten_ner) +data=data[100:700] + +relations_find_all=[] +for i in data: + kb = from_small_text_to_kb(i, verbose=True) + kb.print() + relations = kb.print() + for j in relations: + relations_find_all.append(j) +G = nx.DiGraph() +graph_data = { + "nodes": {}, + "edges": [] +} + +node_ids = {} +node_id_counter = 0 + +for rel in relations_find_all: + head = rel['head'] + tail = rel['tail'] + rel_type = rel['type'] + + if head not in node_ids: + node_ids[head] = node_id_counter + node_id_counter += 1 + if tail not in node_ids: + node_ids[tail] = node_id_counter + node_id_counter += 1 + if node_ids[head] not in graph_data["nodes"]: + graph_data["nodes"][node_ids[head]] = {"label": head, "category": "related"} + if node_ids[tail] not in graph_data["nodes"]: + graph_data["nodes"][node_ids[tail]] = {"label": tail, "category": "related"} + graph_data["edges"].append({"from": node_ids[head], "to": node_ids[tail], "label": rel_type, "category": "related"}) +with open('graph_data_from_kg.json', 'w') as json_file: + json.dump(graph_data, json_file, indent=4) +print("Graph data has been stored in graph_data.json") +for relation in relations_find_all: + G.add_edge(relation['head'], relation['tail'], relation_type=relation['type']) + +# pos = nx.spring_layout(G, seed=42) +# nx.draw(G, pos, with_labels=True, node_size=2000, node_color='skyblue', font_size=10, font_weight='bold', arrows=True) +# edge_labels = {(u, v): d['relation_type'] for u, v, d in G.edges(data=True)} +# nx.draw_networkx_edge_labels(G, pos, edge_labels=edge_labels) + +# plt.title("test_abc") +# plt.show() diff --git a/matlab.py b/matlab.py new file mode 100644 index 0000000..b711be9 --- /dev/null +++ b/matlab.py @@ -0,0 +1,23 @@ +import json +import networkx as nx +import matplotlib.pyplot as plt + +with open('diff.json', 'r') as f: + graph_data = json.load(f) + +G = nx.DiGraph() + +for node_id, node_data in graph_data['nodes'].items(): + G.add_node(node_id, label=node_data['label'], category=node_data['category']) + +for edge in graph_data['edges']: + G.add_edge(str(edge['from']), str(edge['to']), label=edge['label'], category=edge['category']) + +pos = nx.spring_layout(G) +nx.draw(G, pos, with_labels=True, labels={node: data['label'] for node, data in G.nodes(data=True)}, node_size=5000, node_color="skyblue", font_size=10, font_weight="bold") +edge_labels = {(from_node, to_node): data['label'] for from_node, to_node, data in G.edges(data=True)} +nx.draw_networkx_edge_labels(G, pos, edge_labels=edge_labels, font_color='red') + +# Show the graph +plt.title('Graph Visualization') +plt.show() diff --git a/merge_json.py b/merge_json.py new file mode 100644 index 0000000..f5ac6bc --- /dev/null +++ b/merge_json.py @@ -0,0 +1,21 @@ +import json +def merge_json(file1, file2, output_file): + + with open(file1, 'r') as f1: + data1 = json.load(f1) + + with open(file2, 'r') as f2: + data2 = json.load(f2) + + merged_data = {**data1, **data2} + + with open(output_file, 'w') as outfile: + json.dump(merged_data, outfile, indent=4) + +def json_union(file1_content, file2_content): + data1 = file1_content + data2 = file2_content + + merged_data = {**data1, **data2} + + return merged_data \ No newline at end of file diff --git a/ner_plot.py b/ner_plot.py new file mode 100644 index 0000000..16e5672 --- /dev/null +++ b/ner_plot.py @@ -0,0 +1,108 @@ +import json + +# Read data from JSON file +with open('updated_file_two_final.json', 'r') as f: + data = json.load(f) + +# Convert data to vis.js format +nodes = [] +edges = [] + +node_colors = { + "PERSON": "blue", + "ORG": "green", + "GPE":"red", +} + +for node_id, node_data in data["nodes"].items(): + node_id = int(node_id) + node = { + "id": node_id, + "label": node_data["label"], + "color": node_colors.get(node_data.get("ner", ""), "gray"), + "category": node_data["category"], + "ner": node_data.get("ner", "") + } + nodes.append(node) + +for edge in data["edges"]: + edges.append({ + "from": edge["from"], + "to": edge["to"], + "label": edge["label"], + "category": edge["category"], + "arrows": "to" + }) + +# Generate HTML and JavaScript for vis.js +html_template = """ + + + + Network Graph + + + + + + +
+ + + + + +""" + +# Fill the template with the actual data +html_output = html_template.format(nodes=json.dumps(nodes), edges=json.dumps(edges)) + +# Write the output to an HTML file +with open('graph_color_put.html', 'w') as f: + f.write(html_output) + +print("HTML file generated: graph.html") diff --git a/news_graph.py b/news_graph.py new file mode 100644 index 0000000..6bd399b --- /dev/null +++ b/news_graph.py @@ -0,0 +1,395 @@ +import re +from collections import Counter +import spacy +import pickle +import json +from tqdm import tqdm +# from BFS import read_json_file +from graph_show import GraphShow +from textrank import TextRank +from textrank import TextrankGraph +from json_form import format_json_file +# from BFS import GraphProcessor + +nlp = spacy.load('en_core_web_lg') + +class NewsMining(): + """News Mining""" + def __init__(self): + self.textranker = TextRank() + self.events=[] + self.result_dict={} + self.ners = ['PERSON', 'ORG', 'GPE'] + self.ner_dict = { + 'PERSON': 'Person', # People, including fictional + 'ORG': 'Organization', # Companies, agencies, institutions, etc. + 'GPE': 'Location', # Countries, cities, states. + } + # dependency markers for subjects + self.SUBJECTS = {"nsubj", "nsubjpass", + "csubj", "csubjpass", "agent", "expl"} + # dependency markers for objects + self.OBJECTS = {"dobj", "dative", "attr", "oprd"} + + self.graph_shower = GraphShow() + + def clean_spaces(self, s): + s = s.replace('\r', '') + s = s.replace('\t', ' ') + s = s.replace('\n', ' ') + return s + + def remove_noisy(self, content): + """Remove brackets""" + p1 = re.compile(r'([^)]*)') + p2 = re.compile(r'\([^\)]*\)') + return p2.sub('', p1.sub('', content)) + + def collect_ners(self, ents): + """Collect token only with PERSON, ORG, GPE""" + collected_ners = [] + for token in ents: + if token.label_ in self.ners: + collected_ners.append(token.text + '/' + token.label_) + return collected_ners + + def conll_syntax(self, sent): + """Convert one sentence to conll format.""" + + tuples = list() + for word in sent: + if word.head is word: + head_idx = 0 + else: + head_idx = word.head.i + 1 + tuples.append([word.i + 1, # Current word index, begin with 1 + word.text, # Word + word.lemma_, # Lemma + word.pos_, # Coarse-grained tag + word.tag_, # Fine-grained tag + '_', + head_idx, # Head of current Index + word.dep_, # Relation + '_', '_']) + return tuples + + def syntax_parse(self, sent): + """Convert one sentence to conll format.""" + tuples = list() + for word in sent: + if word.head is word: + head_idx = 0 + else: + head_idx = word.head.i + 1 + tuples.append([word.i + 1, # Current word index, begin with 1 + word.text, # Word + word.pos_, # Coarse-grained tag + word.head, + head_idx, # Head of current Index + word.dep_, # Relation + ]) + return tuples + + def build_parse_chile_dict(self, sent, tuples): + child_dict_list = list() + for word in sent: + child_dict = dict() + for arc in tuples: + if arc[3] == word: + if arc[-1] in child_dict: + child_dict[arc[-1]].append(arc) + else: + child_dict[arc[-1]] = [] + child_dict[arc[-1]].append(arc) + child_dict_list.append([word, word.pos_, word.i, child_dict]) + return child_dict_list + + def complete_VOB(self, verb, child_dict_list): + '''Find VOB by SBV''' + for child in child_dict_list: + word = child[0] + # child_dict: {'dobj': [[7, 'startup', 'NOUN', buying, 5, 'dobj']], 'prep': [[8, 'for', 'ADP', buying, 5, 'prep']]} + child_dict = child[3] + if word == verb: + for object_type in self.OBJECTS: # object_type: 'dobj' + if object_type not in child_dict: + continue + # [7, 'startup', 'NOUN', buying, 5, 'dobj'] + vob = child_dict[object_type][0] + obj = vob[1] # 'startup' + return obj + return '' + + def extract_triples(self, sent): + svo = [] + tuples = self.syntax_parse(sent) + child_dict_list = self.build_parse_chile_dict(sent, tuples) + for tuple in tuples: + rel = tuple[-1] + if rel in self.SUBJECTS: + sub_wd = tuple[1] + verb_wd = tuple[3] + obj = self.complete_VOB(verb_wd, child_dict_list) + subj = sub_wd + verb = verb_wd.text + if not obj: + svo.append([subj, verb]) + else: + svo.append([subj, verb+' '+obj]) + return svo + + def extract_keywords(self, words_postags): + return self.textranker.extract_keywords(words_postags, 10) + + def collect_coexist(self, ner_sents, ners): + """Construct NER co-occurrence matrices""" + co_list = [] + for words in ner_sents: + co_ners = set(ners).intersection(set(words)) + # print(co_ners) + + co_info = self.combination(list(co_ners)) + co_list += co_info + if not co_list: + return [] + #co occurence on the base on of intersection + return {i[0]: i[1] for i in Counter(co_list).most_common()} + + def combination(self, a): + '''list all combination''' + combines = [] + if len(a) == 0: + return [] + for i in a: + for j in a: + if i == j: + continue + combines.append('@'.join([i, j])) + # print(combines) + return combines + + def main(self, contents): + '''Main function''' + words_postags = [] # token and its POS tag + ner_sents = [] # store sentences which contain NER entity + ners = [] # store all NER entity from whole article + triples = [] # store subject verb object + events = [] # store events + + for content in tqdm(contents): + # 01 remove linebreaks and bracketst + try: + content = self.remove_noisy(content+".") + content = self.clean_spaces(content) + + # 02 split to sentences + doc = nlp(content) + + for i, sent in enumerate(doc.sents): + words_postags = [[token.text, token.pos_] for token in sent] + words = [token.text for token in sent] + postags = [token.pos_ for token in sent] + ents = nlp(sent.text).ents # NER detection + collected_ners = self.collect_ners(ents) + + if collected_ners: # only extract triples when the sentence contains 'PERSON', 'ORG', 'GPE' + triple = self.extract_triples(sent) + if not triple: + continue + triples += triple + ners += collected_ners + ner_sents.append( + [token.text + '/' + token.label_ for token in sent.ents]) + + + # 03 get keywords + keywords = [i[0] for i in self.extract_keywords(words_postags)] + # print(keywords) + + # for keyword in keywords: + # name = keyword + # cate = 'keyword' + # events.append([name, cate]) + + # print(keywords) + #For instance, if there is a triple (subject, verb, object) such as ("cat", "chase", "mouse"), and "cat" and "mouse" + # are keywords identified earlier, then an event of type "related" could be created to signify the relationship between "cat" and "mouse" through the action "chase." + # print(events) + + for t in triples: + if (t[0] in keywords or t[1] in keywords) and len(t[0]) > 1 and len(t[1]) > 1: + events.append([t[0], t[1]]) + # print(events) + # 05 get word frequency and add to events + #identifies the most common words (nouns, proper nouns, and verbs) in the text and categorizes them as "frequency." + word_dict = [i for i in Counter([i[0] for i in words_postags if i[1] in [ + 'NOUN', 'PROPN', 'VERB'] and len(i[0]) > 1]).most_common()][:10] + + # for wd in word_dict: + # name = wd[0] + # cate = 'frequency' + # events.append([name, cate]) + + # dumpy_ner={i[0]: i[1] for i in Counter(ners).most_common(20)} + ner_dict = {i[0]: i[1] for i in Counter(ners).most_common(20)} + # print(ner_dict) + for ner in ner_dict: + name = ner.split('/')[0] # Jessica Miller + cate = self.ner_dict[ner.split('/')[1]] # PERSON + events.append([name, cate]) + # print(events) + # 07 get all NER entity co-occurrence information + # here ner_dict is from above 06 + co_dict = self.collect_coexist(ner_sents, list(ner_dict.keys())) + co_events = [[i.split('@')[0].split( + '/')[0], i.split('@')[1].split('/')[0]] for i in co_dict] + # events += co_events + # print(ner_dict.keys()) + # print(events) + result_dict = {} + + for item in ner_dict: + parts = item.split('/') + if len(parts) == 2: + key, value = parts + result_dict[key] = value + except: + pass + # for t in triples: + # if t[0] in keywords: + # events.append([t[0], 'related', t[1]]) + + # if t[1] in keywords: + # events.append([t[1], 'related', t[0]]) + # for wd in word_dict: + # if wd[0] in keywords: + # # print(wd[0]) + # events.append([wd[0], 'related', 'frequency']) + events += co_events + with open('test_json.json', 'r') as file: + data = json.load(file) + print(data['edges']) + lables=[] + for i in data['edges']: + lables.append(i['label']) + # print(events) + for k,i in enumerate(events): + for j in i: + # print(j) + if j in lables: + pass + else: + # print(i) + try: + events.remove(i) + events_test = [sublist for l, sublist in enumerate(events) if l != k] + + except: + pass + tmp_event=[] + Ner_data={"Person":0,"Location":0,"Organization":0} + test_data=[] + + for k,i in enumerate(events): + + if i[1]=="Organization": + Ner_data['Organization']+=1 + if i[1]=="Location": + Ner_data['Location']+=1 + if i[1]=="Person": + Ner_data['Person']+=1 + # print("removing",i) + #events = [sublist for l, sublist in enumerate(events) if l != k] + org_count=0 + for k,i in enumerate(events): + + tmp_dir_ner=[] + + if org_count<3: + if i[1]=="Organization" : + print("in if org") + tmp_dir_ner.append(i[0]) + tmp_dir_ner.append('Person') + events.append(tmp_dir_ner) + org_count+=1 + if i[1]=="Location" : + print("in if") + tmp_dir_ner.append(i[0]) + tmp_dir_ner.append('Person') + events.append(tmp_dir_ner) + org_count+=1 + if i[1]=="Person" : + tmp_dir_ner.append(i[0]) + tmp_dir_ner.append('Location') + events.append(tmp_dir_ner) + org_count+=1 + # print("ji",i,lables) + else: + # print("removing",i) + events = [sublist for l, sublist in enumerate(events) if l != k] + print(events) + seen = set() + unique_data = [x for x in events if tuple(x) not in seen and not seen.add(tuple(x))] + with open('graph_data.json','r') as file: + match_events=json.load(file) + data_edges=match_events['edges'] + print(data_edges) + ner_to_check = 'GPE' + # tmp_unique=[] + # # Iterate through each item in the data + # for ev in unique_data: + # for item in data_edges: + # # Check if the 'ner' key has the specified value + # if ev[0]==item['label']: + # if item['ner']==None: + # print("find none") + # else: + # print("not found") + # tmp_unique.append(ev) + self.graph_shower.create_page(unique_data,result_dict) + nodes,edge=self.graph_shower.return_edge(unique_data,result_dict) + # Save the Python object to the pickle file + # with open(file_path, 'wb') as file: + # pickle.dump(tmp_unique, file) + tmp_list=[] + for i in edge: + tmp_list.append(i['label']) + data = {'nodes': nodes, 'edges': edge} + g = TextrankGraph() + nodes_rank = g.rank() + + tmp_list=[] + + for i in data['edges']: + tmp_list.append(i['label']) + if i['label'] in result_dict.keys(): + i['ner']=result_dict[i['label']] + + else: + i['ner']=None + # print(tmp_list) + nodes_rank = sorted(tmp_list, key=lambda asd:asd[1], reverse=True) + # tmp_res=g.rank_2(data) + # print(nodes_rank) + self.events=events + self.result_dict=result_dict + with open('events.json', 'w') as json_file: + json.dump(events, json_file) + with open('result_dic.json', 'w') as json_file: + json.dump(result_dict, json_file) + with open('graph_data.json', 'w') as json_file: + json.dump(data, json_file) + for node in nodes: + node['distance'] = 0 + for edges in edge: + edges['distance'] = 0 + # print(edge) + data={'nodes':nodes,"edges":edge} + with open("query_graph.json",'w') as file: + json.dump(data,file) + format_json_file('graph_data.json') + format_json_file('query_graph.json') + # return tmp_unique + def get_events(self): + return self.events,self.result_dict + diff --git a/news_list.pkl b/news_list.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e450a10750c860eeb21b5536df01e417601f7bd6 GIT binary patch literal 3818782 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

97q+!@nTyWBB{ue!_e^@3sGA^PufY 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 z

+ + + + \ No newline at end of file diff --git a/test_draw.py b/test_draw.py new file mode 100644 index 0000000..a17058d --- /dev/null +++ b/test_draw.py @@ -0,0 +1,106 @@ +import json + +# Load the JSON data +graph_data = """ +{ + "nodes": { + "0": { + "label": "Quaid-e-Azam Muhammad Ali Jinnah", + "category": "related" + }, + "2": { + "label": "Angela Merkel", + "category": "related" + }, + "4": { + "label": "abc", + "category": "related" + }, + "5": { + "label": "Elon Musk", + "category": "related" + }, + "7": { + "label": "SpaceX", + "category": "related" + } + }, + "edges": [ + { + "from": "4", + "to": "5", + "label": "founded by", + "category": "related" + }, + { + "from": "5", + "to": "4", + "label": "owner of", + "category": "related" + }, + { + "from": "5", + "to": "7", + "label": "owner of", + "category": "related" + } + ] +} +""" + +data = json.loads(graph_data) + +# Create nodes and edges data for vis.js +nodes = [] +edges = [] + +for node_id, node_data in data['nodes'].items(): + node = {'id': node_id, 'label': node_data['label']} + nodes.append(node) + +for edge in data['edges']: + edge = {'from': edge['from'], 'to': edge['to'], 'label': edge['label']} + edges.append(edge) + +# Create HTML content +html_content = f""" + + + + Graph Visualization + + + + + +
+ + + + + +""" + +# Save the HTML content to a file +with open('graph.html', 'w') as html_file: + html_file.write(html_content) + +print("HTML file generated successfully!") diff --git a/test_json.json b/test_json.json new file mode 100644 index 0000000..97892fd --- /dev/null +++ b/test_json.json @@ -0,0 +1 @@ +{"nodes": [{"from": 0, "label": "", "to": 1, "category": "related"}, {"from": 88, "label": "", "to": 43, "category": "related"}, {"from": 85, "label": "", "to": 17, "category": "related"}, {"from": 90, "label": "", "to": 43, "category": "related"}, {"from": 8, "label": "", "to": 43, "category": "related"}, {"from": 10, "label": "", "to": 17, "category": "related"}, {"from": 12, "label": "", "to": 13, "category": "related"}, {"from": 74, "label": "", "to": 91, "category": "related"}, {"from": 75, "label": "", "to": 17, "category": "related"}, {"from": 18, "label": "", "to": 43, "category": "related"}, {"from": 20, "label": "", "to": 91, "category": "related"}, {"from": 75, "label": "", "to": 43, "category": "related"}, {"from": 84, "label": "", "to": 43, "category": "related"}, {"from": 86, "label": "", "to": 91, "category": "related"}, {"from": 77, "label": "", "to": 91, "category": "related"}, {"from": 30, "label": "", "to": 43, "category": "related"}, {"from": 32, "label": "", "to": 43, "category": "related"}, {"from": 34, "label": "", "to": 91, "category": "related"}, {"from": 82, "label": "", "to": 43, "category": "related"}, {"from": 78, "label": "", "to": 43, "category": "related"}, {"from": 40, "label": "", "to": 41, "category": "related"}, {"from": 42, "label": "", "to": 43, "category": "related"}, {"from": 44, "label": "", "to": 45, "category": "related"}, {"from": 46, "label": "", "to": 47, "category": "related"}, {"from": 48, "label": "", "to": 91, "category": "related"}, {"from": 75, "label": "", "to": 82, "category": "related"}, {"from": 77, "label": "", "to": 66, "category": "related"}, {"from": 83, "label": "", "to": 84, "category": "related"}, {"from": 87, "label": "", "to": 83, "category": "related"}, {"from": 86, "label": "", "to": 84, "category": "related"}, {"from": 86, "label": "", "to": 83, "category": "related"}, {"from": 62, "label": "", "to": 66, "category": "related"}, {"from": 85, "label": "", "to": 88, "category": "related"}, {"from": 66, "label": "", "to": 75, "category": "related"}, {"from": 82, "label": "", "to": 85, "category": "related"}, {"from": 85, "label": "", "to": 82, "category": "related"}, {"from": 77, "label": "", "to": 75, "category": "related"}, {"from": 74, "label": "", "to": 75, "category": "related"}, {"from": 85, "label": "", "to": 77, "category": "related"}, {"from": 78, "label": "", "to": 84, "category": "related"}, {"from": 84, "label": "", "to": 82, "category": "related"}, {"from": 82, "label": "", "to": 83, "category": "related"}, {"from": 84, "label": "", "to": 85, "category": "related"}, {"from": 86, "label": "", "to": 87, "category": "related"}, {"from": 88, "label": "", "to": 91, "category": "related"}, {"from": 90, "label": "", "to": 91, "category": "related"}], "edges": [{"id": 88, "label": "SOE", "category": "other", "ner": "ORG", "value": "ORG"}, {"id": 43, "label": "Organization", "category": "Organization", "ner": null, "value": 0}, {"id": 85, "label": "Pakistan", "category": "other", "ner": "GPE", "value": "GPE"}, {"id": 17, "label": "Location", "category": "Location", "ner": null, "value": 0}, {"id": 91, "label": "Person", "category": "other", "ner": null, "value": 0}, {"id": 75, "label": "KP", "category": "other", "ner": "GPE", "value": "GPE"}, {"id": 84, "label": "PTI", "category": "other", "ner": "ORG", "value": "ORG"}, {"id": 77, "label": "Hussain", "category": "other", "ner": "PERSON", "value": "PERSON"}, {"id": 82, "label": "the Punjab Assembly", "category": "other", "ner": "ORG", "value": "ORG"}, {"id": 66, "label": "Punjab", "category": "other", "ner": "GPE", "value": "GPE"}, {"id": 83, "label": "Moonis Elahi", "category": "other", "ner": "PERSON", "value": "PERSON"}]} \ No newline at end of file diff --git a/test_two.html b/test_two.html new file mode 100644 index 0000000..f13196a --- /dev/null +++ b/test_two.html @@ -0,0 +1,53 @@ + + + + + + Graph Visualization + + + + +
+ + + + \ No newline at end of file diff --git a/textrank.py b/textrank.py new file mode 100644 index 0000000..6ac5c7e --- /dev/null +++ b/textrank.py @@ -0,0 +1,159 @@ +import sys +import pandas as pd +from collections import defaultdict +#TextRank is an unsupervised algorithm used for keyword extraction in natural language processing. It is based on the concept of PageRank, which is widely used in web search engines. TextRank treats words or phrases as nodes in a graph and establishes edges based on co-occurrence within a context window. The algorithm iteratively updates node weights until convergence, and the final weights indicate the importance of words or phrases. Keywords are then extracted based on the highest weights. +#Nodes: TextRank, unsupervised, algorithm, keyword, extraction, natural language processing, PageRank, concept, web search engines, words, phrases, graph, edges, co-occurrence, context window, iteratively, updates, node weights, convergence, final weights, importance. +#Edges: (TextRank, unsupervised), (TextRank, algorithm), (algorithm, keyword), ... +#TextRank: 0.15, unsupervised: 0.12, algorithm: 0.20, keyword: 0.18, extraction: 0.16, ... +#algorithm, TextRank, keyword, extraction, node weights. +#new_weight(node) = (1 - d) + d * (sum(weight(neighbor) / out_degree(neighbor)) for neighbor in neighbors) +#The update is based on the weights of neighboring nodes and the number of outgoing edges from each node. + +class TextrankGraph: + '''textrank graph''' + def __init__(self): + self.graph = defaultdict(list) + self.d = 0.85 # damping coefficient, usually is .85 + self.min_diff = 1e-5 # convergence threshold + self.steps = 1000 # iteration steps + self.weight_updates = defaultdict(list) + + def addEdge(self, start, end, weight): + """Add edge between node""" + self.graph[start].append((start, end, weight)) + self.graph[end].append((end, start, weight)) + def rank_2(self,graph): + weight_default = 1.0 / (len(graph) or 1.0) + nodeweight_dict = defaultdict(float) + outsum_node_dict = defaultdict(float) + + for node, out_edge in graph.items(): + nodeweight_dict[node] = weight_default + outsum_node_dict[node] = sum((edge[2] for edge in out_edge), 0.0) + + sorted_keys = sorted(graph.keys()) + step_dict = [0] + + weight_updates_df = pd.DataFrame() + + for step in range(1, self.steps): + for node in sorted_keys: + s = 0 + for e in graph[node]: + s += e[2] / outsum_node_dict[e[1]] * nodeweight_dict[e[1]] + new_weight = (1 - self.d) + self.d * s + nodeweight_dict[node] = new_weight + self.weight_updates[node].append(new_weight) + + step_dict.append(sum(nodeweight_dict.values())) + + if abs(step_dict[step] - step_dict[step - 1]) <= self.min_diff: + break + + weight_updates_df = pd.concat([weight_updates_df, pd.DataFrame(nodeweight_dict, index=[step])]) + + min_rank, max_rank = 0, 0 + + for w in nodeweight_dict.values(): + if w < min_rank: + min_rank = w + if w > max_rank: + max_rank = w + + for n, w in nodeweight_dict.items(): + nodeweight_dict[n] = (w - min_rank/10.0) / (max_rank - min_rank/10.0) + + # result_weights = {node: nodeweight_dict[node] for node in nodes_list} + return nodeweight_dict + + def rank(self): + weight_default = 1.0 / (len(self.graph) or 1.0) + nodeweight_dict = defaultdict(float) + outsum_node_dict = defaultdict(float) + + for node, out_edge in self.graph.items(): + nodeweight_dict[node] = weight_default + outsum_node_dict[node] = sum((edge[2] for edge in out_edge), 0.0) + + sorted_keys = sorted(self.graph.keys()) + step_dict = [0] + + weight_updates_df = pd.DataFrame() # Initialize an empty DataFrame + + for step in range(1, self.steps): + for node in sorted_keys: + s = 0 + + for e in self.graph[node]: + s += e[2] / outsum_node_dict[e[1]] * nodeweight_dict[e[1]] + + new_weight = (1 - self.d) + self.d * s + nodeweight_dict[node] = new_weight + self.weight_updates[node].append(new_weight) + + step_dict.append(sum(nodeweight_dict.values())) + + if abs(step_dict[step] - step_dict[step - 1]) <= self.min_diff: + break + # Append the current nodeweight_dict to the DataFrame + weight_updates_df = pd.concat([weight_updates_df, pd.DataFrame(nodeweight_dict, index=[step])]) + + min_rank, max_rank = 0, 0 + + for w in nodeweight_dict.values(): + if w < min_rank: + min_rank = w + if w > max_rank: + max_rank = w + + for n, w in nodeweight_dict.items(): + nodeweight_dict[n] = (w - min_rank/10.0) / (max_rank - min_rank/10.0) + # print(nodeweight_dict) + # print(weight_updates_df) + # print(nodeweight_dict) + return nodeweight_dict + + + + +class TextRank: + """Extract keywords based on textrank graph algorithm""" + def __init__(self): + self.candi_pos = ['NOUN', 'PROPN', 'VERB'] + self.stop_pos = ['NUM', 'ADV'] + self.span = 10 + + def extract_keywords(self, word_list, num_keywords): + # print(word_list,num_keywords) + g = TextrankGraph() + cm = defaultdict(int) + #The pairs are created as long as the part-of-speech + # tag of the subsequent word is in the allowed list (self.candi_pos) + for i, word in enumerate(word_list): # word_list = [['previous', 'ADJ'], ['rumor', 'NOUN']] + + if word[1] in self.candi_pos and len(word[0]) > 1: # word = ['previous', 'ADJ'] + for j in range(i + 1, i + self.span): + if j >= len(word_list): + break + if word_list[j][1] not in self.candi_pos or word_list[j][1] in self.stop_pos or len(word_list[j][0]) < 2: + continue + # print(word[0],word_list[j][0]) + pair = tuple((word[0], word_list[j][0])) + cm[(pair)] += 1 + + + # cm = {('was', 'prison'): 1, ('become', 'prison'): 1} + + # print("++++",self.candi_pos) + # print(word_list) + # print(cm) + for terms, w in cm.items(): + # print(terms[0],terms[1],w) + g.addEdge(terms[0], terms[1], w) + nodes_rank = g.rank() + print(nodes_rank) + nodes_rank = sorted(nodes_rank.items(), key=lambda asd:asd[1], reverse=True) + # print(nodes_rank) + # print(nodes_rank[:num_keywords]) + return nodes_rank[:num_keywords] + diff --git a/updated_file_two.json b/updated_file_two.json new file mode 100644 index 0000000..0f0fd6a --- /dev/null +++ b/updated_file_two.json @@ -0,0 +1,106 @@ +{ + "nodes": { + "0": { + "label": "Quaid-e-Azam Muhammad Ali Jinnah", + "category": "related", + "ner": "PERSON" + }, + "1": { + "label": "Karachi", + "category": "related" + }, + "2": { + "label": "Angela Merkel", + "category": "related", + "ner": "PERSON" + }, + "3": { + "label": "Chancellor of Germany", + "category": "related" + }, + "4": { + "label": "abc", + "category": "related", + "ner": "ORG" + }, + "5": { + "label": "Elon Musk", + "category": "related", + "ner": "PERSON" + }, + "6": { + "label": "elon musk", + "category": "related" + }, + "7": { + "label": "SpaceX", + "category": "related" + }, + "8": { + "label": "elon mus", + "category": "related" + } + }, + "edges": [ + { + "from": 0, + "to": 1, + "label": "place of birth", + "category": "related" + }, + { + "from": 2, + "to": 3, + "label": "position held", + "category": "related" + }, + { + "from": 3, + "to": 2, + "label": "officeholder", + "category": "related" + }, + { + "from": 4, + "to": 5, + "label": "founded by", + "category": "related" + }, + { + "from": 5, + "to": 4, + "label": "owner of", + "category": "related" + }, + { + "from": 5, + "to": 6, + "label": "owner of", + "category": "related" + }, + { + "from": 6, + "to": 7, + "label": "employer", + "category": "related" + }, + { + "from": 6, + "to": 5, + "label": "owned by", + "category": "related" + }, + { + "from": 5, + "to": 7, + "label": "owner of", + "category": "related" + }, + { + "from": 5, + "to": 8, + "label": "owner of", + "category": "related" + } + ] +} \ No newline at end of file diff --git a/updated_file_two_final.json b/updated_file_two_final.json new file mode 100644 index 0000000..3e285df --- /dev/null +++ b/updated_file_two_final.json @@ -0,0 +1,3349 @@ +{ + "nodes": { + "7": { + "label": "Punjab", + "category": "related", + "ner": "GPE" + }, + "13": { + "label": "Pakistan", + "category": "related", + "ner": "GPE" + }, + "37": { + "label": "government", + "category": "related", + "ner": null + }, + "40": { + "label": "wheat", + "category": "related", + "ner": null + }, + "43": { + "label": "Imran Khan", + "category": "related", + "ner": "PERSON" + }, + "46": { + "label": "Fawad Chaudhry", + "category": "related", + "ner": null + }, + "48": { + "label": "PTI", + "category": "related", + "ner": "ORG" + }, + "50": { + "label": "Usman", + "category": "related", + "ner": null + }, + "52": { + "label": "Sudan", + "category": "related", + "ner": "GPE" + }, + "54": { + "label": "Shehbaz Sharif", + "category": "related", + "ner": null + }, + "73": { + "label": "Islamabad", + "category": "related", + "ner": "GPE" + }, + "77": { + "label": "Rawalpindi", + "category": "related", + "ner": null + }, + "96": { + "label": "Karachi", + "category": "related", + "ner": "GPE" + }, + "97": { + "label": "Sindh", + "category": "related", + "ner": "GPE" + }, + "133": { + "label": "Lahore", + "category": "related", + "ner": "GPE" + }, + "147": { + "label": "Umar", + "category": "related", + "ner": null + }, + "158": { + "label": "MPA", + "category": "related", + "ner": null + }, + "179": { + "label": "Balochistan", + "category": "related", + "ner": "GPE" + }, + "182": { + "label": "Baloch", + "category": "related", + "ner": null + }, + "184": { + "label": "census", + "category": "related", + "ner": null + }, + "185": { + "label": "population", + "category": "related", + "ner": null + }, + "196": { + "label": "President", + "category": "related", + "ner": null + }, + "199": { + "label": "India", + "category": "related", + "ner": "GPE" + }, + "207": { + "label": "Eidul Fitr", + "category": "related", + "ner": null + }, + "217": { + "label": "DSP", + "category": "related", + "ner": null + }, + "220": { + "label": "Khyber Pakhtunkhwa", + "category": "related", + "ner": "GPE" + }, + "230": { + "label": "protesters", + "category": "related", + "ner": null + }, + "231": { + "label": "police", + "category": "related", + "ner": null + }, + "232": { + "label": "officials", + "category": "related", + "ner": null + }, + "243": { + "label": "Naveed", + "category": "related", + "ner": null + }, + "251": { + "label": "South Waziristan", + "category": "related", + "ner": null + }, + "255": { + "label": "TMA", + "category": "related", + "ner": null + }, + "258": { + "label": "Khyber", + "category": "related", + "ner": null + }, + "284": { + "label": "elections", + "category": "related", + "ner": null + }, + "286": { + "label": "agriculture", + "category": "related", + "ner": null + }, + "298": { + "label": "ADB", + "category": "related", + "ner": null + }, + "300": { + "label": "PM", + "category": "related", + "ner": null + }, + "324": { + "label": "law", + "category": "related", + "ner": null + }, + "328": { + "label": "CDA", + "category": "related", + "ner": "ORG" + }, + "346": { + "label": "KARACHI", + "category": "related", + "ner": null + }, + "359": { + "label": "province", + "category": "related", + "ner": null + }, + "381": { + "label": "treated", + "category": "related", + "ner": null + }, + "383": { + "label": "PPP", + "category": "related", + "ner": "ORG" + }, + "429": { + "label": "Irfan", + "category": "related", + "ner": null + }, + "445": { + "label": "Akbar", + "category": "related", + "ner": null + }, + "521": { + "label": "PESHAWAR", + "category": "related", + "ner": null + }, + "603": { + "label": "China", + "category": "related", + "ner": null + }, + "630": { + "label": "commissioner", + "category": "related", + "ner": null + }, + "641": { + "label": "Yasir", + "category": "related", + "ner": null + }, + "672": { + "label": "terrorism", + "category": "related", + "ner": null + }, + "733": { + "label": "Moonis Elahi", + "category": "related", + "ner": null + }, + "833": { + "label": "disqualified", + "category": "related", + "ner": null + }, + "836": { + "label": "unseated", + "category": "related", + "ner": null + }, + "902": { + "label": "Passco", + "category": "related", + "ner": null + }, + "904": { + "label": "Rahim", + "category": "related", + "ner": null + }, + "910": { + "label": "LAHORE", + "category": "related", + "ner": null + }, + "912": { + "label": "city", + "category": "related", + "ner": null + }, + "925": { + "label": "CPO", + "category": "related", + "ner": null + }, + "981": { + "label": "Constitution", + "category": "related", + "ner": null + }, + "986": { + "label": "Nawaz", + "category": "related", + "ner": null + }, + "1063": { + "label": "lead", + "category": "related", + "ner": null + }, + "1099": { + "label": "injured", + "category": "related", + "ner": null + }, + "1132": { + "label": "woman", + "category": "related", + "ner": null + }, + "1181": { + "label": "shot", + "category": "related", + "ner": null + }, + "1182": { + "label": "killed", + "category": "related", + "ner": null + }, + "1185": { + "label": "parliament", + "category": "related", + "ner": null + }, + "1187": { + "label": "politicians", + "category": "related", + "ner": null + }, + "1203": { + "label": "mpox", + "category": "related", + "ner": null + }, + "1304": { + "label": "Toyota", + "category": "related", + "ner": null + }, + "1325": { + "label": "Chairman", + "category": "related", + "ner": null + }, + "1328": { + "label": "army", + "category": "related", + "ner": null + }, + "1355": { + "label": "teachers", + "category": "related", + "ner": null + }, + "1357": { + "label": "schools", + "category": "related", + "ner": null + }, + "1358": { + "label": "mosques", + "category": "related", + "ner": null + }, + "1375": { + "label": "Germany", + "category": "related", + "ner": null + }, + "1422": { + "label": "FIR", + "category": "related", + "ner": null + }, + "1456": { + "label": "judge", + "category": "related", + "ner": null + }, + "1462": { + "label": "Dawn", + "category": "related", + "ner": "PERSON" + }, + "1524": { + "label": "Imran", + "category": "related", + "ner": null + }, + "1537": { + "label": "UN", + "category": "related", + "ner": null + }, + "1575": { + "label": "Police", + "category": "related", + "ner": null + }, + "1611": { + "label": "Marwat", + "category": "related", + "ner": null + }, + "1639": { + "label": "NAB", + "category": "related", + "ner": null + }, + "1646": { + "label": "Ikram", + "category": "related", + "ner": null + }, + "1656": { + "label": "Ilyas", + "category": "related", + "ner": null + }, + "1716": { + "label": "PML", + "category": "related", + "ner": "ORG" + }, + "1745": { + "label": "economy", + "category": "related", + "ner": null + }, + "1837": { + "label": "CTD", + "category": "related", + "ner": null + }, + "1910": { + "label": "village", + "category": "related", + "ner": null + }, + "1940": { + "label": "DPO", + "category": "related", + "ner": null + }, + "2001": { + "label": "coaches", + "category": "related", + "ner": null + }, + "2008": { + "label": "Gul", + "category": "related", + "ner": null + }, + "2017": { + "label": "DG", + "category": "related", + "ner": null + }, + "2066": { + "label": "attack", + "category": "related", + "ner": null + }, + "2069": { + "label": "KP", + "category": "related", + "ner": null + }, + "2075": { + "label": "president", + "category": "related", + "ner": null + }, + "2078": { + "label": "labourers", + "category": "related", + "ner": null + }, + "2084": { + "label": "ISPR", + "category": "related", + "ner": null + }, + "2173": { + "label": "journalists", + "category": "related", + "ner": null + }, + "2210": { + "label": "MNA", + "category": "related", + "ner": null + }, + "2244": { + "label": "Adviser", + "category": "related", + "ner": null + }, + "2293": { + "label": "Ismail", + "category": "related", + "ner": null + }, + "2332": { + "label": "election", + "category": "related", + "ner": null + }, + "2356": { + "label": "DIG", + "category": "related", + "ner": null + }, + "2357": { + "label": "SSP", + "category": "related", + "ner": null + }, + "2375": { + "label": "FIA", + "category": "related", + "ner": null + }, + "2387": { + "label": "media", + "category": "related", + "ner": null + } + }, + "edges": [ + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 50, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 52, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "owner of", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 48, + "to": 147, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 158, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 184, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 243, + "to": 243, + "label": "father", + "category": "related" + }, + { + "from": 255, + "to": 255, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 284, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 286, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 300, + "to": 54, + "label": "officeholder", + "category": "related" + }, + { + "from": 54, + "to": 300, + "label": "position held", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares", + "category": "related" + }, + { + "from": 324, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 324, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 328, + "to": 328, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 381, + "to": 381, + "label": "subclass of", + "category": "related" + }, + { + "from": 381, + "to": 381, + "label": "subclass", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 429, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 50, + "to": 133, + "label": "place of death", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of", + "category": "related" + }, + { + "from": 37, + "to": 220, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 37, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 630, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 672, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 231, + "to": 346, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 48, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "contains administrative", + "category": "related" + }, + { + "from": 220, + "to": 48, + "label": "country", + "category": "related" + }, + { + "from": 48, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 902, + "to": 904, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 925, + "to": 133, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 925, + "to": 133, + "label": "located in the", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the", + "category": "related" + }, + { + "from": 7, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 284, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 981, + "to": 981, + "label": "has part", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 284, + "to": 43, + "label": "successful candidate", + "category": "related" + }, + { + "from": 37, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 77, + "to": 231, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "capital", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "capital of", + "category": "related" + }, + { + "from": 231, + "to": 96, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 1132, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 133, + "to": 199, + "label": "country", + "category": "related" + }, + { + "from": 1181, + "to": 1182, + "label": "subclass of", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1187, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1185, + "to": 1187, + "label": "legislative", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has part", + "category": "related" + }, + { + "from": 1185, + "to": 1187, + "label": "has", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 1325, + "to": 43, + "label": "officeholder", + "category": "related" + }, + { + "from": 43, + "to": 1325, + "label": "position held", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1358, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 1375, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1375, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 1375, + "to": 1375, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 179, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 383, + "to": 1325, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 1422, + "to": 77, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 77, + "to": 73, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 73, + "to": 77, + "label": "twinned administrative body", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 1524, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 328, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "applies", + "category": "related" + }, + { + "from": 231, + "to": 328, + "label": "part of", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "shares border with", + "category": "related" + }, + { + "from": 13, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1639, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1639, + "to": 97, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 1185, + "label": "legislative body", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 1656, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "has part", + "category": "related" + }, + { + "from": 231, + "to": 231, + "label": "part of", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 1745, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 54, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "authority", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "legislative body", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 77, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "shares border with", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 258, + "label": "officeholder", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "contains administrative territorial", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 97, + "label": "shares border with", + "category": "related" + }, + { + "from": 97, + "to": 7, + "label": "shares border", + "category": "related" + }, + { + "from": 97, + "to": 179, + "label": "shares", + "category": "related" + }, + { + "from": 7, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 46, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 1185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 231, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "authority", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "located in the", + "category": "related" + }, + { + "from": 73, + "to": 231, + "label": "legislative body", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 231, + "to": 73, + "label": "applies to", + "category": "related" + }, + { + "from": 13, + "to": 77, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 77, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "capital of", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 37, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 97, + "to": 97, + "label": "capital", + "category": "related" + }, + { + "from": 1639, + "to": 2017, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 2017, + "to": 1639, + "label": "part of", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 133, + "to": 7, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 2075, + "label": "office held by head of government", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 258, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "part of", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has part", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "has", + "category": "related" + }, + { + "from": 1185, + "to": 1185, + "label": "part", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 133, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 54, + "to": 43, + "label": "relative", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 603, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 603, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 96, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political party", + "category": "related" + }, + { + "from": 43, + "to": 48, + "label": "member of political", + "category": "related" + }, + { + "from": 2210, + "to": 73, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 2210, + "to": 73, + "label": "located in the administrative territorial", + "category": "related" + }, + { + "from": 133, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative", + "category": "related" + }, + { + "from": 97, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 13, + "to": 73, + "label": "capital", + "category": "related" + }, + { + "from": 73, + "to": 13, + "label": "capital of", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 220, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 179, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 179, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 179, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 7, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 521, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 220, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 521, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 521, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 258, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 220, + "to": 258, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 258, + "to": 220, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 284, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 284, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2332, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2332, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 2069, + "to": 7, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 7, + "to": 2069, + "label": "applies to jurisdiction", + "category": "related" + }, + { + "from": 179, + "to": 179, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 7, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 13, + "to": 97, + "label": "contains administrative territorial entity", + "category": "related" + }, + { + "from": 7, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 13, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 184, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 185, + "to": 13, + "label": "country", + "category": "related" + }, + { + "from": 7, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 220, + "to": 7, + "label": "shares border with", + "category": "related" + }, + { + "from": 220, + "to": 220, + "label": "shares border with", + "category": "related" + }, + { + "from": 48, + "to": 43, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 46, + "label": "chairperson", + "category": "related" + }, + { + "from": 48, + "to": 50, + "label": "chairperson", + "category": "related" + }, + { + "from": 13, + "to": 199, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 199, + "to": 13, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 48, + "to": 147, + "label": "office held by head of the organization", + "category": "related" + }, + { + "from": 13, + "to": 54, + "label": "head of government", + "category": "related" + }, + { + "from": 13, + "to": 52, + "label": "diplomatic relation", + "category": "related" + }, + { + "from": 54, + "to": 13, + "label": "country of citizenship", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + }, + { + "from": 96, + "to": 97, + "label": "located in the administrative territorial entity", + "category": "related" + }, + { + "from": 97, + "to": 96, + "label": "capital", + "category": "related" + } + ] +} \ No newline at end of file diff --git a/weight.py b/weight.py new file mode 100644 index 0000000..10895b3 --- /dev/null +++ b/weight.py @@ -0,0 +1,21 @@ +from collections import Counter +import re + +def calculate_keyword_importance(documents): + combined_text = ' '.join(documents) + tokens = re.findall(r'\b\w+\b', combined_text.lower()) + word_freq = Counter(tokens) + total_words = sum(word_freq.values()) + normalized_freq = {word: freq / total_words for word, freq in word_freq.items()} + + return normalized_freq + +documents = [ + "This is a sample document.", + "Another sample document with repeated words." +] + +keyword_importance = calculate_keyword_importance(documents) + +for word, importance in sorted(keyword_importance.items(), key=lambda x: x[1], reverse=True): + print(f"{word}: {importance}")

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≫>rB?F;Y4VOoY` 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⪻N%Gg^BmmBm_N|wU9rN=8W`mYj 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 Go8&H>8@46%dqSSI-hivIG9pEJu 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 z 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�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�N)YsfwWXUVsEq7SU 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 + + + + + + + +

*WQ>*%KyJrqiH$ju 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 p1^A9&K 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 z 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